Skip to content

Commit 344cdd1

Browse files
committed
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.
1 parent f11e7c5 commit 344cdd1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/preinstall.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ else
3737
--disable-shared \
3838
--without-ssl \
3939
--with-pic \
40-
--without-zlib && \
40+
--without-zlib \
41+
--without-ngtcp2 \
42+
--without-nghttp3 && \
4143
make && \
4244
make install
4345
)

0 commit comments

Comments
 (0)