diff options
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -16,14 +16,14 @@ | |||
16 | Build dependencies: | 16 | Build dependencies: |
17 | 17 | ||
18 | ```bash | 18 | ```bash |
19 | apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall | 19 | apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall check |
20 | ``` | 20 | ``` |
21 | 21 | ||
22 | On Fedora: | 22 | On Fedora: |
23 | 23 | ||
24 | ```bash | 24 | ```bash |
25 | yum groupinstall "Development Tools" | 25 | yum groupinstall "Development Tools" |
26 | yum install libtool autoconf automake libconfig-devel ncurses-devel cmake | 26 | yum install libtool autoconf automake libconfig-devel ncurses-devel cmake check |
27 | ``` | 27 | ``` |
28 | 28 | ||
29 | Note that `libconfig-dev` should be >= 1.4. | 29 | Note that `libconfig-dev` should be >= 1.4. |
@@ -91,7 +91,7 @@ There are no binaries/executables going to /bin/ or /usr/bin/ now. Everything is | |||
91 | <a name="homebrew" /> | 91 | <a name="homebrew" /> |
92 | ####Homebrew: | 92 | ####Homebrew: |
93 | ``` | 93 | ``` |
94 | brew install libtool automake autoconf libconfig libsodium cmake | 94 | brew install libtool automake autoconf libconfig libsodium cmake check |
95 | cmake . | 95 | cmake . |
96 | make | 96 | make |
97 | ``` | 97 | ``` |
@@ -106,6 +106,7 @@ Grab the following packages: | |||
106 | * http://www.cmake.org/ | 106 | * http://www.cmake.org/ |
107 | * https://github.com/jedisct1/libsodium | 107 | * https://github.com/jedisct1/libsodium |
108 | * http://www.hyperrealm.com/libconfig/ | 108 | * http://www.hyperrealm.com/libconfig/ |
109 | * http://check.sourceforge.net/ | ||
109 | 110 | ||
110 | Uncompress and install them all. Make sure to follow the README as the instructions change, but they all follow the same pattern below: | 111 | Uncompress and install them all. Make sure to follow the README as the instructions change, but they all follow the same pattern below: |
111 | 112 | ||
@@ -135,6 +136,7 @@ http://caiustheory.com/install-gcc-421-apple-build-56663-with-xcode-42 | |||
135 | You should install: | 136 | You should install: |
136 | - [MinGW](http://sourceforge.net/projects/mingw/)'s C compiler | 137 | - [MinGW](http://sourceforge.net/projects/mingw/)'s C compiler |
137 | - [CMake](http://www.cmake.org/cmake/resources/software.html) | 138 | - [CMake](http://www.cmake.org/cmake/resources/software.html) |
139 | - [check] (http://check.sourceforge.net/) | ||
138 | 140 | ||
139 | You have to [modify your PATH environment variable](http://www.computerhope.com/issues/ch000549.htm) so that it contains MinGW's bin folder path. With default settings, the bin folder is located at `C:\MinGW\bin`, which means that you would have to append `;C:\MinGW\bin` to the PATH variable. | 141 | You have to [modify your PATH environment variable](http://www.computerhope.com/issues/ch000549.htm) so that it contains MinGW's bin folder path. With default settings, the bin folder is located at `C:\MinGW\bin`, which means that you would have to append `;C:\MinGW\bin` to the PATH variable. |
140 | 142 | ||