games/bitfighter: Fixed build with gcc-5.3.0.

Signed-off-by: David Spencer <baildon.research@googlemail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
David Spencer 2015-12-29 21:40:28 +00:00 committed by Willy Sudiarto Raharjo
parent 679819f921
commit 81b34f8730
2 changed files with 15 additions and 0 deletions

View File

@ -70,6 +70,9 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Fix for gcc-5 thanks to Arch Linux
patch -p1 < $CWD/gcc-5.X.patch
mkdir -p build
cd build
cmake \

View File

@ -0,0 +1,12 @@
diff -Naur bitfighter-019e.orig/tnl/tnlTypes.h bitfighter-019e/tnl/tnlTypes.h
--- bitfighter-019e.orig/tnl/tnlTypes.h 2015-05-12 00:58:58.656019389 +0000
+++ bitfighter-019e/tnl/tnlTypes.h 2015-11-15 05:41:54.353333331 +0000
@@ -333,6 +333,8 @@
# define TNL_GCC_3
# elif __GNUC__ == 4
# define TNL_GCC_4
+# elif __GNUC__ == 5
+# define TNL_GCC_5
# else
# error "TNL: Unsupported version of GCC (see tnlMethodDispatch.cpp)"
# endif