From 2c0362ee045521e9b6c757c1f07ceba69d083ef2 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Tue, 10 Dec 2019 13:44:39 +0100 Subject: vtls: make BearSSL possible to set with CURL_SSL_BACKEND Ref: https://github.com/curl/curl/commit/9b879160df01e7ddbb4770904391d3b74114302b#commitcomment-36355622 Closes #4698 --- lib/vtls/vtls.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c index 894fd8a43..c493b1516 100644 --- a/lib/vtls/vtls.c +++ b/lib/vtls/vtls.c @@ -1225,6 +1225,9 @@ static const struct Curl_ssl *available_backends[] = { #endif #if defined(USE_MESALINK) &Curl_ssl_mesalink, +#endif +#if defined(USE_BEARSSL) + &Curl_ssl_bearssl, #endif NULL }; -- cgit v1.2.3