Config.in 580 B

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