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()
|
2018-09-26 01:29:42 +02:00
|
|
|
select BR2_PACKAGE_CIVETWEB_SERVER if !BR2_PACKAGE_CIVETWEB_LIB
|
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
|
|
|
|
|
2018-09-26 01:29:42 +02:00
|
|
|
config BR2_PACKAGE_CIVETWEB_SERVER
|
|
|
|
bool "enable the web server application"
|
|
|
|
help
|
|
|
|
Include the web server and its config files.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_CIVETWEB_LIB
|
|
|
|
bool "enable library for embedding"
|
|
|
|
help
|
|
|
|
Enable the civetweb library for embedding in another
|
|
|
|
application.
|
|
|
|
|
2015-04-27 22:29:05 +02:00
|
|
|
config BR2_PACKAGE_CIVETWEB_WITH_LUA
|
2013-08-28 05:56:11 +02:00
|
|
|
bool "enable Lua support"
|
|
|
|
# required by the bundled Sqlite3 and Lua code
|
2015-04-27 22:03:12 +02:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2013-08-28 05:56:11 +02:00
|
|
|
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.
|
|
|
|
|
2015-04-27 22:03:12 +02:00
|
|
|
comment "lua support needs a toolchain w/ dynamic library"
|
|
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
|
2013-08-28 05:56:11 +02:00
|
|
|
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
|