mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
games-action/garden: Build with gcc:5.2
Package-Manager: portage-2.2.20.1
This commit is contained in:
20
games-action/garden/files/garden-1.0.9-gcc52.patch
Normal file
20
games-action/garden/files/garden-1.0.9-gcc52.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
--- src/stuff.c.old 2015-09-22 08:57:21.482794770 +0200
|
||||
+++ src/stuff.c 2015-09-22 08:58:22.567815095 +0200
|
||||
@@ -52,7 +52,7 @@
|
||||
float cos_table[ANGLE_1];
|
||||
float sin_table[ANGLE_1];
|
||||
|
||||
-inline int xpart (int angle, int length);
|
||||
+extern inline int xpart (int angle, int length);
|
||||
|
||||
void init_trig (void)
|
||||
{
|
||||
@@ -72,7 +72,7 @@
|
||||
return (cos_table[angle & 1023] * length);
|
||||
}
|
||||
|
||||
-inline int ypart (int angle, int length)
|
||||
+extern inline int ypart (int angle, int length)
|
||||
{
|
||||
return (sin_table[angle & 1023] * length);
|
||||
}
|
||||
@@ -20,7 +20,8 @@ RDEPEND="${DEPEND}"
|
||||
src_prepare() {
|
||||
epatch \
|
||||
"${FILESDIR}"/${P}-dash.patch \
|
||||
"${FILESDIR}"/${P}-resources.patch
|
||||
"${FILESDIR}"/${P}-resources.patch \
|
||||
"${FILESDIR}"/${P}-gcc52.patch
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user