summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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