# HG changeset patch # User gthomas # Date 1044399326 0 # Node ID 0d98f58e80cbf87673d72fdf888d92bc7f660d99 # Parent eb5d4fbc238da098c42b48b6d2902d2c641819b1 Fix for compatability with Linux compat package. diff --git a/packages/net/bsd_tcpip/current/ChangeLog b/packages/net/bsd_tcpip/current/ChangeLog --- a/packages/net/bsd_tcpip/current/ChangeLog +++ b/packages/net/bsd_tcpip/current/ChangeLog @@ -1,3 +1,9 @@ +2003-02-04 Gary Thomas + + * include/sys/bsdtypes.h: Workaround when building with new + Linux compatability package (which over-defines some symols + defined in this module). + 2002-12-03 Gary Thomas * src/ecos/support.c (show_network_tables): New function to diff --git a/packages/net/bsd_tcpip/current/include/sys/bsdtypes.h b/packages/net/bsd_tcpip/current/include/sys/bsdtypes.h --- a/packages/net/bsd_tcpip/current/include/sys/bsdtypes.h +++ b/packages/net/bsd_tcpip/current/include/sys/bsdtypes.h @@ -26,6 +26,9 @@ #include #define __BIT_TYPES_DEFINED__ +#undef uint8_t +#undef uint16_t +#undef uint32_t typedef __signed char int8_t; typedef unsigned char u_int8_t; typedef unsigned char uint8_t;