]> git.sur5r.net Git - openldap/blob - include/ac/krb.h
Add RCS Id to "generic" headers (experimental)
[openldap] / include / ac / krb.h
1 /* Generic krb.h */
2 /* $Id$ */
3 /*
4  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _AC_KRB_H
14 #define _AC_KRB_H
15
16 #if defined( HAVE_KERBEROS )
17
18 #if defined( HAVE_KERBEROSIV_KRB_H )
19 #include <kerberosIV/krb.h>
20 #elif defined( HAVE_KRB_H )
21 #include <krb.h>
22 #endif
23
24 #if defined( HAVE_KERBEROSIV_DES_H )
25 #include <kerberosIV/des.h>
26 #elif defined( HAVE_DES_H )
27 #include <des.h>
28 #endif
29
30 #endif /* HAVE_KERBEROS */
31 #endif /* _AC_KRB_H */