config FREETZ_PACKAGE_WGET bool "Wget GNU 1.21.3 (binary only)" default n help GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals, etc. config FREETZ_PACKAGE_WGET_WITH_SSL bool "build with SSL support" depends on FREETZ_PACKAGE_WGET default y help This option enables SSL support for Wget. if FREETZ_PACKAGE_WGET_WITH_SSL choice prompt "SSL library" default FREETZ_PACKAGE_WGET_OPENSSL config FREETZ_PACKAGE_WGET_OPENSSL bool "OpenSSL" select FREETZ_LIB_libcrypto if !FREETZ_PACKAGE_WGET_STATIC select FREETZ_LIB_libcrypto_WITH_EC select FREETZ_LIB_libssl if !FREETZ_PACKAGE_WGET_STATIC config FREETZ_PACKAGE_WGET_GNUTLS bool "GnuTLS" select FREETZ_LIB_libgnutls if !FREETZ_PACKAGE_WGET_STATIC endchoice config FREETZ_PACKAGE_WGET_CA_BUNDLE bool "Select CA-bundle" default y select FREETZ_PACKAGE_CA_BUNDLE config FREETZ_PACKAGE_WGET_STATIC bool "Link statically" default n help Wget with SSL support needs the following shared libraries which can be linked in statically by activating this switch: - libcrypto - libssl - libgnutls endif # FREETZ_PACKAGE_WGET_WITH_SSL config FREETZ_WGET bool default n select FREETZ_BUSYBOX_WGET if !FREETZ_PACKAGE_WGET || FREETZ_WGET_ALWAYS_AVAILABLE