configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 0d1b6f9ffb9d9908dddd3b895bf2458c524abda8 Author: Patrick Luby <guibmac...@gmail.com> AuthorDate: Tue Jul 16 21:01:20 2024 -0400 Commit: Patrick Luby <guibomac...@gmail.com> CommitDate: Wed Jul 17 04:37:14 2024 +0200
Enable building with Xcode 16.0 beta 3 on macOS 15.0 public beta Change-Id: Ia6d7fc9d8ec4e047d63a5ceb973ada997f3bf2a9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170595 Tested-by: Jenkins Reviewed-by: Patrick Luby <guibomac...@gmail.com> diff --git a/configure.ac b/configure.ac index 9dcee9af0251..70937a23af9c 100644 --- a/configure.ac +++ b/configure.ac @@ -3721,7 +3721,7 @@ if test $_os = Darwin; then if test "$my_xcode_ver3" -ge 1205; then AC_MSG_RESULT([yes ($my_xcode_ver2)]) if test $MAC_OS_X_VERSION_MIN_REQUIRED -lt 120000; then - if test "$my_xcode_ver3" -ge 1600; then + if test "$my_xcode_ver3" -ge 1700; then dnl the Xcode 15 relnotes state that the classic linker will disappear in the next version, but nothing about dnl fixing the problem with weak symbols/macOS 11 compatibility, so assume for now that Xcode 16 will break it... AC_MSG_ERROR([Check that Xcode 16 still supports the old linker/that it doesn't break macOS 11 compatibility, then remove this check]);