This is an automated email from the ASF dual-hosted git repository.
jimjag pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new 0791cec65c configure.ac: allow autoconf 2.71 except on macOS, which
needs 2.72 due to the toolchain fixes in autoconf 2.72.
0791cec65c is described below
commit 0791cec65c0068740b3ca6cd1f3e87bc165ce041
Author: Jim Jagielski <[email protected]>
AuthorDate: Wed Aug 5 07:01:50 2026 -0400
configure.ac: allow autoconf 2.71 except on macOS, which needs 2.72
due to the toolchain fixes in autoconf 2.72.
---
main/configure.ac | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/main/configure.ac b/main/configure.ac
index b2d1a6ab72..e79f175db4 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -19,7 +19,11 @@ dnl * under the License.
dnl *
dnl * *************************************************************
AC_REVISION( $Revision$ )
-AC_PREREQ([2.72])
+dnl macOS needs autoconf 2.72 (2.71 mis-detects the toolchain there);
+dnl other platforms remain on the older 2.71 floor.
+m4_define([AOO_REQUIRED_AUTOCONF],
+ [m4_if(m4_esyscmd_s([uname]), [Darwin], [2.72], [2.71])])
+AC_PREREQ(AOO_REQUIRED_AUTOCONF)
AC_INIT
echo "$@" >config.parms
AC_ARG_WITH(dmake-path,