xref: /OK3568_Linux_fs/buildroot/package/hiawatha/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1comment "hiawatha needs a toolchain w/ threads, dynamic library"
2	depends on BR2_USE_MMU
3	depends on BR2_TOOLCHAIN_HAS_SYNC_4
4	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
5
6config BR2_PACKAGE_HIAWATHA
7	bool "hiawatha"
8	# needs fork()
9	depends on BR2_USE_MMU
10	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # __sync_*_4 intrisics
11	depends on BR2_TOOLCHAIN_HAS_THREADS
12	depends on !BR2_STATIC_LIBS
13	select BR2_PACKAGE_ZLIB
14	help
15	  Hiawatha is a webserver for Unix and has been built with
16	  security in mind. This resulted in a highly secure
17	  webserver, in both code and features.
18
19	  This webserver runs on Linux, BSD, MacOS X and
20	  Windows. Although it can run any kind of CGI / FastCGI
21	  application, it has been optimized for usage with PHP. Most
22	  well known PHP frameworks and CMS applications have been
23	  tested with Hiawatha and ran without a problem. Hiawatha
24	  supports many web and HTTP features such as CGI/FastCGI,
25	  HTTP authentication, virtual host support, request
26	  pipelining, keep alive connections, URL rewriting and many
27	  more.
28
29	  http://www.hiawatha-webserver.org/
30
31if BR2_PACKAGE_HIAWATHA
32
33config BR2_PACKAGE_HIAWATHA_SSL
34	bool "hiawatha TLS support"
35	select BR2_PACKAGE_MBEDTLS
36
37endif
38