Skip to content
Snippets Groups Projects
Commit 884df3a5 authored by Steve Holme's avatar Steve Holme
Browse files

sasl_gssapi: Enable USE_KERBEROS5 for GSS-API based builds

parent 86b88948
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment