diff options
author | Steve Price <steve@FreeBSD.org> | 2000-08-08 02:57:48 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-08-08 02:57:48 +0000 |
commit | 768cf1c47d66c400f7ca922ce3a67bdaf5f02459 (patch) | |
tree | a45eff3a786a719846d3bf4526cec8a155f6145d | |
parent | Remove i386 .o files in the post-extract target and respect CFLAGS. (diff) |
Fixup one more place where fpsetmask was being called on the Alpha.
Notes
Notes:
svn path=/head/; revision=31400
-rw-r--r-- | games/glasteroids/files/patch-ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/glasteroids/files/patch-ac b/games/glasteroids/files/patch-ac index 7585e82d0362..c3217da91aac 100644 --- a/games/glasteroids/files/patch-ac +++ b/games/glasteroids/files/patch-ac @@ -1,5 +1,5 @@ ---- Glasteroids.cxx Thu Aug 12 04:48:58 1999 -+++ /home/andy/tmp/wrk/Glasteroids.cxx Tue Aug 17 15:11:12 1999 +--- Glasteroids.cxx.orig Wed Aug 11 19:48:58 1999 ++++ Glasteroids.cxx Sun Aug 6 19:33:33 2000 @@ -1,5 +1,8 @@ #include <stdlib.h> #include <time.h> @@ -13,7 +13,7 @@ { BCworld *world; -+#ifdef __FreeBSD__ ++#if defined(__FreeBSD__) && !defined(__alpha__) + fpsetmask(0); +#endif world = BCgetWorld ( ); |