You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
880 B

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