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/ipnat | |
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/ipnat')
-rw-r--r-- | sbin/ipnat/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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> |