tag rc6
[openwrt/svn-archive/openwrt.git] / openwrt / package / lua / Config.in
diff --git a/openwrt/package/lua/Config.in b/openwrt/package/lua/Config.in
deleted file mode 100644 (file)
index 0dc5e3d..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-menu "lua - LUA programming language"
-
-config BR2_PACKAGE_LUA
-       tristate
-       default m if CONFIG_DEVEL
-       depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA
-
-config BR2_PACKAGE_LUA_INTERPRETER
-       tristate "lua - LUA programming language interpreter"
-       default m if CONFIG_DEVEL
-       select BR2_PACKAGE_LUA
-       select BR2_PACKAGE_LIBLUA
-       help
-         Lua is a powerful light-weight programming language designed for extending 
-         applications. Lua is also frequently used as a general-purpose, stand-alone 
-         language. Lua is free software.
-         
-         Lua combines simple procedural syntax with powerful data description 
-         constructs based on associative arrays and extensible semantics. Lua is 
-         dynamically typed, interpreted from bytecodes, and has automatic memory 
-         management with garbage collection, making it ideal for configuration, 
-         scripting, and rapid prototyping.
-         
-         Lua is implemented as a small library of C functions, written in ANSI C, and 
-         compiles unmodified in all known platforms. The implementation goals are 
-         simplicity, efficiency, portability, and low embedding cost. The result is a 
-         fast language engine with small footprint, making it ideal in embedded systems 
-         too.
-         
-         http://www.lua.org/
-         
-         This package contains the LUA language interpreter.
-         
-
-config BR2_PACKAGE_LUA_COMPILER
-       tristate "luac - LUA programming language compiler"
-       default m if CONFIG_DEVEL
-       select BR2_PACKAGE_LUA
-       select BR2_PACKAGE_LIBLUA
-       help
-         Lua is a powerful light-weight programming language designed for extending 
-         applications. Lua is also frequently used as a general-purpose, stand-alone 
-         language. Lua is free software.
-         
-         Lua combines simple procedural syntax with powerful data description 
-         constructs based on associative arrays and extensible semantics. Lua is 
-         dynamically typed, interpreted from bytecodes, and has automatic memory 
-         management with garbage collection, making it ideal for configuration, 
-         scripting, and rapid prototyping.
-         
-         Lua is implemented as a small library of C functions, written in ANSI C, and 
-         compiles unmodified in all known platforms. The implementation goals are 
-         simplicity, efficiency, portability, and low embedding cost. The result is a 
-         fast language engine with small footprint, making it ideal in embedded systems 
-         too.
-         
-         http://www.lua.org/
-         
-         This package contains the LUA language compiler.
-         
-
-config BR2_PACKAGE_LUA_EXAMPLES
-       tristate "lua-examples - LUA programming language examples"
-       default m if CONFIG_DEVEL
-       select BR2_PACKAGE_LUA
-       select BR2_PACKAGE_LUA_INTERPRETER
-       help
-         Lua is a powerful light-weight programming language designed for extending 
-         applications. Lua is also frequently used as a general-purpose, stand-alone 
-         language. Lua is free software.
-         
-         Lua combines simple procedural syntax with powerful data description 
-         constructs based on associative arrays and extensible semantics. Lua is 
-         dynamically typed, interpreted from bytecodes, and has automatic memory 
-         management with garbage collection, making it ideal for configuration, 
-         scripting, and rapid prototyping.
-         
-         Lua is implemented as a small library of C functions, written in ANSI C, and 
-         compiles unmodified in all known platforms. The implementation goals are 
-         simplicity, efficiency, portability, and low embedding cost. The result is a 
-         fast language engine with small footprint, making it ideal in embedded systems 
-         too.
-         
-         http://www.lua.org/
-         
-         This package contains LUA language examples.
-         
-
-config BR2_PACKAGE_LIBLUA
-       tristate "liblua - LUA programming language shared libraries"
-       default m if CONFIG_DEVEL
-       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 
-         language. Lua is free software.
-         
-         Lua combines simple procedural syntax with powerful data description 
-         constructs based on associative arrays and extensible semantics. Lua is 
-         dynamically typed, interpreted from bytecodes, and has automatic memory 
-         management with garbage collection, making it ideal for configuration, 
-         scripting, and rapid prototyping.
-         
-         Lua is implemented as a small library of C functions, written in ANSI C, and 
-         compiles unmodified in all known platforms. The implementation goals are 
-         simplicity, efficiency, portability, and low embedding cost. The result is a 
-         fast language engine with small footprint, making it ideal in embedded systems 
-         too.
-         
-         http://www.lua.org/
-         
-         This package contains the LUA shared libraries, needed by other programs.
-         
-
-endmenu