summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-06-26 19:16:46 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-06-26 19:42:33 +0200
commit0b7ffa25b17baba37ff0f627b306f0edac4b50e8 (patch)
tree7e55cdfbc38be344c7ef228b1c0231ef7c4f0aa6
parentmedia-video/pipewire: drop stale comment (diff)
downloadgentoo-0b7ffa25b17baba37ff0f627b306f0edac4b50e8.tar.gz
gentoo-0b7ffa25b17baba37ff0f627b306f0edac4b50e8.tar.bz2
gentoo-0b7ffa25b17baba37ff0f627b306f0edac4b50e8.zip
games-emulation/ppsspp: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31626 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch58
1 files changed, 0 insertions, 58 deletions
diff --git a/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch b/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch
deleted file mode 100644
index c4888f0efb6f..000000000000
--- a/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-https://bugs.gentoo.org/898910
-https://github.com/hrydgard/ppsspp/commit/9874737087e8d24ea72b3f08b4975031b54a80a5
-
-From 822592c6b1441f7110e1cb15dcc5cd2ea1de8099 Mon Sep 17 00:00:00 2001
-From: Andreas Stieger <Andreas.Stieger@gmx.de>
-Date: Wed, 5 Apr 2023 00:20:14 +0200
-Subject: [PATCH] Fix build with GCC13: various standard includes
-
---- a/Common/Data/Format/IniFile.h
-+++ b/Common/Data/Format/IniFile.h
-@@ -8,6 +8,7 @@
- #include <map>
- #include <string>
- #include <vector>
-+#include <cstdint>
-
- #include "Common/File/Path.h"
-
---- a/Common/GPU/OpenGL/GLFeatures.h
-+++ b/Common/GPU/OpenGL/GLFeatures.h
-@@ -5,6 +5,7 @@
- #pragma once
-
- #include <string>
-+#include <cstdint>
-
- // TODO: Replace with thin3d's vendor enum.
- enum {
---- a/Common/Net/NetBuffer.h
-+++ b/Common/Net/NetBuffer.h
-@@ -1,5 +1,7 @@
- #pragma once
-
-+#include <cstdint>
-+
- #include "Common/Buffer.h"
-
- namespace net {
---- a/Core/Reporting.h
-+++ b/Core/Reporting.h
-@@ -19,6 +19,7 @@
-
- #include <string>
- #include <vector>
-+#include <cstdint>
-
- #include "Common/CommonTypes.h"
- #include "Common/File/Path.h"
---- a/ext/vma/vk_mem_alloc.h
-+++ b/ext/vma/vk_mem_alloc.h
-@@ -2624,6 +2624,7 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString(
- #include <cstring>
- #include <utility>
- #include <type_traits>
-+#include <cstdio>
-
- #ifdef _MSC_VER
- #include <intrin.h> // For functions like __popcnt, _BitScanForward etc.