HTTP3.md: use 'autoreconf -fi' instead of buildconf

buildconf is not used since #5853

Closes #7746
This commit is contained in:
Momoka Yamamoto 2021-09-19 22:17:42 +09:00 коммит произвёл Daniel Stenberg
Родитель dca60077c9
Коммит f4a3ae8ea8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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