8afb945bf0
Changelog: https://curl.se/changes.html
Updated license hash due to copyright year bump:
0409192b1f
The NSS crypto backend requires a special option now, without it
configure errors out with:
configure: error: NSS use must be confirmed using --with-nss-deprecated. NSS support will be dropped from curl in August 2022. See docs/DEPRECATE.md
Since it will be removed entirely soon anyway, and since this version
doesn't fix any CVEs so doesn't need to be backported to stable
branches, drop the NSS option entirely.
Since NSS is going to be removed soon, drop the --without-nss as well.
It is never going to be enabled automatically.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Arnout: drop NSS option entirely, as suggested by Baruch Siach.]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
79 lines
1.5 KiB
Plaintext
79 lines
1.5 KiB
Plaintext
config BR2_PACKAGE_LIBCURL
|
|
bool "libcurl"
|
|
help
|
|
cURL is a tool for getting files from FTP, HTTP, Gopher,
|
|
Telnet, and Dict servers, using any of the supported
|
|
protocols.
|
|
|
|
https://curl.se/
|
|
|
|
if BR2_PACKAGE_LIBCURL
|
|
|
|
config BR2_PACKAGE_LIBCURL_CURL
|
|
bool "curl binary"
|
|
help
|
|
Install curl binary as well
|
|
|
|
config BR2_PACKAGE_LIBCURL_VERBOSE
|
|
bool "verbose strings"
|
|
help
|
|
Enable verbose text strings
|
|
|
|
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
|
|
|
|
choice
|
|
prompt "SSL/TLS library to use"
|
|
|
|
config BR2_PACKAGE_LIBCURL_OPENSSL
|
|
bool "OpenSSL"
|
|
depends on BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
|
|
|
config BR2_PACKAGE_LIBCURL_BEARSSL
|
|
bool "BearSSL"
|
|
depends on BR2_PACKAGE_BEARSSL
|
|
|
|
config BR2_PACKAGE_LIBCURL_GNUTLS
|
|
bool "GnuTLS"
|
|
depends on BR2_PACKAGE_GNUTLS
|
|
|
|
config BR2_PACKAGE_LIBCURL_MBEDTLS
|
|
bool "mbed TLS"
|
|
depends on BR2_PACKAGE_MBEDTLS
|
|
|
|
config BR2_PACKAGE_LIBCURL_WOLFSSL
|
|
bool "WolfSSL"
|
|
depends on BR2_PACKAGE_WOLFSSL
|
|
select BR2_PACKAGE_WOLFSSL_ALL
|
|
|
|
config BR2_PACKAGE_LIBCURL_TLS_NONE
|
|
bool "None"
|
|
|
|
endchoice
|
|
|
|
endif
|