From cc806e1fb314a330ffd77f841576d75a0c04bd64 Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Fri, 1 Aug 2014 16:25:03 -0400 Subject: [PATCH] jni: fixed configure invocation --- compile.sh | 11 +++++------ configure.sh | 12 +++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/compile.sh b/compile.sh index 264626bf9..a9f4cbdba 100755 --- a/compile.sh +++ b/compile.sh @@ -246,16 +246,15 @@ else CLEAN="distclean" if [ ! -f config.h ]; then echo "Bootstraping" - ../bootstrap - echo "Configuring" - ${ANDROID_PATH}/configure.sh $OPTS + pushd ../../ + ./configure.sh + echo "Building" + make $MAKEFLAGS + popd fi TARGET= fi -echo "Building" -make $MAKEFLAGS - #################################### # Ring android UI and specific code #################################### diff --git a/configure.sh b/configure.sh index 0beeccf3a..4b95c5fe3 100755 --- a/configure.sh +++ b/configure.sh @@ -14,7 +14,7 @@ fi # folder. ANDROID_API=android-9 -SFLPHONE_SOURCEDIR=sflphone/daemon +SFLPHONE_SOURCEDIR=sflphone CFLAGS="-g -O2 -fstrict-aliasing -funsafe-math-optimizations" if [ -n "$HAVE_ARM" ]; then @@ -25,7 +25,6 @@ LDFLAGS="-Wl,-Bdynamic,-dynamic-linker=/system/bin/linker -Wl,--no-undefined" if [ -n "$HAVE_ARM" ]; then if [ ${ANDROID_ABI} = "armeabi-v7a" ]; then - EXTRA_PARAMS=" --enable-neon" LDFLAGS="$LDFLAGS -Wl,--fix-cortex-a8" fi fi @@ -37,6 +36,9 @@ SYSROOT=$ANDROID_NDK/platforms/$ANDROID_API/arch-$PLATFORM_SHORT_ARCH ANDROID_BIN=`echo $ANDROID_NDK/toolchains/${PATH_HOST}-${GCCVER}/prebuilt/\`uname|tr A-Z a-z\`-*/bin/` CROSS_COMPILE=${ANDROID_BIN}/${TARGET_TUPLE}- +pushd $SFLPHONE_SOURCEDIR/daemon +./autogen.sh + CPPFLAGS="$CPPFLAGS" \ CFLAGS="$CFLAGS ${SFLPHONE_EXTRA_CFLAGS}" \ CXXFLAGS="$CFLAGS" \ @@ -48,6 +50,6 @@ STRIP="${CROSS_COMPILE}strip" \ RANLIB="${CROSS_COMPILE}ranlib" \ AR="${CROSS_COMPILE}ar" \ PKG_CONFIG_LIBDIR=$SFLPHONE_SOURCEDIR/contrib/$TARGET_TUPLE/lib/pkgconfig \ -sh $SFLPHONE_SOURCEDIR/configure --host=$TARGET_TUPLE --build=x86_64-unknown-linux $EXTRA_PARAMS \ - --disable-video \ - $* +./configure --host=$TARGET_TUPLE $EXTRA_PARAMS \ + --disable-video --without-zrtp --without-dbus --disable-video --without-alsa --without-pulse --with-iax2 --without-tls --with-contrib="../contrib/${TARGET_TUPLE}" \ + $* -- GitLab