summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-11-13 07:58:43 +0100
committerjan Iversen <jani@libreoffice.org>2017-11-13 08:00:05 +0100
commit930efab3be7dd818918b7116119bb049acdcda76 (patch)
treeb9e4815b361028fd9a6c4664404e82eb74ed8f11
parent508b60b7fd9270cdc5df8cbe5b733b4f6ea8575f (diff)
iOS, update to version 11.1
Change-Id: I3e477162468ad7386d83480ce8ae1da9536465b0
-rw-r--r--README.md2
-rw-r--r--configure.ac8
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 4b5d9ed0d81d..7896ac44f326 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ run and compile LibreOffice, also used by the TDF builds:
* Build: GCC 4.8.1 or Clang
* iOS (only for LibreOfficeKit):
* Runtime: 11.0 (only support for newer i devices == 64 bit)
- * Build: Xcode 9.0 and iPhone SDK 11.0
+ * Build: Xcode 9.0 and iPhone SDK 11.1
If you want to use Clang with the LibreOffice compiler plugins, the minimal
version of Clang is 3.4. Since Xcode doesn't provide the compiler plugin
diff --git a/configure.ac b/configure.ac
index 26cfb628e3e6..46e6a867dc65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2847,15 +2847,15 @@ if test $_os = iOS; then
AC_MSG_CHECKING([what iOS SDK to use])
if test "$enable_ios_simulator" = "yes"; then
platform=iPhoneSimulator
- versionmin=-mios-simulator-version-min=10.3
+ versionmin=-mios-simulator-version-min=11.1
else
platform=iPhoneOS
- versionmin=-miphoneos-version-min=10.3
+ versionmin=-miphoneos-version-min=11.1
fi
xcode_developer=`xcode-select -print-path`
- current_sdk_ver=11.0
- for sdkver in 11.1 11.0; do
+ current_sdk_ver=11.1
+ for sdkver in 11.1; do
t=$xcode_developer/Platforms/$platform.platform/Developer/SDKs/$platform$sdkver.sdk
if test -d $t; then
ios_sdk=$sdkver