From 4d75af14e3f703ec0cfeeb4ffb998619449c859a Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 3 Sep 2015 10:19:07 -0400 Subject: Allow building without NTLMSSP support If gssapi/gssapi_ntlmssp.h is not available simply disable NTLMSSP. Coauthored Signed-off-by: Dennis Schridde Signed-off-by: Simo Sorce Closes #52 Closes #53 Closes #54 --- src/mod_auth_gssapi.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/mod_auth_gssapi.h') diff --git a/src/mod_auth_gssapi.h b/src/mod_auth_gssapi.h index b08c38a..d73036b 100644 --- a/src/mod_auth_gssapi.h +++ b/src/mod_auth_gssapi.h @@ -3,10 +3,6 @@ #include #include #include -#include -#include -#include -#include #define APR_WANT_STRFUNC #include "apr_want.h" @@ -31,6 +27,13 @@ #undef PACKAGE_VERSION #include "config.h" +#include +#include +#include +#ifdef HAVE_GSSAPI_GSSAPI_NTLMSSP_H +# include +#endif + #include "crypto.h" #include "sessions.h" -- cgit