]> granicus.if.org Git - php/commitdiff
Remove AC_C_CONST
authorPeter Kokot <peterkokot@gmail.com>
Sat, 1 Sep 2018 02:18:46 +0000 (04:18 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Sun, 2 Sep 2018 16:55:03 +0000 (18:55 +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. [2]

PHP also requires at least C89 so `const` is always available.

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

ext/mbstring/config.m4
ext/mbstring/libmbfl/config.h.in
ext/xmlrpc/libxmlrpc/acinclude.m4

index b2d901aca12a4d98655ea4fee7f0bdbab502cc9c..b5503f351694312a244928c91a8ea035142bb76c 100644 (file)
@@ -98,7 +98,6 @@ int main() { return foo(10, "", 3.14); }
       AC_CHECK_SIZEOF(int, 4)
       AC_CHECK_SIZEOF(short, 2)
       AC_CHECK_SIZEOF(long, 4)
-      AC_C_CONST
       AC_HEADER_TIME
       AC_FUNC_ALLOCA
       AC_FUNC_MEMCMP
index bded33ae794add0e57401786e2f2df4d4360ffef..867df524e9981458e32145b3424f63e6ec722603 100644 (file)
@@ -81,9 +81,6 @@
 /* Version number of package */
 #undef VERSION
 
-/* Define to empty if `const' does not conform to ANSI C. */
-#undef const
-
 /* Define to rpl_malloc if the replacement function should be used. */
 #undef malloc
 
index 49b6090f6b0684b2ec156db23c0a6f8800941650..77e372c3a35346274ae4b90389d9ae20921a24fe 100644 (file)
@@ -17,7 +17,6 @@ AC_CHECK_HEADERS(xmlparse.h xmltok.h stdlib.h strings.h string.h)
 
 AC_DEFUN([XMLRPC_TYPE_CHECKS],[
 
-AC_REQUIRE([AC_C_CONST])
 AC_REQUIRE([AC_C_INLINE])
 AC_CHECK_SIZEOF(char, 1)