diff options
author | Michael Osipov <1983-01-06@gmx.net> | 2014-07-21 09:53:45 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-23 00:01:39 +0200 |
commit | 46750c39bd3ece85ddef6a9dafd04bcd2748bc50 (patch) | |
tree | 0d30c87065f5d40458c58ae67865e37848b52de4 /lib/version.c | |
parent | 5128672731a5edef2c7526610584fef821ec2309 (diff) | |
download | curl-46750c39bd3ece85ddef6a9dafd04bcd2748bc50.tar.gz |
configure/features: Add feature and version info for GSS-API and SPNEGO
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c index c25b55b97..7f0bc3617 100644 --- a/lib/version.c +++ b/lib/version.c @@ -250,6 +250,12 @@ static curl_version_info_data version_info = { #if defined(USE_NTLM) && defined(NTLM_WB_ENABLED) | CURL_VERSION_NTLM_WB #endif +#ifdef USE_SPNEGO + | CURL_VERSION_SPNEGO +#endif +#ifdef HAVE_GSSAPI + | CURL_VERSION_GSSAPI +#endif #ifdef USE_WINDOWS_SSPI | CURL_VERSION_SSPI #endif |