forked from Telodendria/Telodendria
[FIX] Fix issue related to TLS
The Makefile didn't properly set TLS_IMPL, effectively causing no TLS implementation to be put in.
This commit is contained in:
parent
dcbb488f7d
commit
b6388eb7fe
1 changed files with 2 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -37,11 +37,11 @@ echo "Ran with arguments: $SCRIPT_ARGS"
|
||||||
for arg in $SCRIPT_ARGS; do
|
for arg in $SCRIPT_ARGS; do
|
||||||
case "$arg" in
|
case "$arg" in
|
||||||
--with-openssl)
|
--with-openssl)
|
||||||
TLS_IMPL="OPENSSL"
|
TLS_IMPL="TLS_OPENSSL"
|
||||||
TLS_LIBS="-lcrypto -lssl"
|
TLS_LIBS="-lcrypto -lssl"
|
||||||
;;
|
;;
|
||||||
--with-libressl)
|
--with-libressl)
|
||||||
TLS_IMPL="LIBRESSL"
|
TLS_IMPL="TLS_LIBRESSL"
|
||||||
TLS_LIBS="-ltls -lcrypto -lssl"
|
TLS_LIBS="-ltls -lcrypto -lssl"
|
||||||
;;
|
;;
|
||||||
--disable-tls)
|
--disable-tls)
|
||||||
|
|
Loading…
Reference in a new issue