[FIX] Fix issue related to TLS #1

Merged
jordan merged 1 commit from lda/Cytoplasm:fix-tls into master 2023-10-04 19:02:41 +00:00
Showing only changes of commit b6388eb7fe - Show all commits

4
configure vendored
View file

@ -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)