diff options
author | John Gilmore <gnu@toad.com> | 1995-03-18 03:15:52 +0000 |
---|---|---|
committer | John Gilmore <gnu@toad.com> | 1995-03-18 03:15:52 +0000 |
commit | e69e78efc34049fdae63021e3ebddeb24f46a286 (patch) | |
tree | 24b9a5df422f806f076dc4689618386e6875aa66 /src | |
parent | 013d8756ccc5074dcb6ed28ffec55e2f9776bbb9 (diff) | |
download | krb5-e69e78efc34049fdae63021e3ebddeb24f46a286.tar.gz krb5-e69e78efc34049fdae63021e3ebddeb24f46a286.tar.xz krb5-e69e78efc34049fdae63021e3ebddeb24f46a286.zip |
* krb5.h: Move <sys/types> and u_long (etc) code to krb5/k5-config.h.
It is needed there when NEED_SOCKETS is defined.
* Makefile.in (all-mac, clean-mac): Add.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5156 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/include/ChangeLog | 6 | ||||
-rw-r--r-- | src/include/Makefile.in | 2 | ||||
-rw-r--r-- | src/include/krb5.h | 13 |
3 files changed, 8 insertions, 13 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 58572cf5e..973e71810 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,9 @@ +Fri Mar 17 19:10:41 1995 John Gilmore (gnu at toad.com) + + * krb5.h: Move <sys/types> and u_long (etc) code to krb5/k5-config.h. + It is needed there when NEED_SOCKETS is defined. + * Makefile.in (all-mac, clean-mac): Add. + Wed Mar 15 20:27:57 1995 Keith Vetter (keithv@fusion.com) * Makefile.in: added recursion into krb5 for the PC. diff --git a/src/include/Makefile.in b/src/include/Makefile.in index 85a4cf425..09e7c8961 100644 --- a/src/include/Makefile.in +++ b/src/include/Makefile.in @@ -4,6 +4,7 @@ all:: all-$(WHAT) all-unix:: +all-mac:: all-windows:: copy $(BUILDTOP)\util\et\com_err.h . @@ -15,6 +16,7 @@ all-windows:: clean:: clean-$(WHAT) clean-unix:: +clean-mac:: clean-windows:: $(RM) com_err.h diff --git a/src/include/krb5.h b/src/include/krb5.h index 04fa06d34..64ef7da22 100644 --- a/src/include/krb5.h +++ b/src/include/krb5.h @@ -29,19 +29,6 @@ #include "k5-config.h" -#ifndef KRB5_SYSTYPES__ -#define KRB5_SYSTYPES__ - -#ifdef HAVE_SYS_TYPES_H -#include <sys/types.h> -#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 "base-defs.h" #include "hostaddr.h" |