summaryrefslogtreecommitdiff
path: root/media-sound/gbsplay/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-26 20:08:29 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-26 20:08:29 +0000
commit6dfd9c39ab68bbc917ffc374b2fa515f676f891f (patch)
treec9963a9e1e09b0e237a5c00736caa588c5a0a38f /media-sound/gbsplay/files
parentadb727afeb568404873e8cbc91ba93d3d49eff13 (diff)
gentoo auto-resync : 26:12:2022 - 20:08:29
Diffstat (limited to 'media-sound/gbsplay/files')
-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;
- }
-