README.md    |    2 +-
 configure.ac |   16 ++++++----------
 2 files changed, 7 insertions(+), 11 deletions(-)

New commits:
commit 0d4890552b4b1cc63ec90c03b5cd72bad54adf49
Author:     Ilmari Lauhakangas <[email protected]>
AuthorDate: Wed Jul 2 15:31:43 2025 +0300
Commit:     Ilmari Lauhakangas <[email protected]>
CommitDate: Wed Jul 2 18:12:45 2025 +0200

    Bump macOS runtime baseline to 11.0
    
    Skia m139 removes support for macOS 10.15
    
    Change-Id: I045158c25f683d7997016c79cf9260d47da9e9fc
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187280
    Reviewed-by: Ilmari Lauhakangas <[email protected]>
    Tested-by: Jenkins

diff --git a/README.md b/README.md
index 775adcd0ceaa..d3f86f531bb4 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ run and compile LibreOffice, also used by the TDF builds:
     * Runtime: Windows 10
     * Build: Cygwin + Visual Studio 2019 version 16.10
 * macOS:
-    * Runtime: 10.15 (11 for aarch64)
+    * Runtime: 11
     * Build: 13 or later + Xcode 14.3 or later (using latest version available 
for a given version of macOS)
 * Linux:
     * Runtime: RHEL 8 or CentOS 8 and comparable
diff --git a/configure.ac b/configure.ac
index 9c1f9e099abb..935731405f23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3222,7 +3222,7 @@ AC_ARG_WITH(macosx-version-min-required,
     AS_HELP_STRING([--with-macosx-version-min-required=<version>],
         [set the minimum OS version needed to run the built LibreOffice])
     [
-                          e. g.: --with-macosx-version-min-required=10.15
+                          e. g.: --with-macosx-version-min-required=11.0
     ],
 ,)
 
@@ -3790,16 +3790,12 @@ if test $_os = Darwin; then
 
     AC_MSG_CHECKING([what minimum version of macOS to require])
     if test "$with_macosx_version_min_required" = "" ; then
-        if test "$host_cpu" = x86_64; then
-            with_macosx_version_min_required="10.15";
-        else
-            with_macosx_version_min_required="11.0";
-        fi
+        with_macosx_version_min_required="11.0";
     fi
     # see same notes about MACOSX_SDK_VERSION above
     MAC_OS_X_VERSION_MIN_REQUIRED=$(echo $with_macosx_version_min_required | 
$AWK -F. '{ print $1*10000+$2*100+$3 }')
-    if test $MAC_OS_X_VERSION_MIN_REQUIRED -lt 101500; then
-        AC_MSG_ERROR([with-macosx-version-min-required 
$with_macosx_version_min_required is not a supported value, minimum supported 
version is 10.15])
+    if test $MAC_OS_X_VERSION_MIN_REQUIRED -lt 110000; then
+        AC_MSG_ERROR([with-macosx-version-min-required 
$with_macosx_version_min_required is not a supported value, minimum supported 
version is 11])
     fi
     AC_MSG_RESULT([$with_macosx_version_min_required])
 
@@ -12638,8 +12634,8 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != 
"no"; then
        <true/>"
     AC_MSG_CHECKING([whether to enable Bluetooth support in Impress remote 
control])
 
-    if test $OS = MACOSX && test "$MACOSX_SDK_VERSION" -ge 101500; then
-        # The Bluetooth code doesn't compile with macOS SDK 10.15
+    if test $OS = MACOSX; then
+        # The Bluetooth code doesn't compile since macOS SDK 10.15
         if test "$enable_sdremote_bluetooth" = yes; then
             AC_MSG_ERROR([macOS SDK $macosx_sdk does not currently support 
--enable-sdremote-bluetooth])
         fi

Reply via email to