curl: update to 8.6.0
This commit is contained in:
parent
7ab990abc0
commit
cf97d9a4cf
13
srcpkgs/curl/patches/fix-buffer-type.patch
Normal file
13
srcpkgs/curl/patches/fix-buffer-type.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/lib/curl_ntlm_wb.c b/lib/curl_ntlm_wb.c
|
||||
index 0c7892a..acb0093 100644
|
||||
--- a/lib/curl_ntlm_wb.c
|
||||
+++ b/lib/curl_ntlm_wb.c
|
||||
@@ -266,7 +266,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
|
||||
size_t len_in = strlen(input), len_out = 0;
|
||||
struct dynbuf b;
|
||||
char *ptr = NULL;
|
||||
- usigned char buf[1024]
|
||||
+ unsigned char buf[1024];
|
||||
Curl_dyn_init(&b, MAX_NTLM_WB_RESPONSE);
|
||||
|
||||
while(len_in > 0) {
|
@ -1,7 +1,7 @@
|
||||
# Template file for 'curl'
|
||||
pkgname=curl
|
||||
version=8.5.0
|
||||
revision=2
|
||||
version=8.6.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="ac_cv_sizeof_off_t=8 --enable-threaded-resolver --enable-ipv6
|
||||
--enable-websockets --with-random=/dev/urandom
|
||||
@ -29,7 +29,7 @@ license="MIT"
|
||||
homepage="https://curl.se"
|
||||
changelog="https://curl.se/changes.html"
|
||||
distfiles="https://curl.se/download/curl-${version}.tar.gz"
|
||||
checksum=05fc17ff25b793a437a0906e0484b82172a9f4de02be5ed447e0cab8c3475add
|
||||
checksum=9c6db808160015f30f3c656c0dec125feb9dc00753596bf858a272b5dd8dc398
|
||||
build_options="gnutls gssapi idn ldap psl rtmp ssh ssl zstd"
|
||||
build_options_default="idn psl ssh ssl zstd"
|
||||
vopt_conflict ssl gnutls
|
||||
|
Loading…
x
Reference in New Issue
Block a user