From 4343826d8a41556135301dbc1cc7fd7642ef1191 Mon Sep 17 00:00:00 2001 From: Jingyuan Liang Date: Thu, 12 Oct 2023 02:07:03 +0000 Subject: [PATCH] More curl disables --- scripts/third_party/static-curl/build.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/third_party/static-curl/build.sh b/scripts/third_party/static-curl/build.sh index 16798b36..41b4d685 100755 --- a/scripts/third_party/static-curl/build.sh +++ b/scripts/third_party/static-curl/build.sh @@ -27,7 +27,18 @@ export CC=clang # set up any required curl options here #LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-libcurl-option --without-brotli --disable-manual --disable-unix-sockets --disable-dict --disable-file --disable-gopher --disable-imap --disable-smtp --disable-rtsp --disable-telnet --disable-tftp --disable-pop3 --without-zlib --disable-threaded-resolver --disable-ipv6 --disable-smb --disable-ntlm-wb --disable-tls-srp --disable-crypto-auth --without-ngtcp2 --without-nghttp2 --disable-ftp --disable-mqtt --disable-alt-svc --without-ssl -LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets --with-ssl --without-libssh2 --without-nghttp2 --without-zlib +LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static \ + --disable-libcurl-option --without-brotli --disable-manual --disable-unix-sockets \ + --disable-dict --disable-file --disable-gopher --disable-imap --disable-smtp \ + --disable-rtsp --disable-telnet -disable-tftp --disable-pop3 --without-zlib \ + --disable-threaded-resolver --enable-ipv6 --disable-smb --disable-ntlm-wb \ + --disable-tls-srp --disable-crypto-auth --without-ngtcp2 --without-nghttp2 \ + --disable-ftp --disable-mqtt --disable-alt-svc --with-ssl --without-libssh2 \ + --disable-ares --disable-cookies --disable-dateparse --disable-dnsshuffle \ + --disable-doh --disable-get-easy-options --disable-hsts --disable-http-auth \ + --disable-netrc --disable-progress-meter --disable-proxy --disable-pthreads \ + --disable-socketpair --disable-versioned-symbols --without-libpsl --without-zstd \ + --without-libidn2 --without-librtmp make -j4 V=1 LDFLAGS="-static -all-static"