summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-03-25 11:29:19 +0100
committerTor Lillqvist <tml@collabora.com>2022-03-28 15:06:55 +0200
commitab31827720399aff62f5d13e392599d01d4feabd (patch)
treeab91574533cbe1cd3743f57cbfe60007503cd80e
parentAccept macOS SDK 12.3 (diff)
downloadcore-ab31827720399aff62f5d13e392599d01d4feabd.tar.gz
core-ab31827720399aff62f5d13e392599d01d4feabd.zip
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 <sbergman@redhat.com> Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132198 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
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