6647ee8ee6
libuhttpd needs MMU since version 3.13.0 andffdf7de3a4
to avoid the following build failure raised since commit61797c52f5
: /home/buildroot/autobuild/instance-0/output-1/build/libuhttpd-3.14.1/src/cgi.c: In function 'create_cgi': /home/buildroot/autobuild/instance-0/output-1/build/libuhttpd-3.14.1/src/cgi.c:321:11: error: implicit declaration of function 'fork' [-Werror=implicit-function-declaration] 321 | pid = fork(); | ^~~~ Fixes: - http://autobuild.buildroot.org/results/8d2a79dacf9ac423f7ece51b8c23f3683238312b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11 lines
288 B
Plaintext
11 lines
288 B
Plaintext
config BR2_PACKAGE_LIBUHTTPD
|
|
bool "libuhttpd"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBEV
|
|
select BR2_PACKAGE_WOLFSSL_ALL if BR2_PACKAGE_WOLFSSL
|
|
help
|
|
A lightweight and fully asynchronous HTTP server
|
|
library based on libev
|
|
|
|
https://github.com/zhaojh329/libuhttpd
|