mirror of
https://github.com/curl/curl.git
synced 2026-07-25 16:47:16 +03:00
Markus Moeller's SPNEGO patch applied, with my edits, additions and minor
cleanups.
This commit is contained in:
parent
bbc01c36d2
commit
09ccfcdcd4
10 changed files with 150 additions and 16 deletions
|
|
@ -114,7 +114,7 @@ char *curl_version(void)
|
|||
sprintf(ptr, " zlib/%s", zlibVersion());
|
||||
ptr += strlen(ptr);
|
||||
#endif
|
||||
#ifdef GSSAPI
|
||||
#ifdef HAVE_GSSAPI
|
||||
sprintf(ptr, " GSS");
|
||||
ptr += strlen(ptr);
|
||||
#endif
|
||||
|
|
@ -177,7 +177,7 @@ static curl_version_info_data version_info = {
|
|||
#ifdef HAVE_LIBZ
|
||||
| CURL_VERSION_LIBZ
|
||||
#endif
|
||||
#ifdef GSSAPI
|
||||
#ifdef HAVE_GSSAPI
|
||||
| CURL_VERSION_GSSNEGOTIATE
|
||||
#endif
|
||||
#ifdef CURLDEBUG
|
||||
|
|
@ -185,6 +185,9 @@ static curl_version_info_data version_info = {
|
|||
#endif
|
||||
#ifdef USE_ARES
|
||||
| CURL_VERSION_ASYNCHDNS
|
||||
#endif
|
||||
#ifdef HAVE_SPNEGO
|
||||
| CURL_VERSION_SPNEGO
|
||||
#endif
|
||||
,
|
||||
NULL, /* ssl_version */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue