summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2022-01-11 18:30:26 +0200
committerTor Lillqvist <tml@collabora.com>2022-01-12 08:51:49 +0100
commit3e94991d7fd3a085549c3a5d4c991688042d2cb9 (patch)
tree904597a3a3b84f55a6b683908ff8fada0a08bd55
parent12e03ccd0cc45394cff479a6190e97a6d599d2c8 (diff)
Bump minimum macOS to 10.13
Change-Id: If495606bb1b0c82abba8fa93277cf3d445e0136a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128291 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r--README.md2
-rw-r--r--configure.ac14
2 files changed, 5 insertions, 11 deletions
diff --git a/README.md b/README.md
index 8f032a27b50f..4052f0580c08 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.5
* macOS:
- * Runtime: 10.12
+ * Runtime: 10.13
* Build: 10.14.4 + Xcode 11.3
* Linux:
* Runtime: RHEL 7 or CentOS 7
diff --git a/configure.ac b/configure.ac
index 01867a3e66f9..aa9f75d7cf64 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2802,7 +2802,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.12
+ e. g.: --with-macosx-version-min-required=10.13
],
,)
@@ -3312,7 +3312,7 @@ if test $_os = Darwin; then
if test "$with_macosx_version_min_required" = "" ; then
if test "$host_cpu" = x86_64; then
- with_macosx_version_min_required="10.12";
+ with_macosx_version_min_required="10.13";
else
with_macosx_version_min_required="11.0";
fi
@@ -3340,9 +3340,6 @@ if test $_os = Darwin; then
fi
case "$with_macosx_version_min_required" in
- 10.12)
- MAC_OS_X_VERSION_MIN_REQUIRED="101200"
- ;;
10.13)
MAC_OS_X_VERSION_MIN_REQUIRED="101300"
;;
@@ -3371,7 +3368,7 @@ if test $_os = Darwin; then
MAC_OS_X_VERSION_MIN_REQUIRED="120100"
;;
*)
- AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.12--12.1])
+ AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.13--12.1])
;;
esac
@@ -3411,9 +3408,6 @@ if test $_os = Darwin; then
fi
case "$with_macosx_version_max_allowed" in
- 10.12)
- MAC_OS_X_VERSION_MAX_ALLOWED="101200"
- ;;
10.13)
MAC_OS_X_VERSION_MAX_ALLOWED="101300"
;;
@@ -3439,7 +3433,7 @@ if test $_os = Darwin; then
MAC_OS_X_VERSION_MAX_ALLOWED="120100"
;;
*)
- AC_MSG_ERROR([with-macosx-version-max-allowed $with_macosx_version_max_allowed is not a supported value, supported values are 10.12--12.1])
+ AC_MSG_ERROR([with-macosx-version-max-allowed $with_macosx_version_max_allowed is not a supported value, supported values are 10.13--12.1])
;;
esac