]>
Commit | Line | Data |
---|---|---|
1fe1165e TD |
1 | config BR2_PACKAGE_CIVETWEB |
2 | bool "civetweb" | |
3 | depends on BR2_TOOLCHAIN_HAS_THREADS | |
a5e44382 | 4 | depends on BR2_USE_MMU # fork() |
1fe1165e TD |
5 | help |
6 | Full featured embedded web server with Lua support. | |
7 | ||
8 | https://sourceforge.net/projects/civetweb | |
9 | ||
10 | if BR2_PACKAGE_CIVETWEB | |
11 | ||
12 | config BR2_CIVETWEB_WITH_LUA | |
13 | bool "enable Lua support" | |
14 | # required by the bundled Sqlite3 and Lua code | |
15 | depends on BR2_LARGEFILE | |
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. | |
20 | ||
66bb10b7 | 21 | comment "Lua support needs a toolchain w/ largefile" |
1fe1165e TD |
22 | depends on !BR2_LARGEFILE |
23 | ||
24 | endif | |
25 | ||
66bb10b7 | 26 | comment "civetweb needs a toolchain w/ threads" |
be084204 | 27 | depends on BR2_USE_MMU |
1fe1165e | 28 | depends on !BR2_TOOLCHAIN_HAS_THREADS |