From ca5e53ebb925aa9dba286b70fa018c24cf88062d Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 4 Oct 2023 17:32:02 -0400 Subject: [PATCH] Enable websockets Websockets support is handy and it requires no additional dependencies. See: https://curl.se/docs/websocket.html --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f77a90f..5124b36 100755 --- a/build.sh +++ b/build.sh @@ -49,7 +49,7 @@ 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 --with-libssh2 +LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets --enable-websockets --with-ssl --with-libssh2 make -j4 V=1 LDFLAGS="-static -all-static"