From 729a54f4a297743580775799bd48fd812d9cd4d2 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 13 Aug 2014 23:32:26 -0700 Subject: [PATCH] Use --enable-minimal in the Android and iOS builds --- dist-build/android-build.sh | 1 + dist-build/ios.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/dist-build/android-build.sh b/dist-build/android-build.sh index deb333ef..ba848d78 100755 --- a/dist-build/android-build.sh +++ b/dist-build/android-build.sh @@ -31,6 +31,7 @@ $MAKE_TOOLCHAIN --platform="${NDK_PLATFORM:-android-14}" \ ./configure --host="${HOST_COMPILER}" \ --with-sysroot="${TOOLCHAIN_DIR}/sysroot" \ --prefix="${PREFIX}" \ + --enable-minimal \ --disable-soname-versions && \ make clean && \ make -j3 install && \ diff --git a/dist-build/ios.sh b/dist-build/ios.sh index cd8384a1..3378060c 100755 --- a/dist-build/ios.sh +++ b/dist-build/ios.sh @@ -10,6 +10,7 @@ export PREFIX="$(pwd)/libsodium-ios" ./configure --host=arm-apple-darwin10 \ --disable-shared \ + --enable-minimal \ --prefix="$PREFIX" && \ make clean && \ make -j3 install && \