[Android] compile-libvlc: Fix sqlite autoconf detection
Hugo Beauzée-Luyssen
git at videolan.org
Wed Dec 28 16:24:55 CET 2016
vlc-android | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Dec 28 13:15:21 2016 +0100| [9acc47ca22fb1dc1274e5f489d0fd3b07175551c] | committer: Hugo Beauzée-Luyssen
compile-libvlc: Fix sqlite autoconf detection
sqlite doesn't generate a config.h file in amalgamated mode
> https://code.videolan.org/videolan/vlc-android/commit/9acc47ca22fb1dc1274e5f489d0fd3b07175551c
---
compile-libvlc.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/compile-libvlc.sh b/compile-libvlc.sh
index 72e0dd3..4ad66c3 100755
--- a/compile-libvlc.sh
+++ b/compile-libvlc.sh
@@ -760,7 +760,8 @@ if [ ! -d "build-$ANDROID_ABI" ]; then
mkdir "build-$ANDROID_ABI";
fi;
cd "build-$ANDROID_ABI";
-if [ ! -e ./config.h -o "$RELEASE" = 1 ]; then
+
+if [ ! -e ./config.status -o "$RELEASE" = 1 ]; then
../configure \
--host=$TARGET_TUPLE \
--disable-shared \
More information about the Android
mailing list