The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / lighttpd / Config.in
1 comment "lighttpd needs a toolchain w/ dynamic library"
2         depends on BR2_USE_MMU
3         depends on BR2_STATIC_LIBS
4
5 config 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 web-server
11           which has been optimized for high-performance environments. It
12           has a very low memory footprint compared to other webservers and
13           takes care of cpu-load. Its advanced feature-set (FastCGI, CGI,
14           Auth, Output-Compression, URL-Rewriting and many more) make
15           lighttpd the perfect webserver-software for every server that
16           is suffering load problems.
17
18           http://www.lighttpd.net/
19
20 if BR2_PACKAGE_LIGHTTPD
21
22 config BR2_PACKAGE_LIGHTTPD_OPENSSL
23         bool "openssl support"
24         select BR2_PACKAGE_OPENSSL
25         help
26           Enable OpenSSL support for lighttpd.
27
28 config BR2_PACKAGE_LIGHTTPD_ZLIB
29         bool "zlib support"
30         select BR2_PACKAGE_ZLIB
31         help
32           Enable zlib support for lighttpd mod_compress.
33
34 config BR2_PACKAGE_LIGHTTPD_BZIP2
35         bool "bzip2 support"
36         select BR2_PACKAGE_BZIP2
37         help
38           Enable bzip2 support for lighttpd mod_compress.
39
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
46 config BR2_PACKAGE_LIGHTTPD_WEBDAV
47         bool "webdav support"
48         select BR2_PACKAGE_LIBXML2
49         select BR2_PACKAGE_SQLITE
50         help
51           Enable webdav support. Needed to support mod_webdav
52
53 config BR2_PACKAGE_LIGHTTPD_LUA
54         bool "lua support"
55         select BR2_PACKAGE_LUA
56         help
57           Enable Lua support. Needed to support mod_magnet
58
59 endif