Config.in 570 B

123456789101112131415161718
  1. config 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. help
  9. uHTTPd is a tiny single threaded HTTP server with TLS, CGI
  10. and Lua support. It is intended as a drop-in replacement for
  11. the Busybox HTTP daemon.
  12. https://wiki.openwrt.org/doc/howto/http.uhttpd
  13. comment "uhttpd needs a toolchain w/ dynamic library"
  14. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  15. depends on BR2_USE_MMU
  16. depends on BR2_STATIC_LIBS