Skip to content

Commit ae9b9ea

Browse files
authored
Autotools: Sync PHP_EXT_* M4 macros (#15134)
PHP_EXT_DIR, PHP_EXT_BUILDDIR, and PHP_EXT_SRCDIR macros don't accept the argument since 82b73fd.
1 parent 590786a commit ae9b9ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/php.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -927,9 +927,9 @@ dnl substituted.
927927
dnl "cxx" can be used to indicate that a C++ shared module is desired.
928928
dnl "zend_ext" indicates a zend extension.
929929
AC_DEFUN([PHP_NEW_EXTENSION],[
930-
ext_builddir=[]PHP_EXT_BUILDDIR($1)
931-
ext_srcdir=[]PHP_EXT_SRCDIR($1)
932-
ext_dir=[]PHP_EXT_DIR($1)
930+
ext_builddir=[]PHP_EXT_BUILDDIR()
931+
ext_srcdir=[]PHP_EXT_SRCDIR()
932+
ext_dir=[]PHP_EXT_DIR()
933933
934934
ifelse($5,,ac_extra=,[ac_extra=`echo "$5"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g`])
935935

0 commit comments

Comments
 (0)