summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-11-16 19:17:56 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-11-16 19:34:08 +0100
commit894ed3f2dffe6219968ad8ad2b252b49e05c4979 (patch)
tree3088cfc9f34f3331a206da33104867e68aca6c8c /media-sound
parentapp-shells/bash: remove unused patches (diff)
downloadgentoo-894ed3f2dffe6219968ad8ad2b252b49e05c4979.tar.gz
gentoo-894ed3f2dffe6219968ad8ad2b252b49e05c4979.tar.bz2
gentoo-894ed3f2dffe6219968ad8ad2b252b49e05c4979.zip
media-sound/deadbeef: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/28300 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/deadbeef/files/deadbeef-musl.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/media-sound/deadbeef/files/deadbeef-musl.patch b/media-sound/deadbeef/files/deadbeef-musl.patch
deleted file mode 100644
index a62827243e9f..000000000000
--- a/media-sound/deadbeef/files/deadbeef-musl.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-https://github.com/DeaDBeeF-Player/deadbeef/commit/6864a5779fd6beb21507357736e0c988748cec5a
-
-Bug: https://bugs.gentoo.org/870187
-
-From 6864a5779fd6beb21507357736e0c988748cec5a Mon Sep 17 00:00:00 2001
-From: orbea <orbea@riseup.net>
-Date: Wed, 21 Sep 2022 08:36:46 -0700
-Subject: [PATCH] Fix the build with musl
-
-Fixes: https://github.com/DeaDBeeF-Player/deadbeef/issues/2858
----
- threading_pthread.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/threading_pthread.c b/threading_pthread.c
-index 004eb6bdc..8d5f4c31c 100644
---- a/threading_pthread.c
-+++ b/threading_pthread.c
-@@ -97,7 +97,7 @@ thread_start_low_priority (void (*fn)(void *ctx), void *ctx) {
- pthread_cancel (tid);
- return 0;
- }
-- return tid;
-+ return (intptr_t)tid;
- #else
- return thread_start (fn, ctx);
- #endif