]> granicus.if.org Git - onig/commitdiff
Remove AC_C_CONST
authorPeter Kokot <peterkokot@gmail.com>
Thu, 6 Sep 2018 04:00:14 +0000 (06:00 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Thu, 6 Sep 2018 04:00:14 +0000 (06:00 +0200)
Autoconf 2.59d (released in 2006) [1] started promoting several macros
as not relevant for newer systems, including the `AC_C_CONST`.

The `const` keyword is used in C since C89. On old systems some compilers
lacked the `const` and this macro defined it to be empty. This check was
relevant on systems with compilers before C89 and on current systems it
can be omitted since Ë™const` is always available. [2]

Refs:
[1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS
[2] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html

configure.ac

index c39756aec8e23da6b71895fbd8a3ec39fe92ece5..61cfff95e8424692db536aa3f7c7fc9109ee5ac7 100644 (file)
@@ -56,7 +56,6 @@ dnl Checks for typedefs, structures, and compiler characteristics.
 AC_CHECK_SIZEOF(int, 4)
 AC_CHECK_SIZEOF(short, 2)
 AC_CHECK_SIZEOF(long, 4)
-AC_C_CONST
 
 dnl Checks for library functions.
 AC_FUNC_ALLOCA