|
|
|
@ -34,6 +34,7 @@ PKG_CONFIG_DEPENDS:= \ |
|
|
|
|
CONFIG_LIBCURL_GNUTLS \
|
|
|
|
|
CONFIG_LIBCURL_OPENSSL \
|
|
|
|
|
CONFIG_LIBCURL_POLARSSL \
|
|
|
|
|
CONFIG_LIBCURL_MBEDTLS \
|
|
|
|
|
CONFIG_LIBCURL_NOSSL \
|
|
|
|
|
\
|
|
|
|
|
CONFIG_LIBCURL_LIBIDN \
|
|
|
|
@ -86,7 +87,7 @@ define Package/libcurl |
|
|
|
|
$(call Package/curl/Default)
|
|
|
|
|
SECTION:=libs
|
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
|
DEPENDS:=+LIBCURL_POLARSSL:libpolarssl +LIBCURL_CYASSL:libcyassl +LIBCURL_AXTLS:libaxtls +LIBCURL_OPENSSL:libopenssl +LIBCURL_GNUTLS:libgnutls
|
|
|
|
|
DEPENDS:=+LIBCURL_POLARSSL:libpolarssl +LIBCURL_CYASSL:libcyassl +LIBCURL_AXTLS:libaxtls +LIBCURL_OPENSSL:libopenssl +LIBCURL_GNUTLS:libgnutls +LIBCURL_MBEDTLS:libmbedtls
|
|
|
|
|
DEPENDS += +LIBCURL_ZLIB:zlib +LIBCURL_THREADED_RESOLVER:libpthread +LIBCURL_LDAP:libopenldap +LIBCURL_LIBIDN:libidn +LIBCURL_SSH2:libssh2
|
|
|
|
|
TITLE:=A client-side URL transfer library
|
|
|
|
|
MENU:=1
|
|
|
|
@ -117,6 +118,7 @@ CONFIGURE_ARGS += \ |
|
|
|
|
$(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr" --with-ca-path=/etc/ssl/certs,--without-gnutls) \
|
|
|
|
|
$(if $(CONFIG_LIBCURL_OPENSSL),--with-ssl="$(STAGING_DIR)/usr" --with-ca-path=/etc/ssl/certs,--without-ssl) \
|
|
|
|
|
$(if $(CONFIG_LIBCURL_POLARSSL),--with-polarssl="$(STAGING_DIR)/usr" --with-ca-path=/etc/ssl/certs,--without-polarssl) \
|
|
|
|
|
$(if $(CONFIG_LIBCURL_MBEDTLS),--with-mbedtls="$(STAGING_DIR)/usr" --without-ca-path,--without-mbedtls) \
|
|
|
|
|
\
|
|
|
|
|
$(if $(CONFIG_LIBCURL_LIBIDN),--with-libidn="$(STAGING_DIR)/usr",--without-libidn) \
|
|
|
|
|
$(if $(CONFIG_LIBCURL_SSH2),--with-libssh2="$(STAGING_DIR)/usr",--without-libssh2) \
|
|
|
|
|