[ADD] Add MbedTLS support

This commit is contained in:
LDA 2024-09-15 11:10:52 +02:00
parent 9fed42d2ac
commit c1d59b2c6f
6 changed files with 390 additions and 0 deletions

4
configure vendored
View file

@ -76,6 +76,10 @@ for arg in $SCRIPT_ARGS; do
TLS_IMPL="TLS_LIBRESSL"
TLS_LIBS="-ltls -lcrypto -lssl"
;;
--with-mbed)
TLS_IMPL="TLS_MBEDTLS"
TLS_LIBS="-lmbedtls"
;;
--disable-tls)
TLS_IMPL=""
TLS_LIBS=""