| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 | #menu "lua............................... LUA programming language"config ADK_COMPILE_LUA	tristate	default n	depends ADK_PACKAGE_LIBLUAconfig ADK_PACKAGE_LIBLUA	prompt "liblua............................ LUA programming language shared libraries"	tristate	select ADK_COMPILE_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.config ADK_PACKAGE_LUA	prompt "lua............................... LUA programming language interpreter"	tristate	default n	select ADK_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 ADK_PACKAGE_LUAC	prompt "luac.............................. LUA programming language compiler"	tristate	default n	select ADK_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 ADK_PACKAGE_LUA_EXAMPLES	prompt "lua-examples...................... LUA programming language examples"	tristate	default n	select ADK_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 LUA language examples.#endmenu
 |