lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (880B)


      1 if PACKAGE_haserl
      2 
      3 	config HASERL_with_lua
      4 		bool
      5 		default n
      6 
      7 	comment "Lua support"
      8 
      9 	config HASERL_shell_luac
     10 		bool
     11 		prompt "Support --shell=luac"
     12 		select HASERL_with_lua
     13 		default n
     14 		help
     15 			haserl(1):
     16 			The luac "shell" is a precompiled lua chunk, so interactive
     17 			editing and testing of scripts is not possible. However,
     18 			haserl can be compiled with luac support only, and this
     19 			allows lua support even in a small memory environment. All
     20 			haserl lua features listed above are still available. (If
     21 			luac is the only shell built into haserl, the
     22 			haserl.loadfile is disabled, as the haserl parser is not
     23 			compiled in.)
     24 
     25 	config HASERL_shell_lua
     26 		bool
     27 		prompt "Support --shell=lua"
     28 		select HASERL_with_lua
     29 		default n
     30 		help
     31 			haserl(1):
     32 			If compiled with lua support, --shell=lua will enable lua as the
     33 			script language instead of bash shell.
     34 
     35 endif