mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
This commit is contained in:
commit
350e449bd8
2 changed files with 13 additions and 0 deletions
3
NEWS
3
NEWS
|
@ -2,6 +2,9 @@ PHP NEWS
|
||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||
?? ??? ????, PHP 8.2.8
|
?? ??? ????, PHP 8.2.8
|
||||||
|
|
||||||
|
- Core:
|
||||||
|
. Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili)
|
||||||
|
|
||||||
- DOM:
|
- DOM:
|
||||||
. Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions
|
. Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions
|
||||||
and segfaults with replaceWith). (nielsdos)
|
and segfaults with replaceWith). (nielsdos)
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -371,6 +371,16 @@ if test "$ac_cv_func_dlopen" = "yes"; then
|
||||||
fi
|
fi
|
||||||
AC_CHECK_LIB(m, sin)
|
AC_CHECK_LIB(m, sin)
|
||||||
|
|
||||||
|
case $host_alias in
|
||||||
|
riscv64*)
|
||||||
|
AC_CHECK_LIB(atomic, __atomic_exchange_1, [
|
||||||
|
PHP_ADD_LIBRARY(atomic)
|
||||||
|
], [
|
||||||
|
AC_MSG_ERROR([Problem with enabling atomic. Please check config.log for details.])
|
||||||
|
])
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
dnl Check for inet_aton in -lc, -lbind and -lresolv.
|
dnl Check for inet_aton in -lc, -lbind and -lresolv.
|
||||||
PHP_CHECK_FUNC(inet_aton, resolv, bind)
|
PHP_CHECK_FUNC(inet_aton, resolv, bind)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue