summaryrefslogtreecommitdiff
path: root/openwrt/package/lua/Config.in
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-11-05 20:39:37 +0000
committerNicolas Thill <nico@openwrt.org>2005-11-05 20:39:37 +0000
commit348dd2af51a9f697cc73f8222c9cc485c64956ee (patch)
tree0eb773b07248519dc1a34f5f029dd5220ecbdd36 /openwrt/package/lua/Config.in
parent08e61c5e6643f5c5810a1560cfa2de760f84ef14 (diff)
downloadmtk-20170518-348dd2af51a9f697cc73f8222c9cc485c64956ee.zip
mtk-20170518-348dd2af51a9f697cc73f8222c9cc485c64956ee.tar.gz
mtk-20170518-348dd2af51a9f697cc73f8222c9cc485c64956ee.tar.bz2
fix lua build broken by [2333]
SVN-Revision: 2340
Diffstat (limited to 'openwrt/package/lua/Config.in')
-rw-r--r--openwrt/package/lua/Config.in11
1 files changed, 4 insertions, 7 deletions
diff --git a/openwrt/package/lua/Config.in b/openwrt/package/lua/Config.in
index d62e993..0b2e850 100644
--- a/openwrt/package/lua/Config.in
+++ b/openwrt/package/lua/Config.in
@@ -3,7 +3,7 @@ menu "lua............................... LUA programming language"
config BR2_COMPILE_LUA
bool
default y
- depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA
+ depends BR2_PACKAGE_LIBLUA
config BR2_PACKAGE_LIBLUA
prompt "liblua............................ LUA programming language shared libraries"
@@ -30,11 +30,10 @@ config BR2_PACKAGE_LIBLUA
This package contains the LUA shared libraries, needed by other programs.
-config BR2_PACKAGE_LUA_INTERPRETER
+config BR2_PACKAGE_LUA
prompt "lua............................... LUA programming language interpreter"
tristate
default m if CONFIG_DEVEL
- select BR2_COMPILE_LUA
select BR2_PACKAGE_LIBLUA
help
Lua is a powerful light-weight programming language designed for extending
@@ -57,11 +56,10 @@ config BR2_PACKAGE_LUA_INTERPRETER
This package contains the LUA language interpreter.
-config BR2_PACKAGE_LUA_COMPILER
+config BR2_PACKAGE_LUAC
prompt "luac.............................. LUA programming language compiler"
tristate
default m if CONFIG_DEVEL
- select BR2_COMPILE_LUA
select BR2_PACKAGE_LIBLUA
help
Lua is a powerful light-weight programming language designed for extending
@@ -88,8 +86,7 @@ config BR2_PACKAGE_LUA_EXAMPLES
prompt "lua-examples...................... LUA programming language examples"
tristate
default m if CONFIG_DEVEL
- select BR2_COMPILE_LUA
- select BR2_PACKAGE_LUA_INTERPRETER
+ select BR2_PACKAGE_LUA
help
Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone