From 32e8c69f65c19347d88a683bf570477cea5e246e Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Fri, 3 Mar 1995 07:27:20 +0000 Subject: Make include files begin to work on the Macintosh * k5-int.h: Remove krb5/ from #includes. Rearrange #includes so that time_t is defined before kdb.h is included. * krb5.h: Include k5-config.h first, so its #define's can control the rest of the file. If is not present, define u_long, etc, manually. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5070 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/krb5.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/include/krb5.h') diff --git a/src/include/krb5.h b/src/include/krb5.h index 4452f9556..865140201 100644 --- a/src/include/krb5.h +++ b/src/include/krb5.h @@ -27,13 +27,21 @@ #ifndef KRB5_GENERAL__ #define KRB5_GENERAL__ +#include "k5-config.h" + #ifndef KRB5_SYSTYPES__ #define KRB5_SYSTYPES__ + +#ifdef HAVE_SYS_TYPES_H #include +#else /* HAVE_SYS_TYPES_H */ +typedef unsigned long u_long; +typedef unsigned int u_int; +typedef unsigned short u_short; +typedef unsigned char u_char; +#endif /* HAVE_SYS_TYPES_H */ #endif /* KRB5_SYSTYPES__ */ -#include "k5-config.h" - #include "base-defs.h" #include "hostaddr.h" -- cgit