summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-12-26 09:33:06 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-12-26 14:41:00 +0100
commita82bdb1ff3b85e245bb957493a8fe1de659fe1cb (patch)
treeafb28a6723214517c98b8bca96da57451da7e3e3 /media-sound
parentnet-analyzer/monitoring-plugins: remove unused patch (diff)
downloadgentoo-a82bdb1ff3b85e245bb957493a8fe1de659fe1cb.tar.gz
gentoo-a82bdb1ff3b85e245bb957493a8fe1de659fe1cb.tar.bz2
gentoo-a82bdb1ff3b85e245bb957493a8fe1de659fe1cb.zip
media-sound/gbsplay: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/28811 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch b/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch
deleted file mode 100644
index 82089f9553a5..000000000000
--- a/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Fix linking failure due to different GCC5 inline semantics
-https://bugs.gentoo.org/show_bug.cgi?id=571000
-
-In addition, fix QA warnings caused by passing
-an unformatted string to printf().
-
---- gbsplay-0.0.91/Makefile
-+++ gbsplay-0.0.91/Makefile
-@@ -35,7 +35,7 @@
- -predboolothers \
- -shiftnegative \
- -shiftimplementation
--GBSCFLAGS := -Wall -fsigned-char -D_FORTIFY_SOURCE=2
-+GBSCFLAGS := -Wall -fsigned-char -std=gnu89
- GBSLDFLAGS := -Wl,-O1 -lm
- GBSPLAYLDFLAGS :=
-
---- gbsplay-0.0.91/plugout.c
-+++ gbsplay-0.0.91/plugout.c
-@@ -55,10 +55,10 @@
- {
- long idx;
-
-- printf(_("Available output plugins:\n\n"));
-+ fputs(_("Available output plugins:\n\n"), stdout);
-
- if (plugouts[0] == NULL) {
-- printf(_("No output plugins available.\n\n"));
-+ fputs(_("No output plugins available.\n\n"), stdout);
- return;
- }
-