Config.in 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. menu "lua............................... LUA programming language"
  2. config ADK_COMPILE_LUA
  3. tristate
  4. default n
  5. depends on ADK_PACKAGE_LIBLUA
  6. config ADK_PACKAGE_LUA
  7. prompt "lua............................... LUA programming language interpreter"
  8. tristate
  9. default n
  10. select ADK_PACKAGE_LIBLUA
  11. help
  12. Lua is a powerful light-weight programming language designed for extending
  13. applications. Lua is also frequently used as a general-purpose, stand-alone
  14. language. Lua is free software.
  15. Lua combines simple procedural syntax with powerful data description
  16. constructs based on associative arrays and extensible semantics. Lua is
  17. dynamically typed, interpreted from bytecodes, and has automatic memory
  18. management with garbage collection, making it ideal for configuration,
  19. scripting, and rapid prototyping.
  20. Lua is implemented as a small library of C functions, written in ANSI C, and
  21. compiles unmodified in all known platforms. The implementation goals are
  22. simplicity, efficiency, portability, and low embedding cost. The result is a
  23. fast language engine with small footprint, making it ideal in embedded systems
  24. too.
  25. http://www.lua.org/
  26. This package contains the LUA language interpreter.
  27. config ADK_PACKAGE_LUAC
  28. prompt "luac.............................. LUA programming language compiler"
  29. tristate
  30. default n
  31. select ADK_PACKAGE_LIBLUA
  32. help
  33. Lua is a powerful light-weight programming language designed for extending
  34. applications. Lua is also frequently used as a general-purpose, stand-alone
  35. language. Lua is free software.
  36. Lua combines simple procedural syntax with powerful data description
  37. constructs based on associative arrays and extensible semantics. Lua is
  38. dynamically typed, interpreted from bytecodes, and has automatic memory
  39. management with garbage collection, making it ideal for configuration,
  40. scripting, and rapid prototyping.
  41. Lua is implemented as a small library of C functions, written in ANSI C, and
  42. compiles unmodified in all known platforms. The implementation goals are
  43. simplicity, efficiency, portability, and low embedding cost. The result is a
  44. fast language engine with small footprint, making it ideal in embedded systems
  45. too.
  46. http://www.lua.org/
  47. This package contains the LUA language compiler.
  48. config ADK_PACKAGE_LUA_EXAMPLES
  49. prompt "lua-examples...................... LUA programming language examples"
  50. tristate
  51. default n
  52. select ADK_PACKAGE_LUA
  53. help
  54. Lua is a powerful light-weight programming language designed for extending
  55. applications. Lua is also frequently used as a general-purpose, stand-alone
  56. language. Lua is free software.
  57. Lua combines simple procedural syntax with powerful data description
  58. constructs based on associative arrays and extensible semantics. Lua is
  59. dynamically typed, interpreted from bytecodes, and has automatic memory
  60. management with garbage collection, making it ideal for configuration,
  61. scripting, and rapid prototyping.
  62. Lua is implemented as a small library of C functions, written in ANSI C, and
  63. compiles unmodified in all known platforms. The implementation goals are
  64. simplicity, efficiency, portability, and low embedding cost. The result is a
  65. fast language engine with small footprint, making it ideal in embedded systems
  66. too.
  67. http://www.lua.org/
  68. This package contains LUA language examples.
  69. endmenu