summaryrefslogtreecommitdiff
path: root/scripts/phpize.m4
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-07-05 03:06:06 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-07-07 12:10:53 +0200
commit491f1477bea49e4ccd499664d17d35efb06d0912 (patch)
tree7830fa4012058290875bdddd12463c188dfada11 /scripts/phpize.m4
parent9aeeecc47c58b130bb146676649e0c721150f9c7 (diff)
downloadphp-git-491f1477bea49e4ccd499664d17d35efb06d0912.tar.gz
Replace AC_CONFIG_HEADER with AC_CONFIG_HEADERS
Autoconf doesn't mention the AC_CONFIG_HEADER macro since the v2.13 released in 1999 anywhere in the documentation. Future of this macro is unclear and commented as possible candidate for obsoletion in the autoconf source code. Since it is just a wrapper around the main AC_CONFIG_HEADERS macro, the functionality is the same, and also more clear to find it in the autoconf documentation and avoid possible future obsoletion.
Diffstat (limited to 'scripts/phpize.m4')
-rw-r--r--scripts/phpize.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/phpize.m4 b/scripts/phpize.m4
index 1094e2812c..9609b181eb 100644
--- a/scripts/phpize.m4
+++ b/scripts/phpize.m4
@@ -197,6 +197,6 @@ PHP_GEN_GLOBAL_MAKEFILE
test -d modules || $php_shtool mkdir modules
touch .deps
-AC_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
AC_OUTPUT()