From c23f8a4be62ef9f223af6306a9be26bf96d6de59 Mon Sep 17 00:00:00 2001 From: LoaD Accumulator Date: Wed, 4 Oct 2023 15:02:38 -0400 Subject: [PATCH] [FIX] Fix issue related to TLS (#1) The Makefile didn't properly set TLS_IMPL, effectively causing no TLS implementation to be put in. Co-authored-by: LoaD Accumulator Reviewed-on: https://git.telodendria.io/Telodendria/Cytoplasm/pulls/1 Co-authored-by: LoaD Accumulator Co-committed-by: LoaD Accumulator --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 65df084..3f05817 100755 --- a/configure +++ b/configure @@ -37,11 +37,11 @@ echo "Ran with arguments: $SCRIPT_ARGS" for arg in $SCRIPT_ARGS; do case "$arg" in --with-openssl) - TLS_IMPL="OPENSSL" + TLS_IMPL="TLS_OPENSSL" TLS_LIBS="-lcrypto -lssl" ;; --with-libressl) - TLS_IMPL="LIBRESSL" + TLS_IMPL="TLS_LIBRESSL" TLS_LIBS="-ltls -lcrypto -lssl" ;; --disable-tls)