Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. comment "lighttpd needs a toolchain w/ dynamic library"
  2. depends on BR2_USE_MMU
  3. depends on BR2_STATIC_LIBS
  4. config BR2_PACKAGE_LIGHTTPD
  5. bool "lighttpd"
  6. depends on BR2_USE_MMU # fork()
  7. depends on !BR2_STATIC_LIBS
  8. help
  9. lighttpd a secure, fast, compliant and very flexible
  10. web-server which has been optimized for high-performance
  11. environments. It has a very low memory footprint compared to
  12. other webservers and takes care of cpu-load. Its advanced
  13. feature-set (FastCGI, CGI, Auth, Output-Compression,
  14. URL-Rewriting and many more) make lighttpd the perfect
  15. webserver-software for every server that is suffering load
  16. problems.
  17. http://www.lighttpd.net/
  18. if BR2_PACKAGE_LIGHTTPD
  19. config BR2_PACKAGE_LIGHTTPD_OPENSSL
  20. bool "openssl support"
  21. select BR2_PACKAGE_OPENSSL
  22. help
  23. Enable OpenSSL support for lighttpd.
  24. config BR2_PACKAGE_LIGHTTPD_PAM
  25. bool "pam authentication support"
  26. default y
  27. depends on BR2_PACKAGE_LINUX_PAM
  28. help
  29. Enable PAM authentication support for lighttpd.
  30. config BR2_PACKAGE_LIGHTTPD_ZLIB
  31. bool "zlib support"
  32. select BR2_PACKAGE_ZLIB
  33. help
  34. Enable zlib support for lighttpd mod_compress.
  35. config BR2_PACKAGE_LIGHTTPD_BZIP2
  36. bool "bzip2 support"
  37. select BR2_PACKAGE_BZIP2
  38. help
  39. Enable bzip2 support for lighttpd mod_compress.
  40. config BR2_PACKAGE_LIGHTTPD_PCRE
  41. bool "pcre support"
  42. select BR2_PACKAGE_PCRE
  43. help
  44. Enable PCRE support. Needed to support mod_rewrite
  45. config BR2_PACKAGE_LIGHTTPD_WEBDAV
  46. bool "webdav support"
  47. select BR2_PACKAGE_LIBXML2
  48. select BR2_PACKAGE_SQLITE
  49. help
  50. Enable webdav support. Needed to support mod_webdav
  51. config BR2_PACKAGE_LIGHTTPD_LUA
  52. bool "lua support"
  53. depends on BR2_PACKAGE_LUA
  54. help
  55. Enable Lua support. Needed to support mod_magnet
  56. endif