From 72252c5d47a0a857dbbb57dbaafcddfd692c6254 Mon Sep 17 00:00:00 2001 From: ceri Date: Sun, 10 Jun 2007 06:18:04 +0000 Subject: Backout mess mistakenly committed with manpage update. --- usr.bin/netstat/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'usr.bin/netstat') diff --git a/usr.bin/netstat/Makefile b/usr.bin/netstat/Makefile index 205ce21..19e4c38 100644 --- a/usr.bin/netstat/Makefile +++ b/usr.bin/netstat/Makefile @@ -13,11 +13,21 @@ CFLAGS+=-DIPSEC CFLAGS+=-DFAST_IPSEC CFLAGS+=-DSCTP +.if ${MK_INET6_SUPPORT} != "no" +SRCS+= inet6.c +CFLAGS+=-DINET6 +.endif BINGRP= kmem BINMODE=2555 DPADD= ${LIBKVM} ${LIBMEMSTAT} ${LIBNETGRAPH} ${LIBUTIL} LDADD= -lkvm -lmemstat -lnetgraph -lutil +.if ${MK_IPX_SUPPORT} != "no" +SRCS+= ipx.c +DPADD+= ${LIBIPX} +LDADD+= -lipx +CFLAGS+=-DIPX +.endif .include -- cgit v1.1