From 344cdd1047874f042d2579577b979c1797e9ecb3 Mon Sep 17 00:00:00 2001 From: Maxime David Date: Wed, 17 Jun 2026 15:12:33 +0000 Subject: [PATCH] fix: disable ngtcp2/nghttp3 in curl build to fix amazonlinux2023 CI Amazon Linux 2023's libcurl-devel now pulls in ngtcp2 1.21.0 as a dependency, which is API-incompatible with the bundled curl 7.83.1. Explicitly disable HTTP/3 support since RIC only needs basic HTTP. --- scripts/preinstall.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/preinstall.sh b/scripts/preinstall.sh index b377228..fdc436c 100755 --- a/scripts/preinstall.sh +++ b/scripts/preinstall.sh @@ -37,7 +37,9 @@ else --disable-shared \ --without-ssl \ --with-pic \ - --without-zlib && \ + --without-zlib \ + --without-ngtcp2 \ + --without-nghttp3 && \ make && \ make install )