Skip to content

Commit

Permalink
Use libsodium 0.7.0+ (more thorough though)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubslow committed Sep 16, 2014
1 parent 5a2a756 commit 64830ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ You should get and install [libsodium](https://github.com/jedisct1/libsodium):
```bash
git clone git://github.com/jedisct1/libsodium.git
cd libsodium
git checkout tags/0.5.0
git checkout tags/0.7.0
./autogen.sh
./configure && make check
sudo checkinstall --install --pkgname libsodium --pkgversion 0.5.0 --nodoc
sudo checkinstall --install --pkgname libsodium --pkgversion 0.7.0 --nodoc
sudo ldconfig
cd ..
```
Expand All @@ -74,7 +74,7 @@ this will install the libs to /usr/local/lib and the headers to /usr/local/inclu
```bash
git clone git://github.com/jedisct1/libsodium.git
cd libsodium
git checkout tags/0.5.0
git checkout tags/0.7.0
./autogen.sh
./configure
make check
Expand Down Expand Up @@ -137,7 +137,7 @@ brew list libsodium

Configure include and lib folder and build again:
```bash
./configure --with-libsodium-headers=/usr/local/Cellar/libsodium/0.4.5/include/ --with-libsodium-libs=/usr/local/Cellar/libsodium/0.4.5/lib/
./configure --with-libsodium-headers=/usr/local/Cellar/libsodium/0.7.0/include/ --with-libsodium-libs=/usr/local/Cellar/libsodium/0.7.0/lib/
make
make install
```
Expand Down Expand Up @@ -320,7 +320,7 @@ Now we will build sodium crypto library:
```bash
git clone https://github.com/jedisct1/libsodium/
cd libsodium
git checkout tags/0.6.1
git checkout tags/0.7.0
./autogen.sh
./configure --host="$WINDOWS_TOOLCHAIN" --prefix="$PREFIX_DIR" --disable-shared --enable-static
make
Expand Down Expand Up @@ -374,10 +374,10 @@ When installing MinGW, make sure to select the MSYS option in the installer.
MinGW will install an "MinGW shell" (you should get a shortcut for it), make sure to perform all operations (i.e., generating/running configure script, compiling, etc.) from the MinGW shell.

First download the source tarball from https://download.libsodium.org/libsodium/releases/ and build it.
Assuming that you got the libsodium-0.5.0.tar.gz release:
Assuming that you got the libsodium-0.7.0.tar.gz release:
```cmd
tar -zxvf libsodium-0.5.0.tar.gz
cd libsodium-0.5.0
tar -zxvf libsodium-0.7.0.tar.gz
cd libsodium-0.7.0
./configure
make
make install
Expand Down

0 comments on commit 64830ce

Please sign in to comment.