diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-08-18 08:51:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-28 22:56:49 +0200 |
commit | 9d96a5f0b58a31f481be229b19496728d3c55cbb (patch) | |
tree | de72bf6771c62e007ac63a91699c44a4ef3840b8 /lib | |
parent | b180a273fab64b601e7f44a36a0ec8bd5363e8e1 (diff) | |
download | curl-9d96a5f0b58a31f481be229b19496728d3c55cbb.tar.gz |
version: add the CURL_VERSION_MULTI_SSL feature flag
This new feature flag reports When cURL was built with multiple SSL
backends.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/version.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c index b1959dee1..ebd600635 100644 --- a/lib/version.c +++ b/lib/version.c @@ -324,6 +324,9 @@ static curl_version_info_data version_info = { #if defined(USE_LIBPSL) | CURL_VERSION_PSL #endif +#if defined(CURL_WITH_MULTI_SSL) + | CURL_VERSION_MULTI_SSL +#endif , NULL, /* ssl_version */ 0, /* ssl_version_num, this is kept at zero */ |