xref: /OK3568_Linux_fs/buildroot/package/libmicrohttpd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_LIBMICROHTTPD
2*4882a593Smuzhiyun	bool "libmicrohttpd"
3*4882a593Smuzhiyun	help
4*4882a593Smuzhiyun	  GNU libmicrohttpd is a small C library that makes it easy to
5*4882a593Smuzhiyun	  run an HTTP server as part of another application.
6*4882a593Smuzhiyun
7*4882a593Smuzhiyun	  http://www.gnu.org/software/libmicrohttpd/
8*4882a593Smuzhiyun
9*4882a593Smuzhiyunif BR2_PACKAGE_LIBMICROHTTPD
10*4882a593Smuzhiyun
11*4882a593Smuzhiyunconfig BR2_PACKAGE_LIBMICROHTTPD_SSL
12*4882a593Smuzhiyun	bool "https support"
13*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS # gnutls
14*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
15*4882a593Smuzhiyun	select BR2_PACKAGE_GNUTLS
16*4882a593Smuzhiyun	help
17*4882a593Smuzhiyun	  Enable HTTPS (SSL) support.
18*4882a593Smuzhiyun
19*4882a593Smuzhiyuncomment "libmicrohttpd https support needs a toolchain w/ wchar, dynamic library"
20*4882a593Smuzhiyun	depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
21*4882a593Smuzhiyun
22*4882a593Smuzhiyunendif
23