2009-09-15 14:37:54 +02:00
|
|
|
config BR2_PACKAGE_LIBMICROHTTPD
|
|
|
|
bool "libmicrohttpd"
|
2012-12-26 04:55:49 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2009-09-15 14:37:54 +02:00
|
|
|
help
|
|
|
|
GNU libmicrohttpd is a small C library that makes it easy to
|
|
|
|
run an HTTP server as part of another application.
|
2009-09-21 17:46:06 +02:00
|
|
|
|
|
|
|
http://www.gnu.org/software/libmicrohttpd/
|
2011-02-19 23:37:40 +01:00
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
if BR2_PACKAGE_LIBMICROHTTPD
|
|
|
|
|
2011-02-19 23:37:40 +01:00
|
|
|
config BR2_PACKAGE_LIBMICROHTTPD_SSL
|
2013-06-26 20:49:40 +02:00
|
|
|
bool "https support"
|
2017-05-25 18:34:43 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # gnutls
|
2013-06-26 20:49:40 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
|
|
|
select BR2_PACKAGE_GNUTLS
|
|
|
|
help
|
|
|
|
Enable HTTPS (SSL) support.
|
2012-12-26 04:55:49 +01:00
|
|
|
|
2017-05-25 18:34:43 +02:00
|
|
|
comment "libmicrohttpd https support needs a toolchain w/ wchar, dynamic library"
|
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
|
2013-12-20 22:31:30 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "libmicrohttpd needs a toolchain w/ threads"
|
2012-12-26 04:55:49 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|