From: Viktor Szakats Date: Wed, 27 Aug 2025 14:23:58 +0000 (+0200) Subject: HTTP3.md: avoid `configure` issue for ngtcp2 1.14.0+ compatibility X-Git-Tag: curl-8_16_0~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c64ffaff4cd8c8275627dd2e17b6879a1d32262;p=thirdparty%2Fcurl.git HTTP3.md: avoid `configure` issue for ngtcp2 1.14.0+ compatibility Applied the same workaround to the build examples as used earlier in CI. That is, drop ` from `--with-ngtcp2=` and configure env `PKG_CONFIG_PATH` instead. Till the root cause is fixed. Ref: 99500660af19f89069e71c2251c13963401b3806 #18028 Reported-by: Pavel Kropachev Fixes #18188 Closes #18415 --- diff --git a/docs/HTTP3.md b/docs/HTTP3.md index 95901196f4..2047d4ad2e 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -87,7 +87,7 @@ Build curl: % git clone https://github.com/curl/curl % cd curl % autoreconf -fi - % LDFLAGS="-Wl,-rpath,/lib" ./configure --with-openssl= --with-nghttp3= --with-ngtcp2= + % LDFLAGS="-Wl,-rpath,/lib" ./configure PKG_CONFIG_PATH=/lib/pkgconfig --with-openssl= --with-nghttp3= --with-ngtcp2 % make % make install @@ -131,7 +131,7 @@ Build curl: % git clone https://github.com/curl/curl % cd curl % autoreconf -fi - % LDFLAGS="-Wl,-rpath,/lib" ./configure --with-openssl= --with-nghttp3= --with-ngtcp2= + % LDFLAGS="-Wl,-rpath,/lib" ./configure PKG_CONFIG_PATH=/lib/pkgconfig --with-openssl= --with-nghttp3= --with-ngtcp2 % make % make install @@ -173,7 +173,7 @@ Build curl: % git clone https://github.com/curl/curl % cd curl % autoreconf -fi - % ./configure --with-gnutls= --with-nghttp3= --with-ngtcp2= + % ./configure PKG_CONFIG_PATH=/lib/pkgconfig --with-gnutls= --with-nghttp3= --with-ngtcp2 % make % make install @@ -215,7 +215,7 @@ Build curl: % git clone https://github.com/curl/curl % cd curl % autoreconf -fi - % ./configure --with-wolfssl= --with-nghttp3= --with-ngtcp2= + % ./configure PKG_CONFIG_PATH=/lib/pkgconfig --with-wolfssl= --with-nghttp3= --with-ngtcp2 % make % make install