Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions UPGRADING.INTERNALS
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ PHP 8.2 INTERNALS UPGRADE NOTES
2. Build system changes
========================

* The build system now requires PHP 7.4.0 at least. Previously PHP 7.1 was
required.
* Unsupported libxml2 2.10.0 symbols are no longer exported on Windows.
* Identifier names for namespaced functions generated from stub files through
gen_stub.php have been changed. This requires that namespaced functions
Expand Down
4 changes: 2 additions & 2 deletions build/php.m4
Original file line number Diff line number Diff line change
Expand Up @@ -1900,8 +1900,8 @@ AC_DEFUN([PHP_PROG_PHP],[
set $php_version
IFS=$ac_IFS
php_version_num=`expr [$]{1:-0} \* 10000 + [$]{2:-0} \* 100 + [$]{3:-0}`
dnl Minimum supported version for gen_stubs.php is PHP 7.1.
if test "$php_version_num" -lt 70100; then
dnl Minimum supported version for gen_stub.php is PHP 7.4.
if test "$php_version_num" -lt 70400; then
AC_MSG_RESULT([$php_version (too old)])
unset PHP
else
Expand Down