summaryrefslogtreecommitdiff
path: root/games/windstille/files/patch-src-SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'games/windstille/files/patch-src-SConstruct')
-rw-r--r--games/windstille/files/patch-src-SConstruct29
1 files changed, 0 insertions, 29 deletions
diff --git a/games/windstille/files/patch-src-SConstruct b/games/windstille/files/patch-src-SConstruct
deleted file mode 100644
index 9bf34e0fe32c..000000000000
--- a/games/windstille/files/patch-src-SConstruct
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/SConscript.orig Wed Jun 13 07:04:35 2007
-+++ src/SConscript Thu Jun 14 15:51:17 2007
-@@ -26,11 +26,10 @@
-
- Import('conf_env')
-
--env = Environment(CC = 'gcc',
-- CXX = 'g++',
-- CXXFLAGS = ['-O0', '-Wall', '-Werror', '-g', '-DDEBUG'] + conf_env['CXXFLAGS'])
--
--env.Append(CXXFLAGS = conf_env['CXXFLAGS'])
-+env = conf_env.Copy()
-+env.Append(LIBS = ['GL', 'GLU', 'squirrel', 'physfs', 'SDL_image', 'openal', 'glew', 'ogg', 'vorbis', 'vorbisfile', 'png', 'iconv'])
-+env.Append(LIBPATH = ['../lib/'] )
-+env.Append(CPPPATH = ['.', '..', '../lib/SQUIRREL2/include/', '../lib/glew'])
-
- # env.Copy(LIBS = ['a', 'b'])
-
-@@ -184,9 +183,6 @@
- 'sprite3d/sprite3d.cpp',
- 'tinygettext/gettext.cpp',
- 'tinygettext/tinygettext.cpp'
--],
--LIBS = ['GL', 'GLU', 'squirrel', 'physfs', 'SDL_image', 'openal', 'glew', 'ogg', 'vorbis', 'vorbisfile', 'png'] + env['LIBS'],
--LIBPATH = ['../lib/'],
--CPPPATH = env['CPPPATH'] + ['.', '..', '../lib/SQUIRREL2/include/', '../lib/glew'])
-+])
-
- # EOF #