aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/dig
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2007-06-02 23:19:58 +0000
committerDoug Barton <dougb@FreeBSD.org>2007-06-02 23:19:58 +0000
commitd6ceb6db22c215fe821c9a0e85205954d153c217 (patch)
tree1ad7fe01d625e91cc274254cd136ada12496158a /usr.bin/dig
parent147c1298d85e41327aa9c6463b5319a271ff197a (diff)
Update bmake glue for the BIND 9.4.1 import.
This includes a return to building with threads, since one of the major focuses of the 9.4.x branch is to improve thread performance.
Notes
Notes: svn path=/head/; revision=170221
Diffstat (limited to 'usr.bin/dig')
-rw-r--r--usr.bin/dig/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/dig/Makefile b/usr.bin/dig/Makefile
index 0f19499f7249..4ac3e64b246f 100644
--- a/usr.bin/dig/Makefile
+++ b/usr.bin/dig/Makefile
@@ -13,8 +13,9 @@ PROG= dig
SRCS+= dig.c dighost.c
CFLAGS+= -I${SRCDIR}/include
+CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATOMIC_ARCH}/include
-DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD}
-LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD}
+DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
+LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
.include <bsd.prog.mk>