configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 4e838aac8ef632062984c4fd8258949a235d40a8
Author: Patrick Luby <[email protected]>
AuthorDate: Tue Jul 16 21:01:20 2024 -0400
Commit: Stephan Bergmann <[email protected]>
CommitDate: Mon Nov 18 10:54:47 2024 +0100
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 <[email protected]>
(cherry picked from commit 0d1b6f9ffb9d9908dddd3b895bf2458c524abda8)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176703
Reviewed-by: Stephan Bergmann <[email protected]>
Tested-by: Stephan Bergmann <[email protected]>
diff --git a/configure.ac b/configure.ac
index 19518c324d3e..30b5372b4845 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3659,7 +3659,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]);