summaryrefslogtreecommitdiff
path: root/games-emulation/pcsx2/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-28 03:11:19 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-28 03:11:19 +0100
commit1bc9c3b9d5a8c51b67f6ea2f57bdd76ff5073097 (patch)
tree8ff3b237086572800bda4afb971fc61617aa941e /games-emulation/pcsx2/files
parent3ca7a521e79841f7247feb67780a70722c997d55 (diff)
gentoo auto-resync : 28:09:2022 - 03:11:19
Diffstat (limited to 'games-emulation/pcsx2/files')
-rw-r--r--games-emulation/pcsx2/files/pcsx2-1.7.3329-clang16.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/games-emulation/pcsx2/files/pcsx2-1.7.3329-clang16.patch b/games-emulation/pcsx2/files/pcsx2-1.7.3329-clang16.patch
deleted file mode 100644
index 331101ed6a1c..000000000000
--- a/games-emulation/pcsx2/files/pcsx2-1.7.3329-clang16.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-https://bugs.gentoo.org/870412
---- a/3rdparty/cpuinfo/src/api.c
-+++ b/3rdparty/cpuinfo/src/api.c
-@@ -78 +78 @@
--const struct cpuinfo_uarch_info* cpuinfo_get_uarchs() {
-+const struct cpuinfo_uarch_info* cpuinfo_get_uarchs(void) {
---- a/cmake/FindPCAP.cmake
-+++ b/cmake/FindPCAP.cmake
-@@ -47 +47 @@
--check_c_source_compiles("int main() { return 0; }" PCAP_LINKS_SOLO)
-+check_c_source_compiles("int main(void) { return 0; }" PCAP_LINKS_SOLO)
-@@ -55 +55 @@
-- check_c_source_compiles("int main() { return 0; }" PCAP_NEEDS_THREADS)
-+ check_c_source_compiles("int main(void) { return 0; }" PCAP_NEEDS_THREADS)
---- a/tests/ctest/CMakeLists.txt
-+++ b/tests/ctest/CMakeLists.txt
-@@ -20 +20 @@
-- int main() {
-+ int main(void) {