diff options
author | des <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
commit | 41e930f4803c0d151b08a076f014e9458115444e (patch) | |
tree | e64094c8992b4e9318db4a40d3a0d5f30c70dced /usr.sbin/named | |
parent | f34045dc6a6b7c24616c69b5ba53967c243f0910 (diff) | |
download | FreeBSD-src-41e930f4803c0d151b08a076f014e9458115444e.zip FreeBSD-src-41e930f4803c0d151b08a076f014e9458115444e.tar.gz |
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@
Diffstat (limited to 'usr.sbin/named')
-rw-r--r-- | usr.sbin/named/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/named/Makefile b/usr.sbin/named/Makefile index 9976151..12c7c8f 100644 --- a/usr.sbin/named/Makefile +++ b/usr.sbin/named/Makefile @@ -23,8 +23,8 @@ SRCS+= aclconf.c builtin.c client.c config.c control.c \ CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include -I${LIB_BIND_DIR} -DPADD+= ${BIND_DPADD} -LDADD+= ${BIND_LDADD} +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} MAN= named.8 lwresd.8 named.conf.5 |