diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-25 09:34:25 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-07-29 08:00:15 +0200 |
commit | b12cece8d5030006dde9acf8a771ca61e7f25de2 (patch) | |
tree | 05afe6ee1055a9f5107852f8413e505460a244f6 | |
parent | 0a01eae039bd0325864d1b09890b7f3c03d79e11 (diff) | |
download | php-git-b12cece8d5030006dde9acf8a771ca61e7f25de2.tar.gz |
Replace obsolete AC_AIX with AC_USE_SYSTEM_EXTENSIONS
Since Autoconf 2.62 the AC_AIX macro has been made obsolete and should
be replaced with the AC_USE_SYSTEM_EXTENSIONS instead.
Both macro behaviors are the same since the old one is just a wrapper
around the new AC_USE_SYSTEM_EXTENSIONS:
http://git.savannah.gnu.org/cgit/autoconf.git/tree/lib/autoconf/specific.m4
PHP 7.2+ and the main configure.ac script require minimum Autoconf 2.64+.
Refs:
- http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS
- https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Obsolete-Macros.html
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a61dcef775..e976c04551 100644 --- a/configure.ac +++ b/configure.ac @@ -181,7 +181,7 @@ AC_PROG_CC_C_O dnl Change to AC_PROG_CC_STDC when we start requiring a post-2.13 autoconf dnl AC_PROG_CC_STDC AC_PROG_CPP -AC_AIX +AC_USE_SYSTEM_EXTENSIONS AC_PROG_LN_S dnl Support systems with system libraries in e.g. /usr/lib64 |