diff options
author | John Crispin <blogic@openwrt.org> | 2015-01-17 13:57:56 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-17 13:57:56 +0000 |
commit | a522a43036e9414b442ded3a56ee4cbb94389edc (patch) | |
tree | 2bfddff21fb4e40cc841efa168b56cce56f5f520 | |
parent | 49b06c8abae4c477ee622153adf84131d2fc37f5 (diff) | |
download | upstream-a522a43036e9414b442ded3a56ee4cbb94389edc.tar.gz upstream-a522a43036e9414b442ded3a56ee4cbb94389edc.tar.bz2 upstream-a522a43036e9414b442ded3a56ee4cbb94389edc.zip |
curl: allow enabling https protocol
Provide optional --enable-https flag for curl.
Signed-off-by: Lars Kruse <devel@sumpfralle.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43997 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/utils/curl/Config.in | 4 | ||||
-rw-r--r-- | package/network/utils/curl/Makefile | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/package/network/utils/curl/Config.in b/package/network/utils/curl/Config.in index 086f5c2445..026dcd6804 100644 --- a/package/network/utils/curl/Config.in +++ b/package/network/utils/curl/Config.in @@ -53,6 +53,10 @@ config LIBCURL_HTTP bool "Enable HTTP support" default y +config LIBCURL_HTTPS + bool "Enable HTTPS support" + default n + config LIBCURL_IMAP bool "Enable IMAP support" default n diff --git a/package/network/utils/curl/Makefile b/package/network/utils/curl/Makefile index f78fa9e9a2..1a374951c1 100644 --- a/package/network/utils/curl/Makefile +++ b/package/network/utils/curl/Makefile @@ -37,6 +37,7 @@ PKG_CONFIG_DEPENDS := \ LIBCURL_GNUTLS \ LIBCURL_GOPHER \ LIBCURL_HTTP \ + LIBCURL_HTTPS \ LIBCURL_IMAP \ LIBCURL_LDAP \ LIBCURL_LDAPS \ @@ -113,6 +114,7 @@ CONFIGURE_ARGS += \ $(if $(CONFIG_LIBCURL_GOPHER),--enable,--disable)-gopher \ $(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr",--without-gnutls) \ $(if $(CONFIG_LIBCURL_HTTP),--enable,--disable)-http \ + $(if $(CONFIG_LIBCURL_HTTPS),--enable,--disable)-https \ $(if $(CONFIG_LIBCURL_IMAP),--enable,--disable)-imap \ $(if $(CONFIG_LIBCURL_LDAP),--enable,--disable)-ldap \ $(if $(CONFIG_LIBCURL_LDAPS),--enable,--disable)-ldaps \ |