summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2022-12-14 11:46:55 +0200
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2022-12-14 15:22:52 +0000
commitc7b93e2687af1bf26b0843e3d815effd129752f6 (patch)
tree6b0ee99cd25e38679fc7c137be868478f466021a
parenta2ceb003eff5a886638758a96834466e750cf314 (diff)
Bump minimum macOS to 10.15
This gives us support for filesystem library (after GCC is bumped to >7) Change-Id: I5e497ee818de883e63e1288acfc400ebadf0cdec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144156 Tested-by: Jenkins Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
-rw-r--r--README.md2
-rw-r--r--configure.ac12
2 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index bd1528f321ee..1dda3212ea13 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ run and compile LibreOffice, also used by the TDF builds:
* Runtime: Windows 7
* Build: Cygwin + Visual Studio 2019 version 16.10
* macOS:
- * Runtime: 10.14
+ * Runtime: 10.15
* Build: 11.0 + Xcode 12.5
* Linux:
* Runtime: RHEL 7 or CentOS 7
diff --git a/configure.ac b/configure.ac
index c5a7ee205090..44c984df8440 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2882,7 +2882,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.14
+ e. g.: --with-macosx-version-min-required=10.15
],
,)
@@ -3446,8 +3446,8 @@ if test $_os = Darwin; then
# we don't target the lower versions anymore, so it doesn't matter that we don't generate the
# correct version in case such an old SDK is specified, it will be rejected later anyway
MACOSX_SDK_VERSION=$(echo $macosx_sdk | $AWK -F. '{ print $1*10000+$2*100+$3 }')
- if test $MACOSX_SDK_VERSION -lt 101400; then
- AC_MSG_ERROR([macOS SDK $macosx_sdk is not supported, lowest supported version is 10.14])
+ if test $MACOSX_SDK_VERSION -lt 101500; then
+ AC_MSG_ERROR([macOS SDK $macosx_sdk is not supported, lowest supported version is 10.15])
fi
if test "$host_cpu" = arm64 -a $MACOSX_SDK_VERSION -lt 110000; then
AC_MSG_ERROR([macOS SDK $macosx_sdk is not supported for Apple Silicon (need at least 11.0)])
@@ -3457,15 +3457,15 @@ 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.14";
+ with_macosx_version_min_required="10.15";
else
with_macosx_version_min_required="11.0";
fi
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 101400; then
- AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, minimum supported version is 10.14])
+ 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])
fi
AC_MSG_RESULT([$with_macosx_version_min_required])