mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
This bump includes patches which add cmake4 compatibility. json-c is now a mandatory dependency due to upstream commit: https://git.openwrt.org/?p=project/libubox.git;a=commitdiff;h=b7acc8e6fd5e13611ad90a593e98f9589af4009a Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
20 lines
647 B
Plaintext
20 lines
647 B
Plaintext
config BR2_PACKAGE_UHTTPD
|
|
bool "uhttpd"
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, libubox -> json-c
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBUBOX
|
|
select BR2_PACKAGE_JSON_C
|
|
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
uHTTPd is a tiny single threaded HTTP server with TLS, CGI
|
|
and Lua support. It is intended as a drop-in replacement for
|
|
the Busybox HTTP daemon.
|
|
|
|
https://wiki.openwrt.org/doc/howto/http.uhttpd
|
|
|
|
comment "uhttpd needs a toolchain w/ dynamic library"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS
|