mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
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:
parent
a710ceee62
commit
9bbf9967bd
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue