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_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
14	select BR2_PACKAGE_ZLIB
15	help
16	  Hiawatha is a webserver for Unix and has been built with
17	  security in mind. This resulted in a highly secure
18	  webserver, in both code and features.
19
20	  This webserver runs on Linux, BSD, MacOS X and
21	  Windows. Although it can run any kind of CGI / FastCGI
22	  application, it has been optimized for usage with PHP. Most
23	  well known PHP frameworks and CMS applications have been
24	  tested with Hiawatha and ran without a problem. Hiawatha
25	  supports many web and HTTP features such as CGI/FastCGI,
26	  HTTP authentication, virtual host support, request
27	  pipelining, keep alive connections, URL rewriting and many
28	  more.
29
30	  http://www.hiawatha-webserver.org/
31
32if BR2_PACKAGE_HIAWATHA
33
34config BR2_PACKAGE_HIAWATHA_SSL
35	bool "hiawatha TLS support"
36
37endif
38