Skip to content

Commit

Permalink
replace: Fix checking for config.h #define in gssapi.h
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Gary Lockyer <[email protected]>
cryptomilk authored and GaryWL committed Dec 16, 2018

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent b0cabfd commit dd048f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/replace/system/gssapi.h
Original file line number Diff line number Diff line change
@@ -31,11 +31,11 @@

#ifdef HAVE_GSSAPI_GSSAPI_EXT_H
#include <gssapi/gssapi_ext.h>
#elif HAVE_GSSAPI_GSSAPI_H
#elif defined(HAVE_GSSAPI_GSSAPI_H)
#include <gssapi/gssapi.h>
#elif HAVE_GSSAPI_GSSAPI_GENERIC_H
#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
#include <gssapi/gssapi_generic.h>
#elif HAVE_GSSAPI_H
#elif defined(HAVE_GSSAPI_H)
#include <gssapi.h>
#endif

@@ -45,7 +45,7 @@

#ifdef HAVE_GSSAPI_GSSAPI_SPNEGO_H
#include <gssapi/gssapi_spnego.h>
#elif HAVE_GSSAPI_SPNEGO_H
#elif defined(HAVE_GSSAPI_SPNEGO_H)
#include <gssapi_spnego.h>
#endif

0 comments on commit dd048f9

Please sign in to comment.