1config BR2_PACKAGE_CIVETWEB
2	bool "civetweb"
3	depends on BR2_TOOLCHAIN_HAS_THREADS
4	depends on BR2_USE_MMU # fork()
5	select BR2_PACKAGE_CIVETWEB_SERVER if !BR2_PACKAGE_CIVETWEB_LIB
6	help
7	  Full featured embedded web server with Lua support.
8
9	  https://sourceforge.net/projects/civetweb
10
11if BR2_PACKAGE_CIVETWEB
12
13config BR2_PACKAGE_CIVETWEB_SERVER
14	bool "enable the web server application"
15	help
16	  Include the web server and its config files.
17
18config BR2_PACKAGE_CIVETWEB_LIB
19	bool "enable library for embedding"
20	help
21	  Enable the civetweb library for embedding in another
22	  application.
23
24endif
25
26comment "civetweb needs a toolchain w/ threads"
27	depends on BR2_USE_MMU
28	depends on !BR2_TOOLCHAIN_HAS_THREADS
29