diff options
author | Tor Lillqvist <tml@collabora.com> | 2020-08-07 01:35:58 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-08-07 11:58:27 +0200 |
commit | 7571fc70e55050c1c5e3c516960e1f44cad6cc32 (patch) | |
tree | 06931be98cb96c278a92984ee866e353923b17a3 /configure.ac | |
parent | bcda268cde1f8408c2066ce985acedfce3e3bc2e (diff) |
Use 10.16, not 11.0, as the minimum macOS on arm64 for now
Change-Id: I5563d1e6f88a561fe861f6f9b0cbcbe4224ad110
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100280
Tested-by: Tor Lillqvist <tml@collabora.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d39770fcc007..69446ef2e039 100644 --- a/configure.ac +++ b/configure.ac @@ -2909,7 +2909,7 @@ if test $_os = Darwin; then if test "$host_cpu" = x86_64; then with_macosx_version_min_required="10.10"; else - with_macosx_version_min_required="11.0"; + with_macosx_version_min_required="10.16"; fi fi @@ -2953,6 +2953,9 @@ if test $_os = Darwin; then 10.15) MAC_OS_X_VERSION_MIN_REQUIRED="101500" ;; + 10.16) + MAC_OS_X_VERSION_MIN_REQUIRED="101600" + ;; 11.0) MAC_OS_X_VERSION_MIN_REQUIRED="110000" ;; |