diff options
author | B. Watson <yalhcru@gmail.com> | 2017-07-04 13:54:35 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-07-08 07:11:16 +0700 |
commit | 66c00df044aa06d9076020159ebb9811a05258c7 (patch) | |
tree | ee69d514caf7a2fd08eb3b26aaa387818d0ac493 | |
parent | 5cfdaa94ea6aee8456d376357f985441609fdfed (diff) | |
download | slackbuilds-66c00df044aa06d9076020159ebb9811a05258c7.tar.gz |
games/torcs: Fix build on -current.
Signed-off-by: B. Watson <yalhcru@gmail.com>
-rw-r--r-- | games/torcs/gcc7.diff | 12 | ||||
-rw-r--r-- | games/torcs/torcs.SlackBuild | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/games/torcs/gcc7.diff b/games/torcs/gcc7.diff new file mode 100644 index 0000000000..705e9abb1c --- /dev/null +++ b/games/torcs/gcc7.diff @@ -0,0 +1,12 @@ +diff -Naur torcs-1.3.7/src/drivers/olethros/geometry.cpp torcs-1.3.7.patched/src/drivers/olethros/geometry.cpp +--- torcs-1.3.7/src/drivers/olethros/geometry.cpp 2006-01-06 10:22:29.000000000 -0500 ++++ torcs-1.3.7.patched/src/drivers/olethros/geometry.cpp 2017-07-04 17:00:06.727000000 -0400 +@@ -27,6 +27,8 @@ + #ifdef WIN32 + #include <float.h> + #define isnan _isnan ++#else ++#define isnan std::isnan + #endif + + diff --git a/games/torcs/torcs.SlackBuild b/games/torcs/torcs.SlackBuild index 07b419adb1..76ee0f1fae 100644 --- a/games/torcs/torcs.SlackBuild +++ b/games/torcs/torcs.SlackBuild @@ -6,6 +6,8 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20170704 bkw: fix build on -current + PRGNAM=torcs VERSION=${VERSION:-1.3.7} BUILD=${BUILD:-1} @@ -53,6 +55,8 @@ 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 {} \; +patch -p1 < $CWD/gcc7.diff + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |