[Libreoffice-commits] core.git: 2 commits - configure.ac
Tor Lillqvist
tml at collabora.com
Mon Oct 3 14:31:27 UTC 2016
configure.ac | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 9e1ee599e00751bc2454a9e2549286f4afca81e5
Author: Tor Lillqvist <tml at collabora.com>
Date: Sun Sep 11 21:39:31 2016 +0300
Update min OS version to a more realistic value for iOS
Change-Id: I63617c49ce176180709a32c59a468c6abe076a3d
diff --git a/configure.ac b/configure.ac
index 4d8683c..d248c93 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3005,10 +3005,10 @@ if test $_os = iOS; then
if test "$enable_ios_simulator" = yes; then
if test "$BITNESS_OVERRIDE" = 64; then
XCODE_ARCHS=x86_64
- versionmin=-mios-simulator-version-min=7.0
+ versionmin=-mios-simulator-version-min=9.0
else
XCODE_ARCHS=i386
- versionmin=-mios-simulator-version-min=7.0
+ versionmin=-mios-simulator-version-min=9.0
fi
else
platform=iPhoneOS
@@ -3017,7 +3017,7 @@ if test $_os = iOS; then
else
XCODE_ARCHS=armv7
fi
- versionmin=-miphoneos-version-min=7.0
+ versionmin=-miphoneos-version-min=9.0
fi
# LTO is not really recommended for iOS builds,
commit 143d6eb831c6a285463feb31af977acd59972d5a
Author: Tor Lillqvist <tml at collabora.com>
Date: Sun Sep 11 21:24:59 2016 +0300
Also look for iOS SDK 10.0
Change-Id: Ibc975a3c61542a2872a48c310351653734c225ce
diff --git a/configure.ac b/configure.ac
index 56f5ebe..4d8683c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2985,7 +2985,7 @@ if test $_os = iOS; then
xcode_developer=`xcode-select -print-path`
current_sdk_ver=9.3
- for sdkver in 9.3 9.2; do
+ for sdkver in 10.0 9.3 9.2; do
t=$xcode_developer/Platforms/$platform.platform/Developer/SDKs/$platform$sdkver.sdk
if test -d $t; then
ios_sdk=$sdkver
More information about the Libreoffice-commits
mailing list