]> git.sur5r.net Git - openldap/blob - include/ac/krb.h
Kill off #elif in ldap/include/. K&R does not support it.
[openldap] / include / ac / krb.h
1 /* Generic krb.h */
2
3 #ifndef _AC_KRB_H
4 #define _AC_KRB_H
5
6 #if defined( HAVE_KERBEROS )
7
8 #if defined( HAVE_KERBEROSIV_KRB_H )
9 # include <kerberosIV/krb.h>
10 #else
11 # if defined( HAVE_KRB_H )
12 #  include <krb.h>
13 # endif
14 #endif
15
16 #if defined( HAVE_KERBEROSIV_DES_H )
17 # include <kerberosIV/des.h>
18 #else
19 # if defined( HAVE_DES_H )
20 #  include <des.h>
21 # endif
22 #endif
23
24 #endif /* HAVE_KERBEROS */
25 #endif /* _AC_KRB_H */