summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-11-01 10:58:08 +0200
committerTor Lillqvist <tml@collabora.com>2019-11-01 10:58:08 +0200
commit568e1199f80106d0ff8142b5179c26928c71efd4 (patch)
treefa813be4d8e59b257cf6a81fc1c32a0e8766c255
parentce729fb834610d6c70b9d6f4f8c25ddb70a51497 (diff)
Don't bother with iOS earlier than 12.2
Change-Id: I63d5dfcbda4c33c58757693d628de1bef84ac245
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 8a4d5b3a500d..f1009161ecda 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2905,13 +2905,13 @@ dnl ===================================================================
if test $_os = iOS; then
AC_MSG_CHECKING([what iOS SDK to use])
current_sdk_ver=13.2
- older_sdk_vers="13.1 13.0 12.4 12.2 12.1 12.0 11.4 11.2"
+ older_sdk_vers="13.1 13.0 12.4 12.2"
if test "$enable_ios_simulator" = "yes"; then
platform=iPhoneSimulator
- versionmin=-mios-simulator-version-min=11.0
+ versionmin=-mios-simulator-version-min=12.2
else
platform=iPhoneOS
- versionmin=-miphoneos-version-min=11.0
+ versionmin=-miphoneos-version-min=12.2
fi
xcode_developer=`xcode-select -print-path`