From fd0add298f3a26a1b1fb85c0fe81c511f909a939 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 1 May 2005 08:46:29 +0000 Subject: * ytypes.h: Include autoconf.h. Include sys/types.h only if it exists git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17210 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/yarrow/ChangeLog | 5 +++++ src/lib/crypto/yarrow/ytypes.h | 3 +++ 2 files changed, 8 insertions(+) (limited to 'src/lib/crypto/yarrow') diff --git a/src/lib/crypto/yarrow/ChangeLog b/src/lib/crypto/yarrow/ChangeLog index 6e9d02804c..30eae99edb 100644 --- a/src/lib/crypto/yarrow/ChangeLog +++ b/src/lib/crypto/yarrow/ChangeLog @@ -1,3 +1,8 @@ +2005-05-01 Ken Raeburn + + * ytypes.h: Include autoconf.h. Include sys/types.h only if it + exists. + 2005-04-28 Ken Raeburn * yarrow.c: Delete old macintosh support. diff --git a/src/lib/crypto/yarrow/ytypes.h b/src/lib/crypto/yarrow/ytypes.h index d79bb7ed96..b7a30c76d0 100644 --- a/src/lib/crypto/yarrow/ytypes.h +++ b/src/lib/crypto/yarrow/ytypes.h @@ -5,7 +5,10 @@ #include #include +#include "krb5/autoconf.h" +#ifdef HAVE_SYS_TYPES_H #include +#endif #define byte unsigned char -- cgit