diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
commit | 11d9d041cf4420b02b7f18cece6478888e386b2e (patch) | |
tree | e64094c8992b4e9318db4a40d3a0d5f30c70dced /lib/bind/dns | |
parent | 4dcf2bbbff62cb89b32ac3bbee796a485bb090e8 (diff) |
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@
Notes
Notes:
svn path=/head/; revision=135569
Diffstat (limited to 'lib/bind/dns')
-rw-r--r-- | lib/bind/dns/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bind/dns/Makefile b/lib/bind/dns/Makefile index f8cc4acaba49..3a3d05655930 100644 --- a/lib/bind/dns/Makefile +++ b/lib/bind/dns/Makefile @@ -36,8 +36,8 @@ SRCS+= acl.c adb.c byaddr.c \ CFLAGS+= -I${SRCDIR}/sec/dst/include -I${SRCDIR}/include -I${SRCDIR} CFLAGS+= -I${.CURDIR} -I${.CURDIR}/.. -DPADD= ${LIBPTHREAD} -LDADD= -lpthread +DPADD= ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD= ${CRYPTO_LDADD} ${PTHREAD_LDADD} DNSINCS= ${SRCDIR}/include/dns/acl.h \ ${SRCDIR}/include/dns/adb.h \ |