Skip to content

Commit f28ddec

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix erroneous dnl appended in configure (#14013)
2 parents 2f64d07 + 7d3d8de commit f28ddec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ PHP NEWS
1313
other timeout implementations). (Kévin Dunglas)
1414
. Fixed bug GH-14003 (Broken cleanup of unfinished calls with callable convert
1515
parameters). (ilutov)
16+
. Fixed bug GH-14013 (Erroneous dnl appended in configure). (Peter Kokot)
1617

1718
- Fibers:
1819
. Fixed bug GH-13903 (ASAN false positive underflow when executing copy()).

build/php_cxx_compile_stdcxx.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ AC_DEFUN([PHP_CXX_COMPILE_STDCXX], [dnl
2727
[$1], [14], [ax_cxx_compile_alternatives="14 1y"],
2828
[$1], [17], [ax_cxx_compile_alternatives="17 1z"],
2929
[$1], [20], [ax_cxx_compile_alternatives="20"],
30-
[m4_fatal([invalid first argument `$1' to PHP_CXX_COMPILE_STDCXX])])dnl
30+
[m4_fatal([invalid first argument `$1' to PHP_CXX_COMPILE_STDCXX])])[]dnl
3131
m4_if([$2], [], [ax_cxx_compile_cxx$1_required=true],
3232
[$2], [mandatory], [ax_cxx_compile_cxx$1_required=true],
3333
[$2], [optional], [ax_cxx_compile_cxx$1_required=false],
34-
[m4_fatal([invalid third argument `$2' to PHP_CXX_COMPILE_STDCXX])])dnl
34+
[m4_fatal([invalid third argument `$2' to PHP_CXX_COMPILE_STDCXX])])[]dnl
3535
AC_LANG_PUSH([C++])dnl
3636
ac_success=no
3737

0 commit comments

Comments
 (0)