aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2007-12-21 10:01:25 +0000
committerPav Lucistnik <pav@FreeBSD.org>2007-12-21 10:01:25 +0000
commita89a5b605854c5f5a81d2f8fafbdb4591e2697bd (patch)
tree8e1e59c05a5a7eb2ea061faea8414cd67e28ba71 /games
parent2e75f08440b2137dc47058c54396441c1f440c40 (diff)
downloadports-a89a5b605854c5f5a81d2f8fafbdb4591e2697bd.tar.gz
ports-a89a5b605854c5f5a81d2f8fafbdb4591e2697bd.zip
Notes
Diffstat (limited to 'games')
-rw-r--r--games/dangerdeep/files/patch-SConstruct21
1 files changed, 15 insertions, 6 deletions
diff --git a/games/dangerdeep/files/patch-SConstruct b/games/dangerdeep/files/patch-SConstruct
index 2bf86f0a0f89..5e74c5dc744d 100644
--- a/games/dangerdeep/files/patch-SConstruct
+++ b/games/dangerdeep/files/patch-SConstruct
@@ -1,6 +1,15 @@
---- SConstruct Thu Oct 12 17:14:02 2006
-+++ SConstruct Thu Oct 12 17:16:36 2006
-@@ -69,7 +69,7 @@
+--- SConstruct.orig 2007-06-11 14:29:13.000000000 -0400
++++ SConstruct 2007-12-20 20:52:35.000000000 -0500
+@@ -62,7 +62,7 @@
+ if (debug == 1):
+ env.Append(CCFLAGS = '-g')
+ env.Append(CPPDEFINES = ['DEBUG'])
+-elif (sys.platform == 'freebsd5') or (sys.platform == 'freebsd6') or (sys.platform == 'freebsd7'):
++elif (sys.platform == 'freebsd5') or (sys.platform == 'freebsd6') or (sys.platform == 'freebsd7') or (sys.platform == 'freebsd8'):
+ print "Compiling for FreeBSD Environment"
+ env = Environment(ENV = os.environ)
+ LOCALBASE = os.environ['LOCALBASE']
+@@ -70,7 +70,7 @@
SDL_CONFIG = os.environ['SDL_CONFIG']
env.Replace(CC = os.environ['CC'])
env.Replace(CXX = os.environ['CXX'])
@@ -9,7 +18,7 @@
libpath = [LOCALBASE + '/lib', X11BASE + '/lib']
gllibs = ['GL', 'GLU']
sdllibs = ['SDL_image']
-@@ -78,7 +78,7 @@
+@@ -79,7 +79,7 @@
cpuinfol = cpuinfof.readlines()
mmxsupported = False
ssesupported = False
@@ -18,8 +27,8 @@
if i == '1\n':
mmxsupported = True
ssesupported = True
-@@ -89,14 +89,15 @@
- osspecificsrc += ['water_sse.cpp']
+@@ -91,14 +91,15 @@
+ osspecificsrc += []
print 'Using x86 SSE/MMX optimizations.'
- env.Replace(CCFLAGS = os.environ['CFLAGS'])