summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--configure.ac9
2 files changed, 4 insertions, 7 deletions
diff --git a/README.md b/README.md
index d2effbb58576..bd1528f321ee 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.13
+ * Runtime: 10.14
* Build: 11.0 + Xcode 12.5
* Linux:
* Runtime: RHEL 7 or CentOS 7
diff --git a/configure.ac b/configure.ac
index cafa0945982d..f2dded1c65c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2845,7 +2845,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.13
+ e. g.: --with-macosx-version-min-required=10.14
],
,)
@@ -3446,7 +3446,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.13";
+ with_macosx_version_min_required="10.14";
else
with_macosx_version_min_required="11.0";
fi
@@ -3470,9 +3470,6 @@ if test $_os = Darwin; then
fi
case "$with_macosx_version_min_required" in
- 10.13)
- MAC_OS_X_VERSION_MIN_REQUIRED="101300"
- ;;
10.14)
MAC_OS_X_VERSION_MIN_REQUIRED="101400"
;;
@@ -3501,7 +3498,7 @@ if test $_os = Darwin; then
MAC_OS_X_VERSION_MIN_REQUIRED="120300"
;;
*)
- AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.13--12.3])
+ AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.14--12.3])
;;
esac