From c643b2e1089af978964697a7bc1c31d400b95ea1 Mon Sep 17 00:00:00 2001 From: casey langen Date: Mon, 7 Feb 2022 21:32:06 -0800 Subject: [PATCH] Add curl to bootstrap. --- script/bootstrap-static-vendors.sh | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/script/bootstrap-static-vendors.sh b/script/bootstrap-static-vendors.sh index 0d871c075..1b6fa774e 100755 --- a/script/bootstrap-static-vendors.sh +++ b/script/bootstrap-static-vendors.sh @@ -233,3 +233,42 @@ make install mv output ../zlib-bin cd .. +# +# curl +# + +wget https://curl.se/download/curl-7.81.0.tar.gz +tar xvfz curl-7.81.0.tar.gz +cd curl-7.81.0 +./configure \ + --enable-shared \ + --enable-static \ + --with-pic \ + --with-openssl \ + --enable-optimize \ + --enable-http \ + --enable-proxy \ + --enable-ipv6 \ + --disable-rtsp \ + --disable-ftp \ + --disable-ftps \ + --disable-gopher \ + --disable-gophers \ + --disable-pop3 \ + --disable-pop3s \ + --disable-smb \ + --disable-smbs \ + --disable-smtp \ + --disable-telnet \ + --disable-tftp \ + --disable-hsts \ + --disable-imap \ + --disable-mqtt \ + --disable-dict \ + --without-brotli \ + --without-libidn2 \ + --prefix=`pwd`/output +make +make install +mv output ../curl-bin +cd .. \ No newline at end of file