diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-10 23:15:29 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-10 23:15:29 +0000 |
commit | d1d35ba85fe6f8a9e6a86d2a6c60109cf90edd6c (patch) | |
tree | c06d860dc1025900ec91c85dd09e9989f5aeab4b /lib/version.c | |
parent | 2ab2e7675c2089b44210d19e92e07fbd5ca9084b (diff) | |
download | curl-d1d35ba85fe6f8a9e6a86d2a6c60109cf90edd6c.tar.gz |
Christopher R. Palmer made it possible to build libcurl with the
USE_WINDOWS_SSPI on Windows, and then libcurl will be built to use the native
way to do NTLM. SSPI also allows libcurl to pass on the current user and its
password in the request.
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index ebe0b5ba2..e82eacf59 100644 --- a/lib/version.c +++ b/lib/version.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -194,6 +194,8 @@ static curl_version_info_data version_info = { #endif #ifdef USE_SSLEAY | CURL_VERSION_SSL +#endif +#if defined(USE_SSLEAY) || defined(USE_WINDOWS_SSPI) | CURL_VERSION_NTLM /* since this requires OpenSSL */ #endif #ifdef HAVE_LIBZ |