2007-05-07 05:58:30 +02:00
|
|
|
config BR2_PACKAGE_LIBCURL
|
|
|
|
bool "libcurl"
|
|
|
|
help
|
2017-07-31 15:53:50 +02:00
|
|
|
cURL is a tool for getting files from FTP, HTTP, Gopher,
|
|
|
|
Telnet, and Dict servers, using any of the supported
|
|
|
|
protocols.
|
2007-05-07 05:58:30 +02:00
|
|
|
|
2013-11-06 11:21:34 +01:00
|
|
|
http://curl.haxx.se/
|
2008-12-28 14:50:53 +01:00
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
if BR2_PACKAGE_LIBCURL
|
|
|
|
|
2008-12-28 14:50:53 +01:00
|
|
|
config BR2_PACKAGE_CURL
|
|
|
|
bool "curl binary"
|
|
|
|
help
|
|
|
|
Install curl binary as well
|
2013-12-20 22:31:30 +01:00
|
|
|
|
2017-01-31 18:26:53 +01:00
|
|
|
config BR2_PACKAGE_LIBCURL_VERBOSE
|
2019-02-08 22:23:11 +01:00
|
|
|
bool "verbose strings"
|
2017-01-31 18:26:53 +01:00
|
|
|
help
|
|
|
|
Enable verbose text strings
|
|
|
|
|
2019-02-08 22:23:11 +01:00
|
|
|
config BR2_PACKAGE_LIBCURL_PROXY_SUPPORT
|
|
|
|
bool "proxy support"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable proxy support.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT
|
|
|
|
bool "cookies support"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable support for cookies.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_EXTRA_PROTOCOLS_FEATURES
|
|
|
|
bool "enable extra protocols and features"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable the following extra protocols and features:
|
|
|
|
- LDAP / LDAPS
|
|
|
|
- POP3 / IMAP / SMTP
|
|
|
|
- Telnet
|
|
|
|
- TFTP
|
|
|
|
- RTSP
|
|
|
|
- SMB / CIFS
|
|
|
|
- DICT
|
|
|
|
- Gopher
|
|
|
|
|
2018-11-08 23:25:31 +01:00
|
|
|
config BR2_PACKAGE_LIBCURL_TLS_SUPPORT
|
|
|
|
bool
|
|
|
|
default y if BR2_PACKAGE_OPENSSL
|
|
|
|
default y if BR2_PACKAGE_GNUTLS
|
|
|
|
default y if BR2_PACKAGE_LIBNSS
|
|
|
|
default y if BR2_PACKAGE_MBEDTLS
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "SSL/TLS library to use"
|
|
|
|
depends on BR2_PACKAGE_LIBCURL_TLS_SUPPORT
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_OPENSSL
|
|
|
|
bool "OpenSSL"
|
|
|
|
depends on BR2_PACKAGE_OPENSSL
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_GNUTLS
|
|
|
|
bool "GnuTLS"
|
|
|
|
depends on BR2_PACKAGE_GNUTLS
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_LIBNSS
|
|
|
|
bool "NSS"
|
|
|
|
depends on BR2_PACKAGE_LIBNSS
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCURL_MBEDTLS
|
|
|
|
bool "mbed TLS"
|
|
|
|
depends on BR2_PACKAGE_MBEDTLS
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
comment "A TLS library is needed for SSL/TLS support"
|
|
|
|
depends on !BR2_PACKAGE_LIBCURL_TLS_SUPPORT
|
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
endif
|