From: Gisle Vanem Date: Tue, 10 Dec 2019 12:44:39 +0000 (+0100) Subject: vtls: make BearSSL possible to set with CURL_SSL_BACKEND X-Git-Tag: curl-7_68_0~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c0362ee045521e9b6c757c1f07ceba69d083ef2;p=thirdparty%2Fcurl.git vtls: make BearSSL possible to set with CURL_SSL_BACKEND Ref: https://github.com/curl/curl/commit/9b879160df01e7ddbb4770904391d3b74114302b#commitcomment-36355622 Closes #4698 --- diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c index 894fd8a43b..c493b15169 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 };