diff options
-rw-r--r-- | INSTALL.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -60,7 +60,7 @@ On Fedora: | |||
60 | dnf groupinstall "Development Tools" | 60 | dnf groupinstall "Development Tools" |
61 | dnf install libtool autoconf automake check check-devel | 61 | dnf install libtool autoconf automake check check-devel |
62 | ``` | 62 | ``` |
63 | Using ``dnf install @"Development Tools"`` is also valid and slightly shorter / cleaner way. ``@"Rpm Development Tools"`` would carry the remaining dependencies listed here. | 63 | Using ``dnf install @"Development Tools"`` is also valid and slightly shorter / cleaner way. ``dnf install @"Rpm Development Tools"`` would carry the remaining dependencies listed here. |
64 | 64 | ||
65 | On SunOS: | 65 | On SunOS: |
66 | 66 | ||
@@ -80,7 +80,7 @@ You should get and install [libsodium](https://github.com/jedisct1/libsodium). I | |||
80 | ```bash | 80 | ```bash |
81 | git clone https://github.com/jedisct1/libsodium.git | 81 | git clone https://github.com/jedisct1/libsodium.git |
82 | cd libsodium | 82 | cd libsodium |
83 | git checkout tags/1.0.3 | 83 | git checkout tags/1.0.11 |
84 | ./autogen.sh | 84 | ./autogen.sh |
85 | ./configure && make check | 85 | ./configure && make check |
86 | sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc | 86 | sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc |
@@ -95,7 +95,7 @@ this will install the libs to /usr/local/lib and the headers to /usr/local/inclu | |||
95 | ```bash | 95 | ```bash |
96 | git clone https://github.com/jedisct1/libsodium.git | 96 | git clone https://github.com/jedisct1/libsodium.git |
97 | cd libsodium | 97 | cd libsodium |
98 | git checkout tags/1.0.3 | 98 | git checkout tags/1.0.11 |
99 | ./autogen.sh | 99 | ./autogen.sh |
100 | ./configure | 100 | ./configure |
101 | make check | 101 | make check |