python: fix disabling the SSL module
[buildroot-gz.git] / package / civetweb / Config.in
blobd68a1ffd53509540016cbe20bdc0f7b348e5d1fe
1 config BR2_PACKAGE_CIVETWEB
2         bool "civetweb"
3         depends on BR2_TOOLCHAIN_HAS_THREADS
4         depends on BR2_USE_MMU # fork()
5         help
6           Full featured embedded web server with Lua support.
8           https://sourceforge.net/projects/civetweb
10 if BR2_PACKAGE_CIVETWEB
12 config BR2_PACKAGE_CIVETWEB_WITH_LUA
13         bool "enable Lua support"
14         # required by the bundled Sqlite3 and Lua code
15         depends on !BR2_STATIC_LIBS
16         help
17           Enable Lua support in Civetweb. Note that this will use a
18           version of Lua and Sqlite bundled within the Civetweb
19           sources, and not the packages from Buildroot.
21 comment "lua support needs a toolchain w/ dynamic library"
22         depends on BR2_STATIC_LIBS
24 endif
26 comment "civetweb needs a toolchain w/ threads"
27         depends on BR2_USE_MMU
28         depends on !BR2_TOOLCHAIN_HAS_THREADS