summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2023-03-21 14:07:51 +0200
committerLasse Collin <lasse.collin@tukaani.org>2023-03-21 14:07:51 +0200
commit8be136f667aaeb8f9e16fbd57a83cb282f0c27ff (patch)
tree069241824a772291b577d87da51a995c9e08d812
parent53cc475f2652d9e390ca002018dfd0af0626ef80 (diff)
downloadxz-8be136f667aaeb8f9e16fbd57a83cb282f0c27ff.tar.gz
Build: Add a comment that AC_PROG_CC_C99 is needed for Autoconf 2.69.
It's obsolete in Autoconf >= 2.70 and just an alias for AC_PROG_CC but Autoconf 2.69 requires AC_PROG_CC_C99 to get a C99 compiler.
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index a1f76c4..9ab921e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -602,6 +602,9 @@ echo "Initializing Automake:"
AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 -Wno-unsupported])
AC_PROG_LN_S
+dnl # Autoconf >= 2.70 warns that AC_PROG_CC_C99 is obsolete. However,
+dnl # we have to keep using AC_PROG_CC_C99 instead of AC_PROG_CC
+dnl # as long as we try to be compatible with Autoconf 2.69.
AC_PROG_CC_C99
if test x$ac_cv_prog_cc_c99 = xno ; then
AC_MSG_ERROR([No C99 compiler was found.])