Skip to content

Commit 7c5e26f

Browse files
authored
bump curl to 8.19.0 (#49)
1 parent 9e7839d commit 7c5e26f

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Zig bindings for [[https://curl.haxx.se/libcurl/][libcurl]], a free and easy-to-
1515
The vendored libraries consist of:
1616
| Library | Version |
1717
|---------+---------|
18-
| libcurl | [[https://github.com/curl/curl/tree/curl-8_18_0][8.18.0]] |
18+
| libcurl | [[https://github.com/curl/curl/tree/curl-8_19_0][8.19.0]] |
1919
| zlib | [[https://github.com/madler/zlib/tree/v1.3.1][1.3.1]] |
2020
| mbedtls | [[https://github.com/Mbed-TLS/mbedtls/tree/v3.6.0][3.6.0]] |
2121

build.zig.zon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"LICENSE",
1212
},
1313
.dependencies = .{
14-
// https://github.com/curl/curl/releases/tag/curl-8_18_0
14+
// https://github.com/curl/curl/releases/tag/curl-8_19_0
1515
.curl = .{
16-
.url = "https://github.com/curl/curl/releases/download/curl-8_18_0/curl-8.18.0.tar.gz",
17-
.hash = "N-V-__8AALp9QAGn6CCHZ6fK_FfMyGtG824LSHYHHasM3w-y",
16+
.url = "https://github.com/curl/curl/releases/download/curl-8_19_0/curl-8.19.0.tar.gz",
17+
.hash = "N-V-__8AAM-tPgFSsje3FI7iURLjDLSOquhtONinvYZp3AHh",
1818
.lazy = true,
1919
},
2020
// https://github.com/madler/zlib/releases/tag/v1.3.1

libs/curl.zig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,10 @@ const srcs = &.{
322322
"lib/asyn-thrdd.c",
323323
"lib/strerror.c",
324324
"lib/ftp.c",
325-
"lib/strdup.c",
325+
"lib/curlx/strdup.c",
326326
"lib/curlx/strcopy.c",
327+
"lib/curlx/basename.c",
328+
"lib/curlx/snprintf.c",
327329
"lib/memdebug.c",
328330
"lib/vquic/curl_ngtcp2.c",
329331
"lib/vquic/vquic.c",

0 commit comments

Comments
 (0)