diff options
author | Michael Forney <mforney@mforney.org> | 2019-11-07 20:17:18 -0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-26 08:32:23 +0100 |
commit | 9b879160df01e7ddbb4770904391d3b74114302b (patch) | |
tree | 459aa36410942ab4dfc69d424d759d87ec8d5259 /lib/curl_setup.h | |
parent | 95e94c64fb0290b6c0e66e78de7d7dfd109c4080 (diff) | |
download | curl-9b879160df01e7ddbb4770904391d3b74114302b.tar.gz |
TLS: add BearSSL vtls implementation
Closes #4597
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r-- | lib/curl_setup.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h index 13af8cdec..b4ba92931 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -644,7 +644,8 @@ int netware_init(void); #if defined(USE_GNUTLS) || defined(USE_OPENSSL) || defined(USE_NSS) || \ defined(USE_MBEDTLS) || \ defined(USE_WOLFSSL) || defined(USE_SCHANNEL) || \ - defined(USE_SECTRANSP) || defined(USE_GSKIT) || defined(USE_MESALINK) + defined(USE_SECTRANSP) || defined(USE_GSKIT) || defined(USE_MESALINK) || \ + defined(USE_BEARSSL) #define USE_SSL /* SSL support has been enabled */ #endif |