Odds and ends left over from BIND and unnoticed because they didn't

affect 'make universe'.

Approved by:	re (gjb)
This commit is contained in:
Dag-Erling Smørgrav 2013-10-01 07:19:23 +00:00
parent 1500f7ac99
commit e9f6fa6e61
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255963
3 changed files with 1 additions and 41 deletions

View File

@ -2,20 +2,12 @@
.include <bsd.own.mk>
FILES= ${_BIND.chroot.dist} \
${_BIND.include.dist} \
${_BSD.debug.dist} \
BSD.include.dist \
FILES= BSD.include.dist \
BSD.root.dist \
${_BSD.sendmail.dist} \
BSD.usr.dist \
BSD.var.dist
.if ${MK_BIND} != "no"
_BIND.chroot.dist= BIND.chroot.dist
.if ${MK_BIND_LIBS} != "no"
_BIND.include.dist= BIND.include.dist
.endif
.endif
.if ${MK_DEBUG_FILES} != "no"
_BSD.debug.dist= BSD.debug.dist

View File

@ -24,10 +24,6 @@ FILES= 100.clean-disks \
FILES+= 310.accounting
.endif
.if ${MK_BIND_NAMED} != "no"
FILES+= 470.status-named
.endif
.if ${MK_CALENDAR} != "no"
FILES+= 300.calendar
.endif

View File

@ -1,28 +0,0 @@
# $FreeBSD$
BIND_DIR= ${.CURDIR}/../../contrib/bind9
LIB_BIND_REL= ../../lib/bind
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
SRCDIR= ${BIND_DIR}/bin/dig
.include "${LIB_BIND_DIR}/config.mk"
PROG= dig
.PATH: ${SRCDIR}
SRCS+= dig.c dighost.c
CFLAGS+= -I${SRCDIR}/include
CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATOMIC_ARCH}/include
.if ${MK_BIND_IDN} == "yes"
CFLAGS+= -DWITH_IDN -I/usr/local/include
CFLAGS+= -L/usr/local/lib -lidnkit -R/usr/local/lib -liconv
.endif
WARNS?= 0
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
.include <bsd.prog.mk>