From 74ec14664fa07b7db1c7771e5088b1c54ec149b7 Mon Sep 17 00:00:00 2001 From: Harry Moreno Date: Mon, 31 Mar 2014 19:05:49 -0700 Subject: [PATCH 1/2] added clarification for dependencies Improved clarity of dependencies by adding example of how to install dependencies using apt-get. It was not clear whether `autoreconf -i` would install the dependencies or not. And how to install the dependencies if a user doesn't know how. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4c68fa36..1372c837 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,14 @@ sgminer-specific configuration options: --disable-adl Override detection and disable building with adl --disable-adl-checks --without-curses Do not compile support for curses TUI + +#### Debian Example + + apt-get install libcurl4-openssl-dev + apt-get install pkg-config + apt-get install libtool + apt-get install libncurses5-dev +AMD APP SDK and AMD ADL SDK must be downloaded from the amd websites. ### *nix build instructions From 3c5f0fa98937c90a8d85fed5447c5289c0d71f37 Mon Sep 17 00:00:00 2001 From: Harry Moreno Date: Mon, 31 Mar 2014 19:23:18 -0700 Subject: [PATCH 2/2] made debian apt-get a one-liner --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 1372c837..7726e190 100644 --- a/README.md +++ b/README.md @@ -71,10 +71,7 @@ sgminer-specific configuration options: #### Debian Example - apt-get install libcurl4-openssl-dev - apt-get install pkg-config - apt-get install libtool - apt-get install libncurses5-dev + apt-get install libcurl4-openssl-dev pkg-config libtool libncurses5-dev AMD APP SDK and AMD ADL SDK must be downloaded from the amd websites. ### *nix build instructions