aboutsummaryrefslogtreecommitdiff
path: root/games/battletanks/files
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-05-27 14:03:21 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-05-27 14:03:21 +0000
commit64a7ff51ed00839952f4634906377c63823fc850 (patch)
treeb67109b3bdcea9a0c7f901ba809e43f8d535c1a0 /games/battletanks/files
parentb855d7191eba9ed592afcc04e52f76f87ac917f5 (diff)
downloadports-64a7ff51ed00839952f4634906377c63823fc850.tar.gz
ports-64a7ff51ed00839952f4634906377c63823fc850.zip
USES=scons
Fix build with lua changes
Notes
Notes: svn path=/head/; revision=355519
Diffstat (limited to 'games/battletanks/files')
-rw-r--r--games/battletanks/files/patch-engine-SConscript23
1 files changed, 0 insertions, 23 deletions
diff --git a/games/battletanks/files/patch-engine-SConscript b/games/battletanks/files/patch-engine-SConscript
deleted file mode 100644
index 73c3cd979f32..000000000000
--- a/games/battletanks/files/patch-engine-SConscript
+++ /dev/null
@@ -1,23 +0,0 @@
---- engine/SConscript.orig 2009-12-30 14:50:33.000000000 +0100
-+++ engine/SConscript 2010-01-13 23:58:23.000000000 +0100
-@@ -79,17 +79,17 @@
-
- if sys.platform != 'win32':
- got_lua = False
-- for lua in ['lua5.1', 'lua5.0', 'lua']:
-+ for lua in ['lua-5.1', 'lua-5.0', 'lua']:
- try:
- env.ParseConfig("pkg-config --cflags --libs %s 2>/dev/null" %lua);
- got_lua = True
- env.Append(CPPDEFINES=['ENABLE_LUA'])
-- bt_libs.append(lua)
-+ bt_libs.append('lua')
- break
- except:
- continue
- if not got_lua:
-- raise Exception("Cannot find lua5.1/lua5.0 or lua pkg-config information")
-+ raise Exception("Cannot find lua-5.1/lua-5.0 or lua pkg-config information")
-
- env.Append(CPPDEFINES=['ENABLE_LUA'])
- bt_sources.append('luaxx/state.cpp')