diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-02-11 08:53:33 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-02-11 16:16:34 +0100 |
commit | 8d9346f1a0d880c3d904f6e072675d6953870f3e (patch) | |
tree | f495470e15a5d2ad3cc0e4d2b37820ba596cc4cb /include | |
parent | 8a964cb217b0cd84783da5ba32b18944fc43feb1 (diff) | |
download | curl-8d9346f1a0d880c3d904f6e072675d6953870f3e.tar.gz |
gsasl: provide CURL_VERSION_GSASL if built-in
To let applications know the feature is available.
Closes #6592
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 46503178d..c71a2358d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2954,6 +2954,7 @@ typedef struct curl_version_info_data curl_version_info_data; #define CURL_VERSION_ZSTD (1<<26) /* zstd features are present */ #define CURL_VERSION_UNICODE (1<<27) /* Unicode support on Windows */ #define CURL_VERSION_HSTS (1<<28) /* HSTS is supported */ +#define CURL_VERSION_GSASL (1<<29) /* libgsasl is supported */ /* * NAME curl_version_info() |