Merge branch 'PHP-8.3'

* PHP-8.3:
  NEWS
  NEWS
  Fix GH-13215 GCC 14 build
This commit is contained in:
Remi Collet 2024-01-22 10:59:48 +01:00
commit 8ce4d240f7
No known key found for this signature in database
GPG Key ID: DC9FF8D3EE5AF27F

View File

@ -23,7 +23,7 @@
((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || (__GNUC__ > (x)))
/* Builtins are used to avoid library linkage */
#if __has_feature(c_atomic)
#if __has_feature(c_atomic) && defined(__clang__)
#define HAVE_C11_ATOMICS 1
#elif ZEND_GCC_PREREQ(4, 7)
#define HAVE_GNUC_ATOMICS 1