diff options
author | taca <taca@pkgsrc.org> | 2012-04-05 00:40:09 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2012-04-05 00:40:09 +0000 |
commit | 8eae2ca6fd6207bfcbc87f010be246a4be5dd2eb (patch) | |
tree | 9c77e4f6a13445cf576d140e336a12dd9f6a7fab /net/bind97/Makefile | |
parent | 0aea8bb95a8da945dd3a2a8cddeecdd3ba35d87a (diff) | |
download | pkgsrc-8eae2ca6fd6207bfcbc87f010be246a4be5dd2eb.tar.gz |
Update bind97 package to 9.7.5.
Security Fixes
+ BIND 9 nameservers performing recursive queries could cache an
invalid record and subsequent queries for that record could
crash the resolvers with an assertion failure. [RT #26590]
[CVE-2011-4313]
Feature Changes
+ It is now possible to explicitly disable DLV in named.conf by
specifying "dnssec-lookaside no;". This is the default, but the
ability to configure it makes it clearly visible to administrators.
[RT #24858]
+ --enable-developer, a new composite argument to the configure
script, enables a set of build options normally disabled but
frequently selected in test or development builds, specifically:
enable_fixed_rrset, with_atf, enable_filter_aaaa, enable_rpz_nsip,
enable_rpz_nsdname, and with_dlz_filesystem (and on Linux and
Darwin, also enable_exportlib) [RT #27103]
Diffstat (limited to 'net/bind97/Makefile')
-rw-r--r-- | net/bind97/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/bind97/Makefile b/net/bind97/Makefile index 9aec30a494c..0d3e9c95cde 100644 --- a/net/bind97/Makefile +++ b/net/bind97/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2012/03/12 15:40:15 taca Exp $ +# $NetBSD: Makefile,v 1.12 2012/04/05 00:40:09 taca Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P/pl/} @@ -16,7 +16,7 @@ PKG_DESTDIR_SUPPORT= user-destdir MAKE_JOBS_SAFE= no -BIND_VERSION= 9.7.4-P1 +BIND_VERSION= 9.7.5 .include "../../mk/bsd.prefs.mk" @@ -60,6 +60,8 @@ FILES_SUBST+= BIND_GROUP=${BIND_GROUP:Q} \ BIND_USER=${BIND_USER:Q} PAX=${PAX:Q} MESSAGE_SUBST+= BIND_DIR=${BIND_DIR} BIND_USER=${BIND_USER} DOCDIR= ${DESTDIR}${PREFIX}/share/doc/bind9 +MISCDOC= dnssec ipv6 migration migration-4to9 options \ + rfc-compliance roadmap sdb # include/isc/ipv6.h is installed on non-ipv6 platforms PLIST_VARS+= inet6 @@ -69,14 +71,12 @@ PLIST.inet6= yes RCD_SCRIPTS= lwresd named9 -INSTALLATION_DIRS= ${DOCDIR} share/doc/bind9/arm share/doc/bind9/draft \ - share/doc/bind9/rfc +INSTALLATION_DIRS= ${DOCDIR} share/doc/bind9/arm share/doc/bind9/misc post-install: ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/doc/arm/*.html ${DOCDIR}/arm - ${INSTALL_DATA} ${WRKSRC}/doc/draft/draft-*.txt ${DOCDIR}/draft - ${INSTALL_DATA} ${WRKSRC}/doc/rfc/rfc*.txt ${DOCDIR}/rfc + cd ${WRKSRC}/doc/misc && ${INSTALL_DATA} ${MISCDOC} ${DOCDIR}/misc .include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |