mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:03:31 +03:00
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:
parent
82fdb87b27
commit
24b30d259c
4 changed files with 8 additions and 4 deletions
|
|
@ -217,6 +217,7 @@ static const char * const protocols[] = {
|
|||
"sftp",
|
||||
#endif
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
||||
(CURL_SIZEOF_CURL_OFF_T > 4) && \
|
||||
(!defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO))
|
||||
"smb",
|
||||
# ifdef USE_SSL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue