summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Sokolov <sokolov@google.com>2020-10-05 00:42:52 +0100
committerSam James <sam@gentoo.org>2020-10-15 18:51:26 +0000
commit695d9059933b729bb333cfe00e0223f632ae32ca (patch)
treed9e656b24504bc89f556920482a7705d7ebeb1f5 /games-board/biloba/files/biloba-0.9.3-gcc-10.patch
parentkde-frameworks/kio: Drop 5.75.0 (r0) (diff)
downloadgentoo-695d9059933b729bb333cfe00e0223f632ae32ca.tar.gz
gentoo-695d9059933b729bb333cfe00e0223f632ae32ca.tar.bz2
gentoo-695d9059933b729bb333cfe00e0223f632ae32ca.zip
games-board/biloba: fix build with gcc 10
Closes: https://bugs.gentoo.org/707232 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-board/biloba/files/biloba-0.9.3-gcc-10.patch')
-rw-r--r--games-board/biloba/files/biloba-0.9.3-gcc-10.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/games-board/biloba/files/biloba-0.9.3-gcc-10.patch b/games-board/biloba/files/biloba-0.9.3-gcc-10.patch
new file mode 100644
index 000000000000..69d27f9aa7b6
--- /dev/null
+++ b/games-board/biloba/files/biloba-0.9.3-gcc-10.patch
@@ -0,0 +1,30 @@
+Description: Fix FTBFS with gcc 10
+Author: Ricardo Mones <mones@debian.org>
+Bug-Debian: https://bugs.debian.org/957039
+Last-Update: 2020-08-29
+
+diff --git a/src/utils.c b/src/utils.c
+index 73bbd05..c51365d 100644
+--- a/src/utils.c
++++ b/src/utils.c
+@@ -53,6 +53,7 @@
+
+ char *progpath = NULL;
+ char *langpath = NULL;
++SDL_Surface * screen;
+
+ /**
+ * Get an object's X coordinate as pixels
+diff --git a/src/utils.h b/src/utils.h
+index 9b0b155..2018969 100644
+--- a/src/utils.h
++++ b/src/utils.h
+@@ -87,7 +87,7 @@
+ extern char *progpath;
+ extern char *langpath;
+
+-SDL_Surface * screen;
++extern SDL_Surface * screen;
+
+ int get_x(int x);
+ int get_y(int y);