diff options
author | John Kohl <jtkohl@mit.edu> | 1990-01-17 11:03:16 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1990-01-17 11:03:16 +0000 |
commit | 70c2ee2f9922407792a45816f7d56d751cfa71b8 (patch) | |
tree | 4f51d19d9239503f5c4044cf6b7c71316e3ed41c /src/include | |
parent | 2976eea03edc7f3fc77c1f5aed914d9c4dcdb9ab (diff) | |
download | krb5-70c2ee2f9922407792a45816f7d56d751cfa71b8.tar.gz krb5-70c2ee2f9922407792a45816f7d56d751cfa71b8.tar.xz krb5-70c2ee2f9922407792a45816f7d56d751cfa71b8.zip |
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@98 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-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__ */ |