Browse Source

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.
pull/3281/head
Zetok Zalbavar 9 years ago
parent
commit
5cb271b0c0
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 8
      bootstrap.sh
  2. 2
      simple_make.sh

8
bootstrap.sh

@ -211,10 +211,10 @@ if [[ $INSTALL_SQLCIPHER = "true" ]]; then @@ -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 \

2
simple_make.sh

@ -21,7 +21,7 @@ elif which dnf; then @@ -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 \

Loading…
Cancel
Save