README.md | 2 +- configure.ac | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-)
New commits: commit 0c96561a567fd7dbb394a1a44479a42aa149bcc7 Author: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> AuthorDate: Tue Jun 14 11:22:13 2022 +0300 Commit: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> CommitDate: Wed Jun 15 08:20:59 2022 +0200 Bump minimum macOS to 10.14 This gives us full support for variant, optional, any and visit libraries Change-Id: I9f1bff5d7c0e2d5acc8c8b92c9a269b00e317574 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135804 Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> 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