diff options
-rw-r--r-- | www/curl/Makefile | 4 | ||||
-rw-r--r-- | www/curl/PLIST | 3 | ||||
-rw-r--r-- | www/curl/distinfo | 12 | ||||
-rw-r--r-- | www/curl/patches/patch-configure | 21 |
4 files changed, 11 insertions, 29 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 5c24bd9ea78..43f104e18c9 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.219 2019/11/06 09:17:29 leot Exp $ +# $NetBSD: Makefile,v 1.220 2020/01/08 11:59:18 leot Exp $ -DISTNAME= curl-7.67.0 +DISTNAME= curl-7.68.0 CATEGORIES= www MASTER_SITES= https://curl.haxx.se/download/ EXTRACT_SUFX= .tar.xz diff --git a/www/curl/PLIST b/www/curl/PLIST index bc777dc0eb9..adf2b3858b8 100644 --- a/www/curl/PLIST +++ b/www/curl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.77 2019/11/06 09:17:29 leot Exp $ +@comment $NetBSD: PLIST,v 1.78 2020/01/08 11:59:18 leot Exp $ bin/curl bin/curl-config include/curl/curl.h @@ -418,6 +418,7 @@ man/man3/curl_multi_socket_all.3 man/man3/curl_multi_strerror.3 man/man3/curl_multi_timeout.3 man/man3/curl_multi_wait.3 +man/man3/curl_multi_wakeup.3 man/man3/curl_share_cleanup.3 man/man3/curl_share_init.3 man/man3/curl_share_setopt.3 diff --git a/www/curl/distinfo b/www/curl/distinfo index ad0868d4008..c62ea495e10 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.158 2019/11/06 09:17:29 leot Exp $ +$NetBSD: distinfo,v 1.159 2020/01/08 11:59:18 leot Exp $ -SHA1 (curl-7.67.0.tar.xz) = 61ddc68157c2cd1e2c2461b3fbdc0b24083c2e68 -RMD160 (curl-7.67.0.tar.xz) = f9db855e7f76abeac1eeeb9ebc37b2b116be77f2 -SHA512 (curl-7.67.0.tar.xz) = 1d5a344be92dd61b1ba5189eff0fe337e492f2e850794943570fe71c985d0af60bd412082be646e07aaa8639908593e1ce4bb2d07db35394ec377e8ce8b9ae29 -Size (curl-7.67.0.tar.xz) = 2418548 bytes -SHA1 (patch-configure) = 584c39ee826686c570bcf560c18292570cc76ab1 +SHA1 (curl-7.68.0.tar.xz) = 9a7c6aca20065581315fd1327b938185297d05a4 +RMD160 (curl-7.68.0.tar.xz) = e6c7e2cfbabca69cd36be4025ab3fa0c209bd28e +SHA512 (curl-7.68.0.tar.xz) = bf365609c9a66a05b3a263d02bcd3f81f905570c5739c8ec522a296b4b8e2a479d64d5524e8345e14eafad28995ee22d923522f1a45fa40eb46db38759c2eb2c +Size (curl-7.68.0.tar.xz) = 2442788 bytes +SHA1 (patch-configure) = daf5fd2ceca72cca80f992be1973ef70f63135e2 SHA1 (patch-curl-config.in) = 363359665985cc14f36ddf47fc3480f1200e3533 diff --git a/www/curl/patches/patch-configure b/www/curl/patches/patch-configure index d03641976e8..f50a74a172a 100644 --- a/www/curl/patches/patch-configure +++ b/www/curl/patches/patch-configure @@ -1,11 +1,10 @@ -$NetBSD: patch-configure,v 1.8 2019/11/06 09:17:29 leot Exp $ +$NetBSD: patch-configure,v 1.9 2020/01/08 11:59:18 leot Exp $ - Builtin krb5-config in platforms such as solaris do not support the gssapi option, and need an explicit -lgss - On Darwin, do not append custom CFLAGS. - Do not strip debug flags. - Support Minix. -- Avoid unportable `==' test(1) operator. --- configure.orig 2019-11-06 06:38:18.000000000 +0000 +++ configure @@ -157,21 +156,3 @@ $NetBSD: patch-configure,v 1.8 2019/11/06 09:17:29 leot Exp $ ;; esac fi -@@ -42524,7 +42527,7 @@ $as_echo_n "checking whether ESNI suppor - ESNI_ENABLED=0 - ESNI_SUPPORT='' - -- if test "x$OPENSSL_ENABLED" == "x1"; then -+ if test "x$OPENSSL_ENABLED" = "x1"; then - for ac_func in SSL_get_esni_status - do : - ac_fn_c_check_func "$LINENO" "SSL_get_esni_status" "ac_cv_func_SSL_get_esni_status" -@@ -42540,7 +42543,7 @@ done - - fi - -- if test "x$ESNI_ENABLED" == "x1"; then -+ if test "x$ESNI_ENABLED" = "x1"; then - - $as_echo "#define USE_ESNI 1" >>confdefs.h - |