From b39d2e4a365cc4ab49eaab37dc034e71ecd14dbb Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Fri, 12 Jan 2024 18:06:41 -0500 Subject: [PATCH] Don't build static binaries by default. OpenSSL isn't build statically on most Linux distributions, so --static only makes sense with --disable-tls or a custom build of OpenSSL. I haven't tested LibreSSL. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f8b0554..a9f682b 100755 --- a/configure +++ b/configure @@ -18,7 +18,7 @@ LIBS="-lm -pthread" # Set default args for all platforms -SCRIPT_ARGS="--cc=cc --prefix=/usr/local --enable-ld-extra --lib-name=Cytoplasm --lib-version=0.4.1 --static $@" +SCRIPT_ARGS="--cc=cc --prefix=/usr/local --enable-ld-extra --lib-name=Cytoplasm --lib-version=0.4.1 $@" # Set platform specific args case "$(uname)" in