Config.in 4.5 KB

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