From 5f275cd5ce1d7ccc888c091517cefb889bedbaf6 Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Wed, 6 Dec 2023 14:58:15 +0100 Subject: [PATCH] Ports: Update curl to 8.5.0 Also remove CMake cache variable HAVE_GETADDRINFO_THREADSAFE since the issue: https://github.com/curl/curl/issues/12093 has been resolved for this release. --- Ports/AvailablePorts.md | 2 +- Ports/curl/package.sh | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index bf5459807b0..cc89693ab42 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -47,7 +47,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`coreutils`](coreutils/) | GNU core utilities | 9.4 | https://www.gnu.org/software/coreutils/ | | [`cowsay`](cowsay/) | cowsay | 3.04 | https://github.com/tnalpgge/rank-amateur-cowsay | | [`cpio`](cpio/) | GNU cpio archive utility | 2.14 | https://www.gnu.org/software/cpio/ | -| [`curl`](curl/) | curl | 8.4.0 | https://curl.se/ | +| [`curl`](curl/) | curl | 8.5.0 | https://curl.se/ | | [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash | | [`deutex`](deutex/) | DeuTex | 5.2.2 | https://github.com/Doom-Utils/deutex | | [`devilutionX`](devilutionX/) | DevilutionX | 1.5.1 | https://github.com/diasurgical/devilutionX | diff --git a/Ports/curl/package.sh b/Ports/curl/package.sh index 8c0c6948a3f..361b043102a 100755 --- a/Ports/curl/package.sh +++ b/Ports/curl/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh port='curl' -version='8.4.0' +version='8.5.0' useconfigure='true' files=( - "https://curl.se/download/curl-${version}.tar.bz2#e5250581a9c032b1b6ed3cf2f9c114c811fc41881069e9892d115cc73f9e88c6" + "https://curl.se/download/curl-${version}.tar.bz2#ce4b6a6655431147624aaf582632a36fe1ade262d5fab385c60f78942dd8d87b" ) depends=( 'ca-certificates' @@ -26,8 +26,7 @@ configure() { -DCURL_DISABLE_NTLM='ON' \ -DCURL_DISABLE_SOCKETPAIR='ON' \ -DCURL_DISABLE_TESTS='ON' \ - -DCURL_HIDDEN_SYMBOLS='OFF' \ - -DHAVE_GETADDRINFO_THREADSAFE=1 + -DCURL_HIDDEN_SYMBOLS='OFF' } build() {