From a2def8a0b41a851f5e2408139eabda9a9164e223 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 28 Jul 2024 04:50:48 +0200 Subject: [PATCH] Autotools: Sync PHP_EXT_* M4 macros PHP_EXT_DIR, PHP_EXT_BUILDDIR, and PHP_EXT_SRCDIR macros don't accept the argument since 82b73fd1e3c53228bb31b75a446114b5fd0cd240. --- build/php.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/php.m4 b/build/php.m4 index 1f78c54ba793d..63b843c4b6baa 100644 --- a/build/php.m4 +++ b/build/php.m4 @@ -927,9 +927,9 @@ dnl substituted. dnl "cxx" can be used to indicate that a C++ shared module is desired. dnl "zend_ext" indicates a zend extension. AC_DEFUN([PHP_NEW_EXTENSION],[ - ext_builddir=[]PHP_EXT_BUILDDIR($1) - ext_srcdir=[]PHP_EXT_SRCDIR($1) - ext_dir=[]PHP_EXT_DIR($1) + ext_builddir=[]PHP_EXT_BUILDDIR() + ext_srcdir=[]PHP_EXT_SRCDIR() + ext_dir=[]PHP_EXT_DIR() ifelse($5,,ac_extra=,[ac_extra=`echo "$5"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g`])