From 7346a5f9da0cc4da7586f4de6101be79afe243f9 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 25 Nov 2015 13:48:56 +0100 Subject: [PATCH] Update create-openssl-framework.sh Add `ios_version_min` - but doesn't work at the moment (see http://www.openradar.me/22104678) Related #72 --- create-openssl-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-openssl-framework.sh b/create-openssl-framework.sh index 09bff1c6..da1f2d99 100755 --- a/create-openssl-framework.sh +++ b/create-openssl-framework.sh @@ -13,7 +13,7 @@ if [ -d $FWNAME.framework ]; then fi if [ "$1" == "dynamic" ]; then - LIBTOOL_FLAGS="-dynamic -undefined dynamic_lookup" + LIBTOOL_FLAGS="-dynamic -undefined dynamic_lookup -ios_version_min 8.0" else LIBTOOL_FLAGS="-static" fi