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