configure.ac | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
New commits:
commit ab31827720399aff62f5d13e392599d01d4feabd
Author: Xisco Fauli <[email protected]>
AuthorDate: Fri Mar 25 11:29:19 2022 +0100
Commit: Tor Lillqvist <[email protected]>
CommitDate: Mon Mar 28 15:06:55 2022 +0200
configure.ac: add missing MAC_OS_X_VERSION_MAX_ALLOWED for macOS SDK 12.3
Support for macOS SDK 12.3 was backported to libreoffice-7-3 in
1d875592eb4a2ca78b94c959f1acbc3552db608f "Accept macOS SDK 12.3"
but MAC_OS_X_VERSION_MAX_ALLOWED was missing in the commit
because it was removed in master after
b0ab07ba89c88006932c68e0ca08dffcd0a4621e
"Always set MAC_OS_X_VERSION_MAX_ALLOWED =
MAC_OS_X_VERSION_MIN_REQUIRED"
Change-Id: Ic7d8581bebad12bfe7f23b06c24d3b8ea2fdde43
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132104
Reviewed-by: Stephan Bergmann <[email protected]>
Tested-by: Xisco Fauli <[email protected]>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132198
Tested-by: Tor Lillqvist <[email protected]>
Reviewed-by: Tor Lillqvist <[email protected]>
diff --git a/configure.ac b/configure.ac
index 53aa28c939ee..43312f07e56b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3335,8 +3335,11 @@ if test $_os = Darwin; then
12.1)
MAC_OS_X_VERSION_MAX_ALLOWED="120100"
;;
+ 12.3)
+ MAC_OS_X_VERSION_MAX_ALLOWED="120300"
+ ;;
*)
- AC_MSG_ERROR([with-macosx-version-max-allowed
$with_macosx_version_max_allowed is not a supported value, supported values are
10.10--12.1])
+ AC_MSG_ERROR([with-macosx-version-max-allowed
$with_macosx_version_max_allowed is not a supported value, supported values are
10.10--12.3])
;;
esac