1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r6879: Another attempt at including the 'right' kerberos headers on

dual-install systems.

Andrew Bartlett
(This used to be commit efc24f1a45)
This commit is contained in:
Andrew Bartlett 2005-05-18 11:50:09 +00:00 committed by Gerald (Jerry) Carter
parent e87dd1091a
commit 2a01014f8f

View File

@ -28,17 +28,20 @@
#endif
#if defined(HAVE_GSSAPI_H)
#include <gssapi.h>
# include <gssapi.h>
# ifdef HAVE_GSSAPI_KRB5_H
# include <gssapi_krb5.h>
# endif
#elif defined(HAVE_GSSAPI_GSSAPI_H)
#include <gssapi/gssapi.h>
# include <gssapi/gssapi.h>
# if defined(HAVE_GSSAPI_GSSAPI_KRB5_H)
# include <gssapi/gssapi_krb5.h>
# endif
#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
#include <gssapi/gssapi_generic.h>
#endif
#ifdef HAVE_GSSAPI_KRB5_H
#include <gssapi_krb5.h>
#elif defined(HAVE_GSSAPI_GSSAPI_KRB5_H)
#include <gssapi/gssapi_krb5.h>
# include <gssapi/gssapi_generic.h>
# if defined(HAVE_GSSAPI_GSSAPI_KRB5_H)
# include <gssapi/gssapi_krb5.h>
# endif
#endif
#ifdef HAVE_COM_ERR_H