summaryrefslogtreecommitdiff
path: root/package/network/utils/curl/Config.in
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-01-28 12:07:47 +0000
committerJohn Crispin <john@openwrt.org>2015-01-28 12:07:47 +0000
commit89df45295e828f59deb16c7c23e22a7ed3784376 (patch)
treef45f32affd2a5a30bc4cb5d51afc52e5aa66c092 /package/network/utils/curl/Config.in
parent895edf7c43c7e7c3927165530c46a8d3ccae8fec (diff)
downloadmtk-20170518-89df45295e828f59deb16c7c23e22a7ed3784376.zip
mtk-20170518-89df45295e828f59deb16c7c23e22a7ed3784376.tar.gz
mtk-20170518-89df45295e828f59deb16c7c23e22a7ed3784376.tar.bz2
cURL: Update to version 7.40.0
* Update to version 7.40.0 * remove non existing config options around enable/disable HTTPS protocoll * remove --with-ca-path if ssl support disabled * set proxy support as default like all versions before CC did Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> SVN-Revision: 44176
Diffstat (limited to 'package/network/utils/curl/Config.in')
-rw-r--r--package/network/utils/curl/Config.in11
1 files changed, 3 insertions, 8 deletions
diff --git a/package/network/utils/curl/Config.in b/package/network/utils/curl/Config.in
index 026dcd6..87e5f99 100644
--- a/package/network/utils/curl/Config.in
+++ b/package/network/utils/curl/Config.in
@@ -1,5 +1,4 @@
-menu "Configuration"
- depends on PACKAGE_libcurl
+if PACKAGE_libcurl
choice
prompt "SSL library"
@@ -53,10 +52,6 @@ config LIBCURL_HTTP
bool "Enable HTTP support"
default y
-config LIBCURL_HTTPS
- bool "Enable HTTPS support"
- default n
-
config LIBCURL_IMAP
bool "Enable IMAP support"
default n
@@ -79,7 +74,7 @@ config LIBCURL_POP3
config LIBCURL_PROXY
bool "Enable proxy support"
- default n
+ default y
config LIBCURL_RTSP
bool "Enable RTSP support"
@@ -113,4 +108,4 @@ config LIBCURL_ZLIB
bool "Use zlib"
default n
-endmenu
+endif