diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-01 18:01:16 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-01 18:01:16 +0000 |
commit | 207913f4de0453bbdb5f30bb7f75454b77a54cb7 (patch) | |
tree | 3c156d240cdb3e06770e3eb3790f3388979f1a86 /games/battleball | |
parent | 13ba5647d6d238e70973e998a6101ca336b712eb (diff) | |
download | ports-207913f4de0453bbdb5f30bb7f75454b77a54cb7.tar.gz ports-207913f4de0453bbdb5f30bb7f75454b77a54cb7.zip |
Notes
Diffstat (limited to 'games/battleball')
-rw-r--r-- | games/battleball/files/patch-ab | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/battleball/files/patch-ab b/games/battleball/files/patch-ab index df87d334a507..6db63fcfcb25 100644 --- a/games/battleball/files/patch-ab +++ b/games/battleball/files/patch-ab @@ -4,7 +4,7 @@ #include <stdio.h> // to get sprintf() #include <string.h> // to get strncpy() #include <time.h> // to get time(time_t *) -+#if defined(__FreeBSD__) && !defined(__alpha__) ++#if defined(__FreeBSD__) && !defined(__alpha__) && !defined(__amd64__) +#include <floatingpoint.h> +#endif #include "bb.h" @@ -14,7 +14,7 @@ /*=========================================================================*/ // A long and complicated main() function! main (int argc, char *argv[]) { -+#if defined(__FreeBSD__) && !defined(__alpha__) ++#if defined(__FreeBSD__) && !defined(__alpha__) && !defined(__amd64__) + fpsetmask(0); +#endif bb= new battleBall(argc,argv); |