curl: allow enabling https protocol

Provide optional --enable-https flag for curl.

Signed-off-by: Lars Kruse <devel@sumpfralle.de>

SVN-Revision: 43997
This commit is contained in:
John Crispin 2015-01-17 13:57:56 +00:00
parent 6774c43dde
commit ff3448adaa
2 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,10 @@ config LIBCURL_HTTP
bool "Enable HTTP support" bool "Enable HTTP support"
default y default y
config LIBCURL_HTTPS
bool "Enable HTTPS support"
default n
config LIBCURL_IMAP config LIBCURL_IMAP
bool "Enable IMAP support" bool "Enable IMAP support"
default n default n

View File

@ -37,6 +37,7 @@ PKG_CONFIG_DEPENDS := \
LIBCURL_GNUTLS \ LIBCURL_GNUTLS \
LIBCURL_GOPHER \ LIBCURL_GOPHER \
LIBCURL_HTTP \ LIBCURL_HTTP \
LIBCURL_HTTPS \
LIBCURL_IMAP \ LIBCURL_IMAP \
LIBCURL_LDAP \ LIBCURL_LDAP \
LIBCURL_LDAPS \ LIBCURL_LDAPS \
@ -113,6 +114,7 @@ CONFIGURE_ARGS += \
$(if $(CONFIG_LIBCURL_GOPHER),--enable,--disable)-gopher \ $(if $(CONFIG_LIBCURL_GOPHER),--enable,--disable)-gopher \
$(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr",--without-gnutls) \ $(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr",--without-gnutls) \
$(if $(CONFIG_LIBCURL_HTTP),--enable,--disable)-http \ $(if $(CONFIG_LIBCURL_HTTP),--enable,--disable)-http \
$(if $(CONFIG_LIBCURL_HTTPS),--enable,--disable)-https \
$(if $(CONFIG_LIBCURL_IMAP),--enable,--disable)-imap \ $(if $(CONFIG_LIBCURL_IMAP),--enable,--disable)-imap \
$(if $(CONFIG_LIBCURL_LDAP),--enable,--disable)-ldap \ $(if $(CONFIG_LIBCURL_LDAP),--enable,--disable)-ldap \
$(if $(CONFIG_LIBCURL_LDAPS),--enable,--disable)-ldaps \ $(if $(CONFIG_LIBCURL_LDAPS),--enable,--disable)-ldaps \