configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3b2e8d57ae6ad7e16d4cdee5873cb3057d9856f8
Author:     Tor Lillqvist <t...@collabora.com>
AuthorDate: Mon Sep 27 14:52:29 2021 +0300
Commit:     Tor Lillqvist <t...@collabora.com>
CommitDate: Mon Sep 27 14:54:20 2021 +0300

    Match what Xcode offers as highest 13.x deployment target
    
    Use 13.6, not 13.7, for the miphoneos-version-min option.
    
    Avoids warnings when linking the Collabora Office iOS app against core
    master.
    
    Change-Id: I89b7cb37b7a66a733e4eb82a90bba08106be1163

diff --git a/configure.ac b/configure.ac
index d21e92bcb771..932ea2bb1240 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3532,10 +3532,10 @@ if test $_os = iOS; then
     older_sdk_vers="14.5"
     if test "$enable_ios_simulator" = "yes"; then
         platform=iPhoneSimulator
-        versionmin=-mios-simulator-version-min=13.7
+        versionmin=-mios-simulator-version-min=13.6
     else
         platform=iPhoneOS
-        versionmin=-miphoneos-version-min=13.7
+        versionmin=-miphoneos-version-min=13.6
     fi
     xcode_developer=`xcode-select -print-path`
 

Reply via email to