From c01c000b1631591a2b7d78450fee5bf21990e993 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 28 Jul 2011 14:03:07 -0700 Subject: [PATCH] Avoid a "shadows global declaration" warning on old MIT Kerberos Defining NCOMPAT eliminates the backwards-compatibility macros that are the source of the problem and which we don't need, anyway. --- lib/http_negotiate.c | 1 + lib/krb5.c | 1 + lib/socks_gssapi.c | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c index d7bc67955..695ab167e 100644 --- a/lib/http_negotiate.c +++ b/lib/http_negotiate.c @@ -25,6 +25,7 @@ #ifdef HAVE_GSSAPI #ifdef HAVE_OLD_GSSMIT #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name +#define NCOMPAT 1 #endif #ifndef CURL_DISABLE_HTTP diff --git a/lib/krb5.c b/lib/krb5.c index c29f95be0..1f7038fd9 100644 --- a/lib/krb5.c +++ b/lib/krb5.c @@ -39,6 +39,7 @@ #ifdef HAVE_OLD_GSSMIT #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name +#define NCOMPAT 1 #endif #ifdef HAVE_NETDB_H diff --git a/lib/socks_gssapi.c b/lib/socks_gssapi.c index de136b037..74b074ee1 100644 --- a/lib/socks_gssapi.c +++ b/lib/socks_gssapi.c @@ -27,6 +27,7 @@ #ifdef HAVE_GSSAPI #ifdef HAVE_OLD_GSSMIT #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name +#define NCOMPAT 1 #endif #ifndef gss_nt_service_name #define gss_nt_service_name GSS_C_NT_HOSTBASED_SERVICE