diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-19 23:37:40 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-19 23:48:48 +0100 |
commit | 7ee387f43b8daa8e749472a9b1153941a44e688e (patch) | |
tree | 2542546e05d8ca25868cabc12056a57629611221 /package/libmicrohttpd/Config.in | |
parent | cbd5099271121f544a23a07c974f33d366591247 (diff) | |
download | buildroot-novena-7ee387f43b8daa8e749472a9b1153941a44e688e.tar.gz buildroot-novena-7ee387f43b8daa8e749472a9b1153941a44e688e.zip |
libmicrohttpd: make https support optional
Libmicrohttpd works nicely without https support, so make it optional.
Also ensure the cross-libgcrypt-config is found, rather than whatever
is installed on the host.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libmicrohttpd/Config.in')
-rw-r--r-- | package/libmicrohttpd/Config.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/libmicrohttpd/Config.in b/package/libmicrohttpd/Config.in index de656ad38..cfedc8fa9 100644 --- a/package/libmicrohttpd/Config.in +++ b/package/libmicrohttpd/Config.in @@ -1,8 +1,14 @@ config BR2_PACKAGE_LIBMICROHTTPD bool "libmicrohttpd" - select BR2_PACKAGE_LIBGCRYPT help GNU libmicrohttpd is a small C library that makes it easy to run an HTTP server as part of another application. http://www.gnu.org/software/libmicrohttpd/ + +config BR2_PACKAGE_LIBMICROHTTPD_SSL + bool "https support" + depends on BR2_PACKAGE_LIBMICROHTTPD + select BR2_PACKAGE_LIBGCRYPT + help + Enable HTTPS (SSL) support. |