mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
parent
539428dc40
commit
7ccd726804
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=517413
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= curl
|
||||
PORTVERSION= 7.66.0
|
||||
PORTVERSION= 7.67.0
|
||||
CATEGORIES= ftp net www
|
||||
MASTER_SITES= https://curl.haxx.se/download/ \
|
||||
LOCAL/sunpoet
|
||||
@ -137,8 +137,7 @@ TELNET_CONFIGURE_ENABLE=telnet
|
||||
TFTP_CONFIGURE_ENABLE= tftp
|
||||
THREADED_RESOLVER_CONFIGURE_ENABLE= pthreads threaded-resolver
|
||||
TLS_SRP_CONFIGURE_ENABLE= tls-srp
|
||||
WOLFSSL_CONFIGURE_ENV= ac_cv_header_cyassl_options_h=no
|
||||
WOLFSSL_CONFIGURE_WITH= cyassl
|
||||
WOLFSSL_CONFIGURE_WITH= wolfssl
|
||||
WOLFSSL_LIB_DEPENDS= libwolfssl.so:security/wolfssl
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1568387123
|
||||
SHA256 (curl-7.66.0.tar.xz) = dbb48088193016d079b97c5c3efde8efa56ada2ebf336e8a97d04eb8e2ed98c1
|
||||
SIZE (curl-7.66.0.tar.xz) = 2414840
|
||||
TIMESTAMP = 1573470085
|
||||
SHA256 (curl-7.67.0.tar.xz) = f5d2e7320379338c3952dcc7566a140abb49edb575f9f99272455785c40e536c
|
||||
SIZE (curl-7.67.0.tar.xz) = 2418548
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- src/tool_operate.c.orig 2019-09-10 17:47:19 UTC
|
||||
--- src/tool_operate.c.orig 2019-11-04 08:43:26 UTC
|
||||
+++ src/tool_operate.c
|
||||
@@ -960,20 +960,7 @@ static CURLcode create_transfers(struct
|
||||
@@ -992,20 +992,7 @@ static CURLcode single_transfer(struct G
|
||||
DEBUGASSERT(!outs->filename);
|
||||
}
|
||||
|
||||
@ -22,17 +22,7 @@
|
||||
#ifdef __VMS
|
||||
/* open file for output, forcing VMS output format into stream
|
||||
mode which is needed for stat() call above to always work. */
|
||||
@@ -981,7 +968,8 @@ static CURLcode create_transfers(struct
|
||||
"ctx=stm", "rfm=stmlf", "rat=cr", "mrs=0");
|
||||
#else
|
||||
/* open file for output: */
|
||||
- FILE *file = fopen(per->outfile, config->resume_from?"ab":"wb");
|
||||
+ /* (always open for appending, it has no effect on new files) */
|
||||
+ FILE *file = fopen(per->outfile, "ab");
|
||||
#endif
|
||||
if(!file) {
|
||||
helpf(global->errors, "Can't open '%s'!\n", per->outfile);
|
||||
@@ -990,6 +978,19 @@ static CURLcode create_transfers(struct
|
||||
@@ -1022,6 +1009,19 @@ static CURLcode single_transfer(struct G
|
||||
}
|
||||
outs->fopened = TRUE;
|
||||
outs->stream = file;
|
||||
|
@ -83,6 +83,7 @@ man/man3/CURLINFO_TOTAL_TIME_T.3.gz
|
||||
man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz
|
||||
man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz
|
||||
man/man3/CURLMOPT_MAXCONNECTS.3.gz
|
||||
man/man3/CURLMOPT_MAX_CONCURRENT_STREAMS.3.gz
|
||||
man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz
|
||||
man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz
|
||||
man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz
|
||||
|
Loading…
Reference in New Issue
Block a user