1config BR2_PACKAGE_CIVETWEB
2	bool "civetweb"
3	depends on BR2_TOOLCHAIN_HAS_THREADS
4	help
5	  Full featured embedded web server with Lua support.
6
7	  https://sourceforge.net/projects/civetweb
8
9if BR2_PACKAGE_CIVETWEB
10
11config BR2_CIVETWEB_WITH_LUA
12	bool "enable Lua support"
13	# required by the bundled Sqlite3 and Lua code
14	depends on BR2_LARGEFILE
15	help
16	  Enable Lua support in Civetweb. Note that this will use a
17	  version of Lua and Sqlite bundled within the Civetweb
18	  sources, and not the packages from Buildroot.
19
20comment "Lua support requires largefile support in toolchain"
21	depends on !BR2_LARGEFILE
22
23endif
24
25comment "civetweb requires a toolchain with PTHREAD support"
26	depends on !BR2_TOOLCHAIN_HAS_THREADS
27