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

fix(simple_make.sh): add sqlite dependencies for Fedora

Thanks to @linux-modder for suggestion.

Also fix local install in bootstrap.sh of sqlcipher ending prematurely.
This commit is contained in:
Zetok Zalbavar 2016-05-09 19:53:32 +01:00
parent 8d225a8c97
commit 5cb271b0c0
No known key found for this signature in database
GPG Key ID: C953D3880212068A
2 changed files with 5 additions and 5 deletions

View File

@ -211,10 +211,10 @@ if [[ $INSTALL_SQLCIPHER = "true" ]]; then
CFLAGS="-DSQLITE_HAS_CODEC"
make -j$(nproc)
make install || \
echo ""
echo "Sqlcipher failed to install locally."
echo ""
echo "Try without \"-l|--local\""
echo "" && \
echo "Sqlcipher failed to install locally." && \
echo "" && \
echo "Try without \"-l|--local\"" && \
exit 1
else
./configure \

View File

@ -21,7 +21,7 @@ elif which dnf; then
git qt-devel qt-doc qt-creator qt5-qtsvg qt5-qtsvg-devel \
openal-soft-devel qt5-qttools-devel libXScrnSaver-devel \
qrencode-devel opus-devel libvpx-devel glib2-devel gdk-pixbuf2-devel \
gtk2-devel libsodium-devel ffmpeg-devel
gtk2-devel libsodium-devel ffmpeg-devel sqlite sqlite-devel
elif which zypper; then
sudo zypper in \
git patterns-openSUSE-devel_basis libqt5-qtbase-common-devel \