From 4a827917373377a99b2207bdb39ac266257215c4 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 19 Sep 2018 12:44:29 +0300 Subject: iOS SDK 12.0 is the current now Also, I don't see why we would want to use -miphoneos-version-min=12.0 just because we build against the 12.0 SDK. Use 11.0 as the minimum runtime iOS version for now. Change-Id: I36b9696ce367249e7e8d0a51ee61791e32972390 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 45773e34e15e..ec9d8b34d416 100644 --- a/configure.ac +++ b/configure.ac @@ -2946,13 +2946,13 @@ dnl =================================================================== if test $_os = iOS; then AC_MSG_CHECKING([what iOS SDK to use]) - current_sdk_ver=11.4 + current_sdk_ver=12.0 if test "$enable_ios_simulator" = "yes"; then platform=iPhoneSimulator versionmin=-mios-simulator-version-min=$current_sdk_ver else platform=iPhoneOS - versionmin=-miphoneos-version-min=$current_sdk_ver + versionmin=-miphoneos-version-min=11.0 fi xcode_developer=`xcode-select -print-path` -- cgit v1.2.3