From f2620aeb47ab279b8ea1100126cb3462d6791f7e Mon Sep 17 00:00:00 2001 From: dinoex Date: Tue, 20 Jan 2004 04:20:58 +0000 Subject: - Update to 2.9.15 - allow-recursion-override was on by default, it was meant to be off - Logging was still off in daemon mode, fixed - Recursor accidentally linked in MySQL, fixed - The PowerDNS recursor had stability problems - The recursor now outputs the nameserver average response times in trace mode - LDAP compiles again Improvements: - Several improvements to zone2sql - Remove libpqpp dependencies - Added a patch from CVS to make zone2parser.cc compile on STABLE PR: 61554, 61589 Submitted by: tremere@cainites.net --- dns/powerdns/Makefile | 2 +- dns/powerdns/distinfo | 2 +- dns/powerdns/files/patch-pdns_backends_bind_zoneparser2_cc | 10 ++++++++++ dns/powerdns/files/patch-pdns_communicator_hh | 11 ----------- dns/powerdns/files/patch-pdns_iputils_hh | 0 5 files changed, 12 insertions(+), 13 deletions(-) create mode 100644 dns/powerdns/files/patch-pdns_backends_bind_zoneparser2_cc delete mode 100644 dns/powerdns/files/patch-pdns_communicator_hh delete mode 100644 dns/powerdns/files/patch-pdns_iputils_hh (limited to 'dns/powerdns') diff --git a/dns/powerdns/Makefile b/dns/powerdns/Makefile index 66f9a7262e9..3f03a0e03c4 100644 --- a/dns/powerdns/Makefile +++ b/dns/powerdns/Makefile @@ -5,7 +5,7 @@ # PORTNAME= powerdns -PORTVERSION= 2.9.13 +PORTVERSION= 2.9.15 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${PORTVERSION} diff --git a/dns/powerdns/distinfo b/dns/powerdns/distinfo index 9a7d2f9d6fd..b45856cbb81 100644 --- a/dns/powerdns/distinfo +++ b/dns/powerdns/distinfo @@ -1 +1 @@ -MD5 (pdns-2.9.13.tar.gz) = ffd80b49f553cbaaa089a02a90df7729 +MD5 (pdns-2.9.15.tar.gz) = 3465694b9638c29f19a25dd5b0a77559 diff --git a/dns/powerdns/files/patch-pdns_backends_bind_zoneparser2_cc b/dns/powerdns/files/patch-pdns_backends_bind_zoneparser2_cc new file mode 100644 index 00000000000..aca266d22cb --- /dev/null +++ b/dns/powerdns/files/patch-pdns_backends_bind_zoneparser2_cc @@ -0,0 +1,10 @@ +--- pdns/backends/bind/zoneparser2.cc.orig Sat Jan 17 12:50:18 2004 ++++ pdns/backends/bind/zoneparser2.cc Mon Jan 19 20:20:12 2004 +@@ -36,6 +36,7 @@ + #include "ahuexception.hh" + #include "qtype.hh" + #include ++#include + using namespace std; + + #include "zoneparser.hh" diff --git a/dns/powerdns/files/patch-pdns_communicator_hh b/dns/powerdns/files/patch-pdns_communicator_hh deleted file mode 100644 index e3a1ccfd395..00000000000 --- a/dns/powerdns/files/patch-pdns_communicator_hh +++ /dev/null @@ -1,11 +0,0 @@ ---- pdns/communicator.hh 21 Jun 2003 09:59:08 -0000 1.5 -+++ pdns/communicator.hh 10 Jan 2004 15:47:47 -0000 -@@ -94,7 +94,7 @@ - - time_t earliest() - { -- time_t early=1<<31-1; // y2038 problem lurking here :-) -+ time_t early=(1<<31)-1; // y2038 problem lurking here :-) - for(d_nqueue_t::const_iterator i=d_nqueue.begin();i!=d_nqueue.end();++i) - early=min(early,i->next); - return early-time(0); diff --git a/dns/powerdns/files/patch-pdns_iputils_hh b/dns/powerdns/files/patch-pdns_iputils_hh deleted file mode 100644 index e69de29bb2d..00000000000 -- cgit