Config.in 778 B

123456789101112131415161718192021222324252627282930313233
  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. choice
  9. prompt "Haserl version"
  10. default BR2_PACKAGE_HASERL_VERSION_0_9_X
  11. depends on BR2_PACKAGE_HASERL
  12. help
  13. Select the older stable version, or the newer developer version
  14. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  15. bool "v 0.8.x"
  16. help
  17. stable version
  18. config BR2_PACKAGE_HASERL_VERSION_0_9_X
  19. bool "v 0.9.x"
  20. help
  21. developer version - seems OK though
  22. endchoice
  23. config BR2_PACKAGE_HASERL_VERSION
  24. string
  25. default "0.8.0" if BR2_PACKAGE_HASERL_VERSION_0_8_X
  26. default "0.9.26" if BR2_PACKAGE_HASERL_VERSION_0_9_X