1config BR2_PACKAGE_UHTTPD
2	bool "uhttpd"
3	depends on !BR2_STATIC_LIBS # dlopen()
4	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
5	depends on BR2_USE_MMU # fork()
6	select BR2_PACKAGE_LIBUBOX
7	select BR2_PACKAGE_JSON_C
8	select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
9	help
10	  uHTTPd is a tiny single threaded HTTP server with TLS, CGI
11	  and Lua support. It is intended as a drop-in replacement for
12	  the Busybox HTTP daemon.
13
14	  https://wiki.openwrt.org/doc/howto/http.uhttpd
15
16comment "uhttpd needs a toolchain w/ dynamic library"
17	depends on BR2_TOOLCHAIN_HAS_SYNC_4
18	depends on BR2_USE_MMU
19	depends on BR2_STATIC_LIBS
20