From 8fa7940db5d4cd6d36f52f340961018a846a8544 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Mon, 24 Jun 2019 17:55:30 +0200 Subject: [PATCH] update curl to 7.59.0 in build_sdk.sh --- contrib/build_sdk.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/build_sdk.sh b/contrib/build_sdk.sh index 418cfff3d5..aa5e732d8a 100755 --- a/contrib/build_sdk.sh +++ b/contrib/build_sdk.sh @@ -661,9 +661,9 @@ curl_pkg() { local build_dir=$1 local install_dir=$2 local name="cURL" - local curl_ver="7.49.1" + local curl_ver="7.59.0" local curl_url="http://curl.haxx.se/download/curl-$curl_ver.tar.gz" - local curl_md5="2feb3767b958add6a177c6602ff21e8c" + local curl_md5="a44f98c25c7506e7103039b542aa5ad8" local curl_file="curl-$curl_ver.tar.gz" local curl_dir="curl-$curl_ver" local openssl_flags="" @@ -678,12 +678,12 @@ curl_pkg() { if [ $use_dynamic -eq 1 ]; then local curl_params="--disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-dict \ --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-sspi \ - --without-librtmp --without-libidn --without-libssh2 --enable-ipv6 --disable-manual --without-nghttp2 --without-libpsl \ + --without-librtmp --without-libidn --without-libidn2 --without-libssh2 --enable-ipv6 --disable-manual --without-nghttp2 --without-libpsl \ --with-zlib=$install_dir --enable-ares=$install_dir $openssl_flags" else local curl_params="--disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-dict \ --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-sspi \ - --without-librtmp --without-libidn --without-libssh2 --enable-ipv6 --disable-manual --without-nghttp2 --without-libpsl \ + --without-librtmp --without-libidn --without-libidn2 --without-libssh2 --enable-ipv6 --disable-manual --without-nghttp2 --without-libpsl \ --disable-shared --with-zlib=$install_dir --enable-ares=$install_dir $openssl_flags" fi