diff options
author | des <des@FreeBSD.org> | 2004-09-21 19:01:48 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-09-21 19:01:48 +0000 |
commit | a4c12f80064a9009ad12611adb31c37c72ee9eca (patch) | |
tree | ee65309033b0451fbda3772ae513fcd9b3dec47a /usr.bin/nsupdate | |
parent | 168f1a937f7ee05bd260816130e8771ebf99ba51 (diff) | |
download | FreeBSD-src-a4c12f80064a9009ad12611adb31c37c72ee9eca.zip FreeBSD-src-a4c12f80064a9009ad12611adb31c37c72ee9eca.tar.gz |
Switch from BIND 8 to BIND 9.
Submitted by: (in part) dougb@, trhodes@
Reviewed by: dougb@, trhodes@, re@
MFC after: 5 days
Diffstat (limited to 'usr.bin/nsupdate')
-rw-r--r-- | usr.bin/nsupdate/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.bin/nsupdate/Makefile b/usr.bin/nsupdate/Makefile new file mode 100644 index 0000000..9073c12 --- /dev/null +++ b/usr.bin/nsupdate/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +BIND_DIR= ${.CURDIR}/../../contrib/bind9 +LIB_BIND_DIR= ${.CURDIR}/../../lib/bind +SRCDIR= ${BIND_DIR}/bin/nsupdate + +.include "${LIB_BIND_DIR}/config.mk" + +PROG= nsupdate + +.PATH: ${SRCDIR} +SRCS+= nsupdate.c + +CFLAGS+= -I${SRCDIR}/include + +DPADD+= ${BIND_DPADD} +LDADD+= ${BIND_LDADD} + +MAN= nsupdate.8 + +.include <bsd.prog.mk> |