1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Some small updates.

+ updated libsodium tag to current tag of 1.0.7
+ added sqlcipher  compile  for Fedora users and  any others where sqlcipher is  not a  distro available package ( linux distros)
This commit is contained in:
Corey Sheldon 2015-12-30 07:28:57 -05:00
parent 552155bd1f
commit b998dba373

View File

@ -332,7 +332,7 @@ You will need to install manually `libsodium`:
```
git clone git://github.com/jedisct1/libsodium.git
cd libsodium
git checkout tags/1.0.3
git checkout tags/1.0.7
./autogen.sh
./configure && make check
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc
@ -368,7 +368,16 @@ cd filter_audio
make -j$(nproc)
sudo make install
```
### Sqlcipher compiling, For Fedora users and possibly others.
```bash
git clone https://github.com/sqlcipher/sqlcipher
cd sqlcipher
autoreconf -if
./configure
make -j$(nproc)
sudo make install
cd ..
````
### toxcore compiling