]> git.ipfire.org Git - thirdparty/autoconf.git/commit
Make _AC_C_C99_TEST_MAIN more robust with -Werror
authorVincent Lefevre <vincent@vinc17.net>
Thu, 7 Aug 2025 15:22:25 +0000 (17:22 +0200)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 7 Aug 2025 16:10:03 +0000 (09:10 -0700)
commitcce1af1a7ce31b28dcf9ee3f0a542bcbd24a4e69
tree22865893a0f0578eb330c5ede7d0165d129eae5a
parent6fc6066df1b8902ba255c007e87c084fead75119
Make _AC_C_C99_TEST_MAIN more robust with -Werror

The current code fails with gcc r16-2729-g0d276cd378e and
  -Werror=discarded-qualifiers -Werror=write-strings
(the -Werror=write-strings is useful to check compatibility of
user code with C++, and the -Werror=discarded-qualifiers is an
upgrade of a default warning to an error). Since this is a test
for C99, we may assume that const is supported by the compiler,
and adding const makes the code more robust in this context.

Copyright-paperwork-exempt: yes
lib/autoconf/c.m4