summaryrefslogtreecommitdiff
path: root/games-emulation/fceux/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-11 00:10:45 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-10-11 00:10:45 +0100
commit82002be95de85b10f5953f5e10ced81a40ec1fba (patch)
tree3e95915eeab9799a67d9b0c508260ca31a4694ab /games-emulation/fceux/files
parentfc6ff4de73d70ead4ce3a005b4f5328f2b23129b (diff)
gentoo auto-resync : 11:10:2023 - 00:10:45
Diffstat (limited to 'games-emulation/fceux/files')
-rw-r--r--games-emulation/fceux/files/fceux-2.4.0-gcc13.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/games-emulation/fceux/files/fceux-2.4.0-gcc13.patch b/games-emulation/fceux/files/fceux-2.4.0-gcc13.patch
deleted file mode 100644
index 5e6348281654..000000000000
--- a/games-emulation/fceux/files/fceux-2.4.0-gcc13.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://github.com/TASEmulators/fceux/pull/629
-
-From 6ad3837eebdab597da693a39068b2c05716282be Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Mon, 10 Apr 2023 05:18:41 +0100
-Subject: [PATCH] Fix build with GCC 13
-
-GCC 13 (as usual for new compiler releases) shuffles around some internal includes and so etc is no longer transitively included:
-```
-In file included from /var/tmp/portage/games-emulation/fceux-2.6.5/work/fceux-2.6.5/src/drivers/Qt/AboutWindow.cpp:33:
-/usr/include/x264.h:40:4: warning: #warning You must include stdint.h or inttypes.h before x264.h [-Wcpp]
- 40 | # warning You must include stdint.h or inttypes.h before x264.h
- | ^~~~~~~
-/usr/include/x264.h:127:5: error: uint8_t does not name a type
- 127 | uint8_t *p_payload;
- | ^~~~~~~
-```
-
-See https://gnu.org/software/gcc/gcc-13/porting_to.html.
-
-Bug: https://bugs.gentoo.org/900611
---- a/src/drivers/Qt/AboutWindow.cpp
-+++ b/src/drivers/Qt/AboutWindow.cpp
-@@ -30,6 +30,7 @@
- #endif
-
- #ifdef _USE_X264
-+#include <cstdint>
- #include "x264.h"
- #endif
-