diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/krb5/stock/config.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/include/krb5/stock/config.h b/src/include/krb5/stock/config.h new file mode 100644 index 000000000..ccf35c261 --- /dev/null +++ b/src/include/krb5/stock/config.h @@ -0,0 +1,28 @@ +/* + * $Source$ + * $Author$ + * $Id$ + * + * Copyright 1990 by the Massachusetts Institute of Technology. + * + * For copying and distribution information, please see the file + * <krb5/mit-copyright.h>. + * + * Configuration file for Kerberos V5 library. + * This config file works for IBM RT/PC running AOS 4.3 and VAX running 4.3BSD + */ + +#include <krb5/copyright.h> + +#ifndef __KRB5_CONFIG__ +#define __KRB5_CONFIG__ + +#if defined(vax) || defined(__vax__) +#define BITS32 +#endif + +#if defined(ibm032) || defined(__ibm032__) +#define BITS32 +#endif + +#endif /* __KRB5_CONFIG__ */ |