diff options
author | des <des@FreeBSD.org> | 2005-07-25 14:44:11 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-07-25 14:44:11 +0000 |
commit | 96f2eb8f8a21f13bcc534dbc434fa918cd5fea62 (patch) | |
tree | d848c0acefb27fd6ce966fce864fdd4501bffccd /usr.sbin/rndc-confgen | |
parent | 817761fa0f8a54cbdf828342dfc6441acf6d06f8 (diff) | |
download | FreeBSD-src-96f2eb8f8a21f13bcc534dbc434fa918cd5fea62.zip FreeBSD-src-96f2eb8f8a21f13bcc534dbc434fa918cd5fea62.tar.gz |
Disable thread support in BIND. It appears to reduce performance rather
than increase it, and seems to be the cause of the memory leaks which some
users have reported.
Requested by: dougb
MFC after: 5 days
Diffstat (limited to 'usr.sbin/rndc-confgen')
-rw-r--r-- | usr.sbin/rndc-confgen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rndc-confgen/Makefile b/usr.sbin/rndc-confgen/Makefile index b8a52dd..e924f5c 100644 --- a/usr.sbin/rndc-confgen/Makefile +++ b/usr.sbin/rndc-confgen/Makefile @@ -17,8 +17,8 @@ SRCS+= rndc-confgen.c util.c CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include -I${LIB_BIND_DIR} -DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} -LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} MAN= rndc-confgen.8 |