2
1

Config.in 793 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_HASERL
  2. bool "haserl"
  3. default n
  4. help
  5. Haserl is a small cgi wrapper that enables shell scripts to be
  6. embedded into html documents. It is intended for environments
  7. where something like PHP is too big.
  8. http://haserl.sourceforge.net/
  9. choice
  10. prompt "Haserl version"
  11. default BR2_PACKAGE_HASERL_VERSION_0_9_21
  12. depends on BR2_PACKAGE_HASERL
  13. help
  14. Select the older stable version, or the newer developer version
  15. config BR2_PACKAGE_HASERL_VERSION_0_8_0
  16. bool "v 0.8.0"
  17. help
  18. stable version
  19. config BR2_PACKAGE_HASERL_VERSION_0_9_21
  20. bool "v 0.9.21"
  21. help
  22. developer version - seems OK though
  23. endchoice
  24. config BR2_PACKAGE_HASERL_VERSION
  25. string
  26. default "0.8.0" if BR2_PACKAGE_HASERL_VERSION_0_8_0
  27. default "0.9.21" if BR2_PACKAGE_HASERL_VERSION_0_9_21