2004-07-25 Joel Sherrill <joel@OARcorp.com>

* Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
	* network/ne2000.c: Add include of <sys/errno.h>.
This commit is contained in:
Joel Sherrill
2004-07-25 14:22:46 +00:00
parent 0e5db09193
commit e9924f9103
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2004-07-25 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
* network/ne2000.c: Add include of <sys/errno.h>.
2004-04-23 Ralf Corsepius <ralf_corsepius@rtems.org>
PR 610/bsps

View File

@@ -101,8 +101,7 @@ include_HEADERS += include/wd80x3.h
# dec21140 is supported via libchip
# FIXME: Do we really need these flags?
network_CPPFLAGS = -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS \
-DDIAGNOSTIC -DBOOTP_COMPAT
network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
EXTRA_PROGRAMS += network.rel
CLEANFILES += network.rel
network_rel_SOURCES = network/ne2000.c network/wd80x3.h

View File

@@ -42,6 +42,7 @@
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/errno.h>
#include <net/if.h>