xref: /OK3568_Linux_fs/buildroot/package/libmicrohttpd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
7	  http://www.gnu.org/software/libmicrohttpd/
8
9if BR2_PACKAGE_LIBMICROHTTPD
10
11config BR2_PACKAGE_LIBMICROHTTPD_SSL
12	bool "https support"
13	depends on !BR2_STATIC_LIBS # gnutls
14	depends on BR2_USE_WCHAR
15	select BR2_PACKAGE_GNUTLS
16	help
17	  Enable HTTPS (SSL) support.
18
19comment "libmicrohttpd https support needs a toolchain w/ wchar, dynamic library"
20	depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
21
22endif
23