changeset 569:0d98f58e80cb

Fix for compatability with Linux compat package.
author gthomas
date Tue, 04 Feb 2003 22:55:26 +0000
parents eb5d4fbc238d
children a7947d436e85
files packages/net/bsd_tcpip/current/ChangeLog packages/net/bsd_tcpip/current/include/sys/bsdtypes.h
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/packages/net/bsd_tcpip/current/ChangeLog
+++ b/packages/net/bsd_tcpip/current/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-04  Gary Thomas  <gary@mlbassoc.com>
+
+	* 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  <gthomas@ecoscentric.com>
 
 	* src/ecos/support.c (show_network_tables): New function to
--- 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 <cyg/hal/hal_arch.h>
 
 #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;