Fix memleaks in driver_broadcom.c (thanks framer99)
[openwrt.git] / openwrt / package / lua / Config.in
1 menu "lua - LUA programming language"
2
3 config BR2_PACKAGE_LUA
4 bool
5 default n
6 depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA
7
8 config BR2_PACKAGE_LUA_INTERPRETER
9 tristate "lua - LUA programming language interpreter"
10 # default m if CONFIG_DEVEL
11 default n
12 select BR2_PACKAGE_LUA
13 select BR2_PACKAGE_LIBLUA
14 help
15 Lua is a powerful light-weight programming language designed for extending
16 applications. Lua is also frequently used as a general-purpose, stand-alone
17 language. Lua is free software.
18
19 Lua combines simple procedural syntax with powerful data description
20 constructs based on associative arrays and extensible semantics. Lua is
21 dynamically typed, interpreted from bytecodes, and has automatic memory
22 management with garbage collection, making it ideal for configuration,
23 scripting, and rapid prototyping.
24
25 Lua is implemented as a small library of C functions, written in ANSI C, and
26 compiles unmodified in all known platforms. The implementation goals are
27 simplicity, efficiency, portability, and low embedding cost. The result is a
28 fast language engine with small footprint, making it ideal in embedded systems
29 too.
30
31 http://www.lua.org/
32
33 This package contains the LUA language interpreter.
34
35
36 config BR2_PACKAGE_LUA_COMPILER
37 tristate "luac - LUA programming language compiler"
38 # default m if CONFIG_DEVEL
39 default n
40 select BR2_PACKAGE_LUA
41 select BR2_PACKAGE_LIBLUA
42 help
43 Lua is a powerful light-weight programming language designed for extending
44 applications. Lua is also frequently used as a general-purpose, stand-alone
45 language. Lua is free software.
46
47 Lua combines simple procedural syntax with powerful data description
48 constructs based on associative arrays and extensible semantics. Lua is
49 dynamically typed, interpreted from bytecodes, and has automatic memory
50 management with garbage collection, making it ideal for configuration,
51 scripting, and rapid prototyping.
52
53 Lua is implemented as a small library of C functions, written in ANSI C, and
54 compiles unmodified in all known platforms. The implementation goals are
55 simplicity, efficiency, portability, and low embedding cost. The result is a
56 fast language engine with small footprint, making it ideal in embedded systems
57 too.
58
59 http://www.lua.org/
60
61 This package contains the LUA language compiler.
62
63
64 config BR2_PACKAGE_LUA_EXAMPLES
65 tristate "lua-examples - LUA programming language examples"
66 # default m if CONFIG_DEVEL
67 default n
68 select BR2_PACKAGE_LUA
69 select BR2_PACKAGE_LUA_INTERPRETER
70 help
71 Lua is a powerful light-weight programming language designed for extending
72 applications. Lua is also frequently used as a general-purpose, stand-alone
73 language. Lua is free software.
74
75 Lua combines simple procedural syntax with powerful data description
76 constructs based on associative arrays and extensible semantics. Lua is
77 dynamically typed, interpreted from bytecodes, and has automatic memory
78 management with garbage collection, making it ideal for configuration,
79 scripting, and rapid prototyping.
80
81 Lua is implemented as a small library of C functions, written in ANSI C, and
82 compiles unmodified in all known platforms. The implementation goals are
83 simplicity, efficiency, portability, and low embedding cost. The result is a
84 fast language engine with small footprint, making it ideal in embedded systems
85 too.
86
87 http://www.lua.org/
88
89 This package contains LUA language examples.
90
91
92 config BR2_PACKAGE_LIBLUA
93 tristate "liblua - LUA programming language shared libraries"
94 # default m if CONFIG_DEVEL
95 default n
96 select BR2_PACKAGE_LUA
97 help
98 Lua is a powerful light-weight programming language designed for extending
99 applications. Lua is also frequently used as a general-purpose, stand-alone
100 language. Lua is free software.
101
102 Lua combines simple procedural syntax with powerful data description
103 constructs based on associative arrays and extensible semantics. Lua is
104 dynamically typed, interpreted from bytecodes, and has automatic memory
105 management with garbage collection, making it ideal for configuration,
106 scripting, and rapid prototyping.
107
108 Lua is implemented as a small library of C functions, written in ANSI C, and
109 compiles unmodified in all known platforms. The implementation goals are
110 simplicity, efficiency, portability, and low embedding cost. The result is a
111 fast language engine with small footprint, making it ideal in embedded systems
112 too.
113
114 http://www.lua.org/
115
116 This package contains the LUA shared libraries, needed by other programs.
117
118
119 endmenu
This page took 0.056662 seconds and 5 git commands to generate.