diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-12-07 20:44:57 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-12-07 20:47:54 +0000 |
commit | dcd484a23859a3c7107f81ca9f54fed9d81eb2ca (patch) | |
tree | e0d9244864405c958ff5ba102d18ac6041153644 /lib/version.c | |
parent | 090232ea198c293d91d587098c2685c24d84c471 (diff) | |
download | curl-dcd484a23859a3c7107f81ca9f54fed9d81eb2ca.tar.gz |
smb: Fixed Windows autoconf builds following commit eb88d778e7
As Windows based autoconf builds don't yet define USE_WIN32_CRYPTO
either explicitly through --enable-win32-cypto or automatically on
_WIN32 based platforms, subsequent builds broke with the following
error message:
"Can't compile NTLM support without a crypto library."
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index 4b583e8e5..83143f402 100644 --- a/lib/version.c +++ b/lib/version.c @@ -216,7 +216,8 @@ static const char * const protocols[] = { #ifdef USE_LIBSSH2 "sftp", #endif -#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) +#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \ + (!defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO)) "smb", # ifdef USE_SSL "smbs", |