2013-08-28 05:56:11 +02:00
|
|
|
config BR2_PACKAGE_CIVETWEB
|
|
|
|
bool "civetweb"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2013-10-09 22:25:43 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2013-08-28 05:56:11 +02:00
|
|
|
help
|
|
|
|
Full featured embedded web server with Lua support.
|
|
|
|
|
|
|
|
https://sourceforge.net/projects/civetweb
|
|
|
|
|
|
|
|
if BR2_PACKAGE_CIVETWEB
|
|
|
|
|
|
|
|
config BR2_CIVETWEB_WITH_LUA
|
|
|
|
bool "enable Lua support"
|
|
|
|
# required by the bundled Sqlite3 and Lua code
|
|
|
|
depends on BR2_LARGEFILE
|
|
|
|
help
|
|
|
|
Enable Lua support in Civetweb. Note that this will use a
|
|
|
|
version of Lua and Sqlite bundled within the Civetweb
|
|
|
|
sources, and not the packages from Buildroot.
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "Lua support needs a toolchain w/ largefile"
|
2013-08-28 05:56:11 +02:00
|
|
|
depends on !BR2_LARGEFILE
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "civetweb needs a toolchain w/ threads"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2013-08-28 05:56:11 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|