diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-01-25 13:40:16 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-01-25 13:40:16 +0000 |
commit | 32373aba633556a1bec4314e2309089a587ded43 (patch) | |
tree | 256604e8d5fa32f3fc7ca82a5941d1b79722e814 /games-emulation | |
parent | x11-terms/cool-retro-term: migrate from gnome2-utils to xdg-utils (diff) | |
download | gentoo-32373aba633556a1bec4314e2309089a587ded43.tar.gz gentoo-32373aba633556a1bec4314e2309089a587ded43.tar.bz2 gentoo-32373aba633556a1bec4314e2309089a587ded43.zip |
games-emulation/ppsspp: tweak for gcc-10
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/ppsspp/files/ppsspp-1.5.4-stdint-gcc-10.patch | 10 | ||||
-rw-r--r-- | games-emulation/ppsspp/ppsspp-1.5.4-r2.ebuild | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games-emulation/ppsspp/files/ppsspp-1.5.4-stdint-gcc-10.patch b/games-emulation/ppsspp/files/ppsspp-1.5.4-stdint-gcc-10.patch new file mode 100644 index 000000000000..0a7c45a810b2 --- /dev/null +++ b/games-emulation/ppsspp/files/ppsspp-1.5.4-stdint-gcc-10.patch @@ -0,0 +1,10 @@ +--- a/Common/Hashmaps.h ++++ b/Common/Hashmaps.h +@@ -2,6 +2,7 @@ + + #include <cstring> + #include <vector> ++#include <stdint.h> /* uint32_t */ + + #include "ext/xxhash.h" + #include "Common/CommonFuncs.h" diff --git a/games-emulation/ppsspp/ppsspp-1.5.4-r2.ebuild b/games-emulation/ppsspp/ppsspp-1.5.4-r2.ebuild index 4e7f8f7f0271..8de0ecaf7478 100644 --- a/games-emulation/ppsspp/ppsspp-1.5.4-r2.ebuild +++ b/games-emulation/ppsspp/ppsspp-1.5.4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -50,6 +50,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.4.2-assets-lookup.patch "${FILESDIR}"/${PN}-1.4-O2.patch "${FILESDIR}"/${P}-ffmpeg-4.patch + "${FILESDIR}"/${P}-stdint-gcc-10.patch ) src_unpack() { |