smb: Disable SMB when 64-bit integers are not supported

This fixes compilation issues with compilers that don't support 64-bit
integers through long long or __int64.
This commit is contained in:
Steve Holme
2014-12-12 22:08:03 +00:00
parent 82fdb87b27
commit 24b30d259c
4 changed files with 8 additions and 4 deletions

View File

@@ -22,7 +22,8 @@
#include "curl_setup.h"
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM)
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
(CURL_SIZEOF_CURL_OFF_T > 4)
#if !defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO)
@@ -902,4 +903,4 @@ static CURLcode smb_parse_url_path(struct connectdata *conn)
#endif /* !USE_WINDOWS_SSPI || USE_WIN32_CRYPTO */
#endif /* CURL_DISABLE_SMB && USE_NTLM */
#endif /* CURL_DISABLE_SMB && USE_NTLM && CURL_SIZEOF_CURL_OFF_T > 4 */