]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
HTTP3.md: use 'autoreconf -fi' instead of buildconf
authorMomoka Yamamoto <39076047+momoka0122y@users.noreply.github.com>
Sun, 19 Sep 2021 13:17:42 +0000 (22:17 +0900)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 24 Sep 2021 11:16:21 +0000 (13:16 +0200)
buildconf is not used since #5853

Closes #7746

docs/HTTP3.md

index 2f377fd354f00cc2c68910040427bb46b1d9b672..c6d0ef722bf4284ecde911c84430e733a3165340 100644 (file)
@@ -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