diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-11-20 20:33:07 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-11-20 20:35:50 -0500 |
commit | 05da0fe97b122dc34457bfb3fa4ca6cd24d3fe45 (patch) | |
tree | 9ef139f5b0dcba90620774c5e0040fb0d2108ef3 /games-arcade | |
parent | games-action/battalion: fix build w/ upcoming clang16 (diff) | |
download | gentoo-05da0fe97b122dc34457bfb3fa4ca6cd24d3fe45.tar.gz gentoo-05da0fe97b122dc34457bfb3fa4ca6cd24d3fe45.tar.bz2 gentoo-05da0fe97b122dc34457bfb3fa4ca6cd24d3fe45.zip |
games-arcade/grande-KXL: fix build w/ upcoming clang16
Closes: https://bugs.gentoo.org/874990
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/grande-KXL/files/grande-KXL-0.6-clang16.patch | 27 | ||||
-rw-r--r-- | games-arcade/grande-KXL/grande-KXL-0.6-r3.ebuild (renamed from games-arcade/grande-KXL/grande-KXL-0.6-r2.ebuild) | 3 |
2 files changed, 29 insertions, 1 deletions
diff --git a/games-arcade/grande-KXL/files/grande-KXL-0.6-clang16.patch b/games-arcade/grande-KXL/files/grande-KXL-0.6-clang16.patch new file mode 100644 index 000000000000..7bc4a9c380fe --- /dev/null +++ b/games-arcade/grande-KXL/files/grande-KXL-0.6-clang16.patch @@ -0,0 +1,27 @@ +https://bugs.gentoo.org/874990 +--- a/src/enemy.c ++++ b/src/enemy.c +@@ -984,3 +984,3 @@ + { +- static fr[8] = {0, 0, 1, 1 ,2, 2, 1, 1}; ++ static Uint8 fr[8] = {0, 0, 1, 1 ,2, 2, 1, 1}; + +--- a/src/grande.h ++++ b/src/grande.h +@@ -13,2 +13,3 @@ + #include <sys/types.h> ++#include <time.h> + #include <unistd.h> +--- a/src/my.c ++++ b/src/my.c +@@ -527,3 +527,3 @@ + { +- static fr[8] = {0, 1, 0, 1, 2, 1, 2, 3}; ++ static Uint8 fr[8] = {0, 1, 0, 1, 2, 1, 2, 3}; + +--- a/src/ranking.h ++++ b/src/ranking.h +@@ -10,2 +10,3 @@ + void RankingScore(void); ++void ScoreRanking(void); + void ReadScore(void); diff --git a/games-arcade/grande-KXL/grande-KXL-0.6-r2.ebuild b/games-arcade/grande-KXL/grande-KXL-0.6-r3.ebuild index f93c692bec64..13d41d77c5c5 100644 --- a/games-arcade/grande-KXL/grande-KXL-0.6-r2.ebuild +++ b/games-arcade/grande-KXL/grande-KXL-0.6-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,6 +25,7 @@ RDEPEND="${DEPEND} PATCHES=( "${FILESDIR}"/${P}-cflags.patch "${FILESDIR}"/${P}-paths.patch + "${FILESDIR}"/${P}-clang16.patch ) src_prepare() { |