diff options
author | darrenr <darrenr@FreeBSD.org> | 2002-03-19 15:07:30 +0000 |
---|---|---|
committer | darrenr <darrenr@FreeBSD.org> | 2002-03-19 15:07:30 +0000 |
commit | a0cb50d4e280b5ef66232bac470ae4fa834a39a6 (patch) | |
tree | 46066f26014505a388a8281bafd705a162eda398 /sbin | |
parent | e8d1f239b7a08275e9ebbba763fefd2323ee2c70 (diff) | |
download | FreeBSD-src-a0cb50d4e280b5ef66232bac470ae4fa834a39a6.zip FreeBSD-src-a0cb50d4e280b5ef66232bac470ae4fa834a39a6.tar.gz |
both ipnat and ipfstat now use libkvm rather than their own home-rolled
kmem accessors, allowing them to be used with crash dumps as well as live
systems, now.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ipfstat/Makefile | 4 | ||||
-rw-r--r-- | sbin/ipnat/Makefile | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sbin/ipfstat/Makefile b/sbin/ipfstat/Makefile index 3d1731f..6089665 100644 --- a/sbin/ipfstat/Makefile +++ b/sbin/ipfstat/Makefile @@ -11,8 +11,8 @@ CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter CFLAGS+=-I${.CURDIR}/../../contrib/ipfilter WARNS= 0 -DPADD= ${LIBNCURSES} -LDADD= -lncurses +DPADD= ${LIBNCURSES} ${LIBKVM} +LDADD= -lncurses -lkvm MAINTAINER= guido@freebsd.org diff --git a/sbin/ipnat/Makefile b/sbin/ipnat/Makefile index dc386ac..7c6c947 100644 --- a/sbin/ipnat/Makefile +++ b/sbin/ipnat/Makefile @@ -11,6 +11,9 @@ CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter/netinet CFLAGS+=-I${.CURDIR}/../../contrib/ipfilter WARNS= 0 +DPADD= ${LIBKVM} +LDADD= -lkvm + MAINTAINER= guido@freebsd.org .include <bsd.prog.mk> |