aboutsummaryrefslogtreecommitdiff
path: root/games/boswars/files
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-11-12 17:17:55 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-11-12 17:17:55 +0000
commit237f2a4f4853650099821591f66414622c708f99 (patch)
tree8c87175c08c9e48910afe50faadc65cd0a3ad038 /games/boswars/files
parent9100e644de9d42657f56f6c037f50c784dc19b98 (diff)
downloadports-237f2a4f4853650099821591f66414622c708f99.tar.gz
ports-237f2a4f4853650099821591f66414622c708f99.zip
Notes
Diffstat (limited to 'games/boswars/files')
-rw-r--r--games/boswars/files/patch-SConstruct16
1 files changed, 8 insertions, 8 deletions
diff --git a/games/boswars/files/patch-SConstruct b/games/boswars/files/patch-SConstruct
index 77261e3da2cc..4580ff0feb4b 100644
--- a/games/boswars/files/patch-SConstruct
+++ b/games/boswars/files/patch-SConstruct
@@ -1,6 +1,6 @@
---- SConstruct.orig 2008-04-13 19:55:45.000000000 -0500
-+++ SConstruct 2008-04-13 19:56:57.000000000 -0500
-@@ -48,8 +48,10 @@
+--- SConstruct.orig 2011-11-11 23:38:26.000000000 +0100
++++ SConstruct 2011-11-11 23:38:53.000000000 +0100
+@@ -49,8 +49,10 @@
opts = DefineOptions("build_options.py", ARGUMENTS)
@@ -11,9 +11,9 @@
+env['CPPPATH'] = Split(env['CPPPATH'])
+env['LIBPATH'] = Split(env['LIBPATH'])
Help(opts.GenerateHelpText(env))
- mingw = env.Copy()
+ mingw = env.Clone()
optionsChanged = True
-@@ -143,6 +145,10 @@
+@@ -144,6 +146,10 @@
'LIBS': ['GL'],
'LIBPATH': ['/usr/lib', '/usr/X11R6/lib'],
'CPPPATH': ['/usr/include']}
@@ -24,7 +24,7 @@
opengl['cygwin'] = {
'LIBS': ['opengl3']}
opengl['darwin'] = {
-@@ -154,6 +160,8 @@
+@@ -155,6 +161,8 @@
else:
if sys.platform[:5] == 'linux':
platform = 'linux'
@@ -33,10 +33,10 @@
glconfig = opengl.get(platform, {})
for key in glconfig:
if key != 'LIBS':
-@@ -283,7 +291,6 @@
+@@ -265,7 +273,6 @@
# define the different build environments (variants)
- release = env.Copy()
+ release = env.Clone()
-release.Append(CCFLAGS = Split('-O2 -pipe -fomit-frame-pointer -fexpensive-optimizations -ffast-math'))
if mingw['extrapath']: