Config.in 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config BR2_PACKAGE_HASERL
  2. bool "haserl"
  3. help
  4. Haserl is a small cgi wrapper that enables shell scripts to be
  5. embedded into html documents. It is intended for environments
  6. where something like PHP is too big.
  7. http://haserl.sourceforge.net/
  8. config BR2_PACKAGE_HASERL_WITH_LUA
  9. bool "lua support"
  10. depends on BR2_PACKAGE_HASERL
  11. depends on BR2_PACKAGE_HASERL_VERSION_0_9_X
  12. select BR2_PACKAGE_LUA
  13. help
  14. Enable LUA support for haserl
  15. choice
  16. prompt "Haserl version"
  17. default BR2_PACKAGE_HASERL_VERSION_0_9_X
  18. depends on BR2_PACKAGE_HASERL
  19. help
  20. Select the older stable version, or the newer developer version
  21. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  22. bool "v 0.8.x"
  23. help
  24. stable version
  25. config BR2_PACKAGE_HASERL_VERSION_0_9_X
  26. bool "v 0.9.x"
  27. help
  28. developer version - seems OK though
  29. endchoice
  30. config BR2_PACKAGE_HASERL_VERSION
  31. string
  32. default "0.8.0" if BR2_PACKAGE_HASERL_VERSION_0_8_X
  33. default "0.9.29" if BR2_PACKAGE_HASERL_VERSION_0_9_X