mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:23:38 +03:00
smb: Build with SSPI enabled
Build SMB/CIFS protocol support when SSPI is enabled.
This commit is contained in:
parent
eb88d778e7
commit
526603ff05
5 changed files with 9 additions and 12 deletions
|
|
@ -22,8 +22,7 @@
|
|||
|
||||
#include "curl_setup.h"
|
||||
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
||||
!defined(USE_WINDOWS_SSPI)
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM)
|
||||
|
||||
#define BUILDING_CURL_SMB_C
|
||||
|
||||
|
|
@ -895,4 +894,4 @@ static CURLcode smb_parse_url_path(struct connectdata *conn)
|
|||
return CURLE_OK;
|
||||
}
|
||||
|
||||
#endif /* CURL_DISABLE_SMB && USE_NTLM && USE_WINDOWS_SSPI */
|
||||
#endif /* CURL_DISABLE_SMB && USE_NTLM */
|
||||
|
|
|
|||
|
|
@ -256,12 +256,11 @@ struct smb_tree_disconnect {
|
|||
|
||||
#endif /* BUILDING_CURL_SMB_C */
|
||||
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
||||
!defined(USE_WINDOWS_SSPI)
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM)
|
||||
|
||||
extern const struct Curl_handler Curl_handler_smb;
|
||||
extern const struct Curl_handler Curl_handler_smbs;
|
||||
|
||||
#endif /* CURL_DISABLE_SMB && USE_NTLM && USE_WINDOWS_SSPI */
|
||||
#endif /* CURL_DISABLE_SMB && USE_NTLM */
|
||||
|
||||
#endif /* HEADER_CURL_SMB_H */
|
||||
|
|
|
|||
|
|
@ -220,8 +220,7 @@ static const struct Curl_handler * const protocols[] = {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
||||
!defined(USE_WINDOWS_SSPI)
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM)
|
||||
&Curl_handler_smb,
|
||||
#ifdef USE_SSL
|
||||
&Curl_handler_smbs,
|
||||
|
|
|
|||
|
|
@ -216,8 +216,7 @@ static const char * const protocols[] = {
|
|||
#ifdef USE_LIBSSH2
|
||||
"sftp",
|
||||
#endif
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
||||
!defined(USE_WINDOWS_SSPI)
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM)
|
||||
"smb",
|
||||
# ifdef USE_SSL
|
||||
"smbs",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue