From 41e930f4803c0d151b08a076f014e9458115444e Mon Sep 17 00:00:00 2001 From: des Date: Wed, 22 Sep 2004 12:13:58 +0000 Subject: Clean up and comment config.mk. Centralize more stuff. Bitch if POSIX threads libraries are not available. Add crypto support if the crypto libraries are available. Build dnssec-{keygen,signzone} if crypto is available. Submitted by: (in part) dougb@ --- usr.bin/nslookup/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/nslookup') diff --git a/usr.bin/nslookup/Makefile b/usr.bin/nslookup/Makefile index a7bf65e..e59c714 100644 --- a/usr.bin/nslookup/Makefile +++ b/usr.bin/nslookup/Makefile @@ -13,8 +13,8 @@ SRCS+= dighost.c nslookup.c CFLAGS+= -I${SRCDIR}/include -DPADD+= ${BIND_DPADD} -LDADD+= ${BIND_LDADD} +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} MAN= nslookup.1 -- cgit v1.1