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