summaryrefslogtreecommitdiff
path: root/package/libmicrohttpd
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2018-06-22 08:38:41 +0300
committerPeter Korsgaard <peter@korsgaard.com>2018-06-22 11:43:33 +0200
commit694cdb9273433e8a1278e2e3bb2a7fe2004aa813 (patch)
tree525a17a033785b1c4e8a6af6be9edd898ae3ffa4 /package/libmicrohttpd
parentc67889623ed5ed9aa8d5006edc1db90541554304 (diff)
gnutls: drop wchar dependency
Commit 19448f40a0 (gnutls: use included unistring unless libunistring is selected) made libunistring an optional dependency. So now gnutls no longer depend on wchar. Drop wchar dependency of libmicrohttpd and libsoup, which are gnutls reverse dependencies that do not depend themselves on wchar. Update the comments in libsoup and taskd; the wchar dependency is now not due to gnutls. Cc: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libmicrohttpd')
-rw-r--r--package/libmicrohttpd/Config.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/package/libmicrohttpd/Config.in b/package/libmicrohttpd/Config.in
index 7f3c9bb8fd..f3386a63f2 100644
--- a/package/libmicrohttpd/Config.in
+++ b/package/libmicrohttpd/Config.in
@@ -12,13 +12,12 @@ if BR2_PACKAGE_LIBMICROHTTPD
config BR2_PACKAGE_LIBMICROHTTPD_SSL
bool "https support"
depends on !BR2_STATIC_LIBS # gnutls
- depends on BR2_USE_WCHAR
select BR2_PACKAGE_GNUTLS
help
Enable HTTPS (SSL) support.
-comment "libmicrohttpd https support needs a toolchain w/ wchar, dynamic library"
- depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
+comment "libmicrohttpd https support needs a toolchain w/ dynamic library"
+ depends on BR2_STATIC_LIBS
endif