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:
parent
552155bd1f
commit
b998dba373
13
INSTALL.md
13
INSTALL.md
|
@ -332,7 +332,7 @@ You will need to install manually `libsodium`:
|
||||||
```
|
```
|
||||||
git clone git://github.com/jedisct1/libsodium.git
|
git clone git://github.com/jedisct1/libsodium.git
|
||||||
cd libsodium
|
cd libsodium
|
||||||
git checkout tags/1.0.3
|
git checkout tags/1.0.7
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure && make check
|
./configure && make check
|
||||||
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc
|
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc
|
||||||
|
@ -368,7 +368,16 @@ cd filter_audio
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
sudo make install
|
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
|
### toxcore compiling
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user