summaryrefslogtreecommitdiff
path: root/dev-lang/php/files/fix-musl-llvm.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2025-04-29 20:04:58 +0200
committerMichael Orlitzky <mjo@gentoo.org>2025-04-30 21:01:11 -0400
commit59e7cbac8ef77a24e5382fa0dd0234503d2f0503 (patch)
tree0435b02445f011fabbc57cfa98a5962791329891 /dev-lang/php/files/fix-musl-llvm.patch
parentb278938808573dd313fd94bd9957553e5c52aaba (diff)
downloadgentoo-59e7cbac8ef77a24e5382fa0dd0234503d2f0503.tar.gz
gentoo-59e7cbac8ef77a24e5382fa0dd0234503d2f0503.tar.bz2
gentoo-59e7cbac8ef77a24e5382fa0dd0234503d2f0503.zip
dev-lang/php: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'dev-lang/php/files/fix-musl-llvm.patch')
-rw-r--r--dev-lang/php/files/fix-musl-llvm.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-lang/php/files/fix-musl-llvm.patch b/dev-lang/php/files/fix-musl-llvm.patch
deleted file mode 100644
index bf299837829c..000000000000
--- a/dev-lang/php/files/fix-musl-llvm.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 684f0d9e5946e92008404b3d5a131edc4f34f7da Mon Sep 17 00:00:00 2001
-From: Arnaud Le Blanc <arnaud.lb@gmail.com>
-Date: Thu, 4 Apr 2024 16:10:28 +0200
-Subject: [PATCH] Fix stream_cookie_seeker signature under musl
-
----
- main/streams/cast.c | 10 +++-------
- 1 file changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/main/streams/cast.c b/main/streams/cast.c
-index 3bad65fbac1f5..8d9f4a9d2d54b 100644
---- a/main/streams/cast.c
-+++ b/main/streams/cast.c
-@@ -104,6 +104,9 @@ static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t siz
-
- # ifdef COOKIE_SEEKER_USES_OFF64_T
- static int stream_cookie_seeker(void *cookie, off64_t *position, int whence)
-+# else
-+static int stream_cookie_seeker(void *cookie, off_t *position, int whence)
-+# endif
- {
-
- *position = php_stream_seek((php_stream *)cookie, (zend_off_t)*position, whence);
-@@ -113,13 +116,6 @@ static int stream_cookie_seeker(void *cookie, off64_t *position, int whence)
- }
- return 0;
- }
--# else
--static int stream_cookie_seeker(void *cookie, zend_off_t position, int whence)
--{
--
-- return php_stream_seek((php_stream *)cookie, position, whence);
--}
--# endif
-
- static int stream_cookie_closer(void *cookie)
- {