Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. config BR2_PACKAGE_LIGHTTPD
  2. bool "lighttpd"
  3. help
  4. lighttpd a secure, fast, compliant and very flexible web-server
  5. which has been optimized for high-performance environments. It
  6. has a very low memory footprint compared to other webservers and
  7. takes care of cpu-load. Its advanced feature-set (FastCGI, CGI,
  8. Auth, Output-Compression, URL-Rewriting and many more) make
  9. lighttpd the perfect webserver-software for every server that
  10. is suffering load problems.
  11. http://www.lighttpd.net/
  12. if BR2_PACKAGE_LIGHTTPD
  13. config BR2_PACKAGE_LIGHTTPD_OPENSSL
  14. bool "openssl support"
  15. select BR2_PACKAGE_OPENSSL
  16. help
  17. Enable OpenSSL support for lighttpd.
  18. config BR2_PACKAGE_LIGHTTPD_ZLIB
  19. bool "zlib support"
  20. select BR2_PACKAGE_ZLIB
  21. help
  22. Enable zlib support for lighttpd mod_compress.
  23. config BR2_PACKAGE_LIGHTTPD_BZIP2
  24. bool "bzip2 support"
  25. select BR2_PACKAGE_BZIP2
  26. help
  27. Enable bzip2 support for lighttpd mod_compress.
  28. config BR2_PACKAGE_LIGHTTPD_PCRE
  29. bool "pcre support"
  30. select BR2_PACKAGE_PCRE
  31. help
  32. Enable PCRE support. Needed to support mod_rewrite
  33. config BR2_PACKAGE_LIGHTTPD_WEBDAV
  34. bool "webdav support"
  35. select BR2_PACKAGE_LIBXML2
  36. select BR2_PACKAGE_SQLITE
  37. help
  38. Enable webdav support. Needed to support mod_webdav
  39. endif