summaryrefslogtreecommitdiff
path: root/games/battleball/files
diff options
context:
space:
mode:
authorSatoshi Taoka <taoka@FreeBSD.org>1999-05-01 02:38:12 +0000
committerSatoshi Taoka <taoka@FreeBSD.org>1999-05-01 02:38:12 +0000
commit7de835b2f92893e07cb6892a900461b2959a8562 (patch)
tree1fe69713bdc81a7698505b38ab91a3052da0c4b1 /games/battleball/files
parentRemove doc diretory on deinstall. (diff)
X3D single/multiplayer military soccer game for X Window System.
PR: 11362 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes: svn path=/head/; revision=18273
Diffstat (limited to 'games/battleball/files')
-rw-r--r--games/battleball/files/patch-ab22
1 files changed, 22 insertions, 0 deletions
diff --git a/games/battleball/files/patch-ab b/games/battleball/files/patch-ab
new file mode 100644
index 000000000000..e6108864bd1c
--- /dev/null
+++ b/games/battleball/files/patch-ab
@@ -0,0 +1,22 @@
+--- bb/main.C Thu Oct 9 16:03:25 1997
++++ /home/andy/tmp/wrk/bb/main.C Wed Dec 16 23:34:59 1998
+@@ -16,6 +16,9 @@
+ #include <stdio.h> // to get sprintf()
+ #include <string.h> // to get strncpy()
+ #include <time.h> // to get time(time_t *)
++#ifdef __FreeBSD__
++#include <floatingpoint.h>
++#endif
+ #include "bb.h"
+ #include "player.h"
+
+@@ -818,6 +821,9 @@
+ // A long and complicated main() function!
+
+ main (int argc, char *argv[]) {
++#ifdef __FreeBSD__
++ fpsetmask(0);
++#endif
+ battleBall bb(argc,argv);
+ bb.Play();
+ }