summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2024-02-18 17:57:48 -0500
committerMichael Orlitzky <mjo@gentoo.org>2024-02-18 18:54:38 -0500
commit4a5ef8029ab6211cfc7b710e1c0e49375dd1d0a7 (patch)
tree01cdd981f13479072ad660796eb7c5d81f10c2ad /dev-lang/php/files
parentdev-lang/php: whitelist some implicit function declarations for php-8.1.x (diff)
downloadgentoo-4a5ef8029ab6211cfc7b710e1c0e49375dd1d0a7.tar.gz
gentoo-4a5ef8029ab6211cfc7b710e1c0e49375dd1d0a7.tar.bz2
gentoo-4a5ef8029ab6211cfc7b710e1c0e49375dd1d0a7.zip
dev-lang/php: replace 8.2.15-r1 and 8.3.2-r1 with 8.2.16 and 8.3.3
Closes: https://bugs.gentoo.org/923335 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'dev-lang/php/files')
-rw-r--r--dev-lang/php/files/php-8.2.15-gcc14-build-fix.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-lang/php/files/php-8.2.15-gcc14-build-fix.patch b/dev-lang/php/files/php-8.2.15-gcc14-build-fix.patch
deleted file mode 100644
index 5f21f442ee06..000000000000
--- a/dev-lang/php/files/php-8.2.15-gcc14-build-fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://github.com/php/php-src/commit/72526609413e8a8cd768ed4966c17b1a9db6c12c.patch
-From: Remi Collet <remi@remirepo.net>
-Date: Mon, 22 Jan 2024 10:01:25 +0100
-Subject: [PATCH] Fix GH-13215 GCC 14 build
-
---- a/Zend/zend_atomic.h
-+++ b/Zend/zend_atomic.h
-@@ -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