diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-06-14 11:22:13 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-06-15 08:20:59 +0200 |
commit | 0c96561a567fd7dbb394a1a44479a42aa149bcc7 (patch) | |
tree | 4e1b1c9934d15a163d210ace0e278adc6d53e9f9 /configure.ac | |
parent | cb83063cc0eb4e93bd44bc0cb9b7c4841230cdef (diff) |
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.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 3 insertions, 6 deletions
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 |