Skip to content

Commit 4dee0c4

Browse files
committed
Fixed bug #70899 (buildconf failure in extensions)
1 parent 4f0a05a commit 4dee0c4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ PHP NEWS
99
array property). (Laruence)
1010
. Fixed bug #70898, #70895 (null ptr deref and segfault with crafted callable).
1111
(Anatol, Laruence)
12+
. Fixed bug #70899 (buildconf failure in extensions). (Bob, Reeze)
1213

1314
- Mysqlnd:
1415
. Fixed bug #68077 (LOAD DATA LOCAL INFILE / open_basedir restriction).

build/config-stubs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
dir=$1; shift
66
for stubfile in $dir/*/config0.m4 $dir/*/config.m4 $dir/*/config9.m4; do
7-
echo "config_m4_src=$stubfile
8-
config_m4_dir=`dirname $stubfile`
7+
echo "dnl Define where extension directories are located in the configure context
8+
AC_DEFUN([PHP_EXT_BUILDDIR], [`dirname $stubfile`])
9+
AC_DEFUN([PHP_EXT_DIR], [`dirname $stubfile`])
10+
AC_DEFUN([PHP_EXT_SRCDIR], [\$abs_srcdir/`dirname $stubfile`])
911
sinclude($stubfile)"
1012
done

0 commit comments

Comments
 (0)