From 88dd8815502b6c41efc6cc7de9901a1b15e94c35 Mon Sep 17 00:00:00 2001 From: shinnguyen5589 Date: Tue, 24 May 2016 13:58:17 +0700 Subject: [PATCH] Update build_libcurl_dist.sh --- build_libcurl_dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_libcurl_dist.sh b/build_libcurl_dist.sh index a049362..603833b 100755 --- a/build_libcurl_dist.sh +++ b/build_libcurl_dist.sh @@ -20,7 +20,7 @@ function build_for_arch() { export PATH="${DEVROOT}/usr/bin/:${PATH}" export CFLAGS="-arch ${ARCH} -pipe -Os -gdwarf-2 -isysroot ${SYSROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET} -fembed-bitcode" export LDFLAGS="-arch ${ARCH} -isysroot ${SYSROOT}" - ./configure --disable-shared --enable-static ${SSL_FLAG} --host="${HOST}" --prefix=${PREFIX} && make -j8 && make install + ./configure --disable-shared --enable-static --enable-ipv6 ${SSL_FLAG} --host="${HOST}" --prefix=${PREFIX} && make -j8 && make install } if [ "$1" == "openssl" ]