File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ PHP 8.2 INTERNALS UPGRADE NOTES
62622. Build system changes
6363========================
6464
65+ * The build system now requires PHP 7.4.0 at least. Previously PHP 7.1 was
66+ required.
6567* Unsupported libxml2 2.10.0 symbols are no longer exported on Windows.
6668* Identifier names for namespaced functions generated from stub files through
6769 gen_stub.php have been changed. This requires that namespaced functions
Original file line number Diff line number Diff line change @@ -1900,8 +1900,8 @@ AC_DEFUN([PHP_PROG_PHP],[
19001900 set $php_version
19011901 IFS=$ac_IFS
19021902 php_version_num=`expr [ $] {1:-0} \* 10000 + [ $] {2:-0} \* 100 + [ $] {3:-0}`
1903- dnl Minimum supported version for gen_stubs .php is PHP 7.1 .
1904- if test "$php_version_num" -lt 70100 ; then
1903+ dnl Minimum supported version for gen_stub .php is PHP 7.4 .
1904+ if test "$php_version_num" -lt 70400 ; then
19051905 AC_MSG_RESULT ( [ $php_version (too old)] )
19061906 unset PHP
19071907 else
You can’t perform that action at this time.
0 commit comments