From: Daniel Stenberg Date: Tue, 4 Feb 2020 23:25:12 +0000 (+0100) Subject: docs/HTTP3: add --enable-alt-svc to curl's configure X-Git-Tag: curl-7_69_0~142 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=faaa63f32359c5e7e91c02ad421105b3e2079d15;p=thirdparty%2Fcurl.git docs/HTTP3: add --enable-alt-svc to curl's configure --- diff --git a/docs/HTTP3.md b/docs/HTTP3.md index 209df049d8..829d0bfeed 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -65,7 +65,7 @@ Build curl % git clone https://github.com/curl/curl % cd curl % ./buildconf - % LDFLAGS="-Wl,-rpath,/lib" ./configure --with-ssl= --with-nghttp3= --with-ngtcp2= + % LDFLAGS="-Wl,-rpath,/lib" ./configure --with-ssl= --with-nghttp3= --with-ngtcp2= --enable-alt-svc % make # quiche version @@ -93,13 +93,13 @@ Build quiche: % cd ../.. % QUICHE_BSSL_PATH=$PWD/deps/boringssl cargo build --release --features pkg-config-meta -Clone and build curl: +Build curl: % cd .. % git clone https://github.com/curl/curl % cd curl % ./buildconf - % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-ssl=$PWD/../quiche/deps/boringssl/.openssl --with-quiche=$PWD/../quiche/target/release + % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-ssl=$PWD/../quiche/deps/boringssl/.openssl --with-quiche=$PWD/../quiche/target/release --enable-alt-svc % make ## Run