From: Daniel Stenberg Date: Thu, 26 Jun 2003 11:22:48 +0000 (+0000) Subject: include GSS in the debug string if available, support a few new flag X-Git-Tag: curl-7_10_6~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89f4af695e06621fe66dfdecb3b3757981c758fb;p=curl include GSS in the debug string if available, support a few new flag booleans --- diff --git a/lib/version.c b/lib/version.c index 4a9beb097..8191f9593 100644 --- a/lib/version.c +++ b/lib/version.c @@ -114,6 +114,10 @@ char *curl_version(void) sprintf(ptr, " zlib/%s", zlibVersion()); ptr += strlen(ptr); #endif +#ifdef GSSAPI + sprintf(ptr, " GSS"); + ptr += strlen(ptr); +#endif return version; } @@ -168,9 +172,16 @@ static curl_version_info_data version_info = { #endif #ifdef USE_SSLEAY | CURL_VERSION_SSL + | CURL_VERSION_NTLM /* since this requires OpenSSL */ #endif #ifdef HAVE_LIBZ | CURL_VERSION_LIBZ +#endif +#ifdef GSSAPI + | CURL_VERSION_GSSNEGOTIATE +#endif +#ifdef CURLDEBUG + | CURL_VERSION_DEBUG #endif , NULL, /* ssl_version */