summaryrefslogtreecommitdiff
path: root/games-emulation/ppsspp
diff options
context:
space:
mode:
Diffstat (limited to 'games-emulation/ppsspp')
-rw-r--r--games-emulation/ppsspp/Manifest1
-rw-r--r--games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch58
2 files changed, 0 insertions, 59 deletions
diff --git a/games-emulation/ppsspp/Manifest b/games-emulation/ppsspp/Manifest
index 1cc378f7cf7c..0d7650ec8011 100644
--- a/games-emulation/ppsspp/Manifest
+++ b/games-emulation/ppsspp/Manifest
@@ -1,4 +1,3 @@
-AUX ppsspp-1.14.4-gcc13.patch 1395 BLAKE2B a6bc3e1b3fb4ddf26adc35d2c8815b5ac44ad836d0503356499f198b0c7bd6518dd3e84d7673ff065a2a950a004159de151a289a35d5610d96bb6bb120129329 SHA512 c720bf9441d3aa677507576b77ed839834e24436f8bc369466e45c38a021e15e4ae857c53b14a7ca4d5914fc28f685a74149ab9a02ff9ce41320aef68daa5fd4
AUX ppsspp-CMakeLists-flags.patch 913 BLAKE2B 7bd5df94b51dad35325586f7ad23284436ba670a8c2218a4a6bfb28fb5a055240aeb0543fe331310a0d86d3661cbdf418689a592139ff832802ba1fabbd10fc3 SHA512 5b2ee899b2fbed7229d4abc027e2a010327be4d334e343f977319c475feaf2d180bd74d3640022d0175b11e8256035c828dd4cf03c8a5b9240c989b2d7f72fb7
AUX ppsspp-disable-ccache-autodetection.patch 753 BLAKE2B aa580bb2c657830bb079618e83903c4a0e28aa13acd612592f58feae2b0ef98535ea6f7e3c76aa9e74004aa80367aea372aec443bb2b789d5f3e7359872ea34f SHA512 cbf1f6e9f200cfa3b51bb84e09206a85aaea38511c0036a24d5e12547c659019fe88fbf221d2f7ddbdb9f0129f8b0fabb24baa594c658ab5ab584a0a723bc1c4
DIST ppsspp-1.15.4.tar.xz 51947468 BLAKE2B c6a5e621b02556b791ec41389f17dede63811c87ff628b8f1304ac950071b365ecc9be05f4042e4e3b81e77f5a14b6931577f08b0174fec821350a1d7eca4d6a SHA512 9d2c140b0d633e5ca6191aaf276b7e4f6d029f29d1313a45fb78ee3879fec09f57d816604c51474ab6fe9cde713787d5769e87466d3c3015fe6a9b195ff198d2
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.