File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 22|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33?? ??? ????, PHP 8.2.8
44
5+ - Core:
6+ . Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili)
7+
58- DOM:
69 . Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions
710 and segfaults with replaceWith). (nielsdos)
Original file line number Diff line number Diff line change @@ -371,6 +371,16 @@ if test "$ac_cv_func_dlopen" = "yes"; then
371371fi
372372AC_CHECK_LIB ( m , sin )
373373
374+ case $host_alias in
375+ riscv64*)
376+ AC_CHECK_LIB ( atomic , __atomic_exchange_1 , [
377+ PHP_ADD_LIBRARY(atomic)
378+ ] , [
379+ AC_MSG_ERROR ( [ Problem with enabling atomic. Please check config.log for details.] )
380+ ] )
381+ ;;
382+ esac
383+
374384dnl Check for inet_aton in -lc, -lbind and -lresolv.
375385PHP_CHECK_FUNC(inet_aton, resolv, bind)
376386
You can’t perform that action at this time.
0 commit comments