diff options
author | Momoka Yamamoto <39076047+momoka0122y@users.noreply.github.com> | 2021-09-19 22:17:42 +0900 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-09-24 13:16:21 +0200 |
commit | f4a3ae8ea8dd913ea8c9b5cced5a13c051318816 (patch) | |
tree | 8ee676b6ada9df9d2f0b440c9c36b2e830e148ef | |
parent | dca60077c95d22ac3a217cc2f4ffc7de33828586 (diff) | |
download | curl-f4a3ae8ea8dd913ea8c9b5cced5a13c051318816.tar.gz |
HTTP3.md: use 'autoreconf -fi' instead of buildconf
buildconf is not used since #5853
Closes #7746
-rw-r--r-- | docs/HTTP3.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/HTTP3.md b/docs/HTTP3.md index 2f377fd35..c6d0ef722 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -64,7 +64,7 @@ Build curl % cd .. % git clone https://github.com/curl/curl % cd curl - % ./buildconf + % autoreconf -fi % LDFLAGS="-Wl,-rpath,<somewhere1>/lib" ./configure --with-openssl=<somewhere1> --with-nghttp3=<somewhere2> --with-ngtcp2=<somewhere3> % make @@ -104,7 +104,7 @@ Build curl % cd .. % git clone https://github.com/curl/curl % cd curl - % ./buildconf + % autoreconf -fi % ./configure --without-openssl --with-gnutls=<somewhere1> --with-nghttp3=<somewhere2> --with-ngtcp2=<somewhere3> % make @@ -125,7 +125,7 @@ Build curl: % cd .. % git clone https://github.com/curl/curl % cd curl - % ./buildconf + % autoreconf -fi % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-openssl=$PWD/../quiche/deps/boringssl/src --with-quiche=$PWD/../quiche/target/release % make |