Modernize the AC_PRESERVE_HELP_ORDER macro call

The Autoconf AC_PRESERVE_HELP_ORDER macro has been available since
Autoconf 2.59c [1] and in PHP it has been called conditionally on two places
to support older Autoconf versions. With recent updates and the macro
can be called unconditionally.

[1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS
This commit is contained in:
Peter Kokot 2018-10-11 12:58:41 +02:00
parent a710ceee62
commit 9bbf9967bd
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ dnl -------------------------------------------------------------------------
AC_PREREQ([2.68]) AC_PREREQ([2.68])
AC_INIT(README.GIT-RULES) AC_INIT(README.GIT-RULES)
ifdef([AC_PRESERVE_HELP_ORDER], [AC_PRESERVE_HELP_ORDER], []) AC_PRESERVE_HELP_ORDER
PHP_CONFIG_NICE(config.nice) PHP_CONFIG_NICE(config.nice)

View file

@ -2,7 +2,7 @@ dnl This file becomes configure.ac for self-contained extensions.
AC_PREREQ([2.68]) AC_PREREQ([2.68])
AC_INIT(config.m4) AC_INIT(config.m4)
ifdef([AC_PRESERVE_HELP_ORDER], [AC_PRESERVE_HELP_ORDER], []) AC_PRESERVE_HELP_ORDER
PHP_CONFIG_NICE(config.nice) PHP_CONFIG_NICE(config.nice)