File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 6
6
. Fixed bug GH-11937 (Constant ASTs containing objects). (ilutov)
7
7
. Introduced Zend guard recursion protection to fix __debugInfo issue.
8
8
(Jakub Zelenka)
9
+ . Fixed bug GH-11790 (On riscv64 require libatomic if actually needed).
10
+ (Jeremie Courreges-Anglas)
9
11
10
12
- DOM:
11
13
. Fixed GH-11952 (Confusing warning when blocking entity loading via
Original file line number Diff line number Diff line change @@ -377,11 +377,7 @@ AC_CHECK_LIB(m, sin)
377
377
378
378
case $host_alias in
379
379
riscv64*)
380
- AC_CHECK_LIB ( atomic , __atomic_exchange_1 , [
381
- PHP_ADD_LIBRARY(atomic)
382
- ] , [
383
- AC_MSG_ERROR ( [ Problem with enabling atomic. Please check config.log for details.] )
384
- ] )
380
+ PHP_CHECK_FUNC(__atomic_exchange_1, atomic)
385
381
;;
386
382
esac
387
383
You can’t perform that action at this time.
0 commit comments