diff options
author | dougb <dougb@FreeBSD.org> | 2007-06-02 23:19:58 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2007-06-02 23:19:58 +0000 |
commit | 6828e8e3e514fe430f1754fada15a756032399a9 (patch) | |
tree | 1ad7fe01d625e91cc274254cd136ada12496158a /usr.sbin/rndc | |
parent | adb4c6dae5410feb32b67abbcd13f4e4647c9f83 (diff) | |
download | FreeBSD-src-6828e8e3e514fe430f1754fada15a756032399a9.zip FreeBSD-src-6828e8e3e514fe430f1754fada15a756032399a9.tar.gz |
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.
Diffstat (limited to 'usr.sbin/rndc')
-rw-r--r-- | usr.sbin/rndc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rndc/Makefile b/usr.sbin/rndc/Makefile index 70c5d6d..2ca7697 100644 --- a/usr.sbin/rndc/Makefile +++ b/usr.sbin/rndc/Makefile @@ -17,8 +17,8 @@ SRCS+= rndc.c util.c CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include -I${LIB_BIND_DIR} -DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} -LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} MAN= rndc.8 rndc.conf.5 |