mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
sasl_gssapi: Enable USE_KERBEROS5 for GSS-API based builds
This commit is contained in:
parent
86b889485d
commit
884df3a51f
@ -24,7 +24,7 @@
|
||||
|
||||
#include "curl_setup.h"
|
||||
|
||||
#if defined(HAVE_GSSAPI) && defined(USE_KRB5)
|
||||
#if defined(HAVE_GSSAPI) && defined(USE_KERBEROS5)
|
||||
|
||||
#include <curl/curl.h>
|
||||
|
||||
@ -116,4 +116,4 @@ void Curl_sasl_gssapi_cleanup(struct kerberos5data *krb5)
|
||||
(void) krb5;
|
||||
}
|
||||
|
||||
#endif /* HAVE_GSSAPI && USE_KRB5 */
|
||||
#endif /* HAVE_GSSAPI && USE_KERBEROS5 */
|
||||
|
@ -615,7 +615,8 @@ int netware_init(void);
|
||||
#endif
|
||||
|
||||
/* Single point where USE_KERBEROS5 definition might be defined */
|
||||
#if !defined(CURL_DISABLE_CRYPTO_AUTH) && defined(USE_WINDOWS_SSPI)
|
||||
#if !defined(CURL_DISABLE_CRYPTO_AUTH) && \
|
||||
(defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
|
||||
#define USE_KERBEROS5
|
||||
#endif
|
||||
|
||||
|
@ -265,7 +265,6 @@ static curl_version_info_data version_info = {
|
||||
| CURL_VERSION_KERBEROS5
|
||||
#endif
|
||||
#ifdef HAVE_GSSAPI
|
||||
| CURL_VERSION_KERBEROS5 /* Remove when SASL Kerberos V5 support added */
|
||||
| CURL_VERSION_GSSAPI
|
||||
#endif
|
||||
#ifdef USE_WINDOWS_SSPI
|
||||
|
Loading…
Reference in New Issue
Block a user