Config.in 667 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_LIBMICROHTTPD
  2. bool "libmicrohttpd"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. help
  5. GNU libmicrohttpd is a small C library that makes it easy to
  6. run an HTTP server as part of another application.
  7. http://www.gnu.org/software/libmicrohttpd/
  8. if BR2_PACKAGE_LIBMICROHTTPD
  9. config BR2_PACKAGE_LIBMICROHTTPD_SSL
  10. bool "https support"
  11. depends on BR2_USE_WCHAR
  12. select BR2_PACKAGE_GNUTLS
  13. select BR2_PACKAGE_LIBGCRYPT
  14. help
  15. Enable HTTPS (SSL) support.
  16. comment "libmicrohttpd https support needs a toolchain w/ wchar"
  17. depends on !BR2_USE_WCHAR
  18. endif
  19. comment "libmicrohttpd needs a toolchain w/ threads"
  20. depends on !BR2_TOOLCHAIN_HAS_THREADS