summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/dev/generate-phpt/src/gtTestSubject.php4
-rw-r--r--scripts/phpize.in4
-rw-r--r--scripts/phpize.m42
3 files changed, 5 insertions, 5 deletions
diff --git a/scripts/dev/generate-phpt/src/gtTestSubject.php b/scripts/dev/generate-phpt/src/gtTestSubject.php
index ccf3caad93..76454dc7b8 100644
--- a/scripts/dev/generate-phpt/src/gtTestSubject.php
+++ b/scripts/dev/generate-phpt/src/gtTestSubject.php
@@ -1,8 +1,8 @@
<?php
abstract class gtTestSubject {
- protected $optionalArgumentNames;
- protected $mandatoryArgumentNames;
+ protected $optionalArgumentNames = [];
+ protected $mandatoryArgumentNames = [];
protected $extraArgumentList = '';
protected $shortArgumentList = '';
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 240590da74..6302d4ee2f 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -12,7 +12,7 @@ SED="@SED@"
FILES_BUILD="mkdep.awk scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4"
FILES="acinclude.m4 Makefile.global config.sub config.guess ltmain.sh run-tests*.php"
CLEAN_FILES="$FILES *.o *.lo *.la .deps .libs/ build/ modules/ install-sh \
- mkinstalldirs missing config.nice config.sub config.guess configure configure.in \
+ mkinstalldirs missing config.nice config.sub config.guess configure configure.ac \
aclocal.m4 config.h config.h.in conftest* ltmain.sh libtool config.cache autom4te.cache/ \
config.log config.status Makefile Makefile.fragments Makefile.objects confdefs.h \
run-tests*.php tests/*.diff tests/*.exp tests/*.log tests/*.out tests/*.php"
@@ -153,7 +153,7 @@ phpize_replace_prefix()
{
$SED \
-e "s#@prefix@#$prefix#" \
- < "$phpdir/phpize.m4" > configure.in
+ < "$phpdir/phpize.m4" > configure.ac
}
phpize_autotools()
diff --git a/scripts/phpize.m4 b/scripts/phpize.m4
index d5f5f476ec..1094e2812c 100644
--- a/scripts/phpize.m4
+++ b/scripts/phpize.m4
@@ -1,4 +1,4 @@
-dnl This file becomes configure.in for self-contained extensions.
+dnl This file becomes configure.ac for self-contained extensions.
AC_PREREQ(2.59)
AC_INIT(config.m4)