File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.1.21
4
4
5
+ - Core:
6
+ . Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili)
7
+
5
8
- DOM:
6
9
. Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions
7
10
and segfaults with replaceWith). (nielsdos)
Original file line number Diff line number Diff line change @@ -365,6 +365,16 @@ if test "$ac_cv_func_dlopen" = "yes"; then
365
365
fi
366
366
AC_CHECK_LIB ( m , sin )
367
367
368
+ case $host_alias in
369
+ riscv64*)
370
+ AC_CHECK_LIB ( atomic , __atomic_exchange_1 , [
371
+ PHP_ADD_LIBRARY(atomic)
372
+ ] , [
373
+ AC_MSG_ERROR ( [ Problem with enabling atomic. Please check config.log for details.] )
374
+ ] )
375
+ ;;
376
+ esac
377
+
368
378
dnl Check for inet_aton in -lc, -lbind and -lresolv.
369
379
PHP_CHECK_FUNC(inet_aton, resolv, bind)
370
380
You can’t perform that action at this time.
0 commit comments