Module Name: src
Committed By: pooka
Date: Sun Nov 7 19:47:19 UTC 2010
Modified Files:
src/sys/rump/net/lib/libnet: Makefile
Log Message:
support compat ioctl's (OOOOOlalaSIOC stuff)
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/rump/net/lib/libnet/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/net/lib/libnet/Makefile
diff -u src/sys/rump/net/lib/libnet/Makefile:1.7 src/sys/rump/net/lib/libnet/Makefile:1.8
--- src/sys/rump/net/lib/libnet/Makefile:1.7 Sat Dec 12 17:10:19 2009
+++ src/sys/rump/net/lib/libnet/Makefile Sun Nov 7 19:47:18 2010
@@ -1,16 +1,18 @@
-# $NetBSD: Makefile,v 1.7 2009/12/12 17:10:19 pooka Exp $
+# $NetBSD: Makefile,v 1.8 2010/11/07 19:47:18 pooka Exp $
#
-.PATH: ${.CURDIR}/../../../../net
+.PATH: ${.CURDIR}/../../../../net ${.CURDIR}/../../../../compat/common
LIB= rumpnet_net
# iffy stuff
SRCS= if.c if_loop.c route.c rtsock.c raw_usrreq.c raw_cb.c \
if_media.c link_proto.c net_stats.c if_ethersubr.c
+SRCS+= if_43.c uipc_syscalls_50.c
SRCS+= component.c
CPPFLAGS+= -I${.CURDIR}/opt -I${.CURDIR}/../libnetinet/opt
+CPPFLAGS+= -DCOMPAT_OIFREQ -DCOMPAT_OIFDATA
.include "${.CURDIR}/../libnetinet/Makefile.inc"