1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Update to 4.1.11 and add buffer fix for rec_control

The changelog:

#7434: Add an option to export only responses over protobuf #7430:
Reduce systemcall usage in protobuf logging

Also add a fix (pulled in from OpenBSD) for rec_control's buffer
being too small to handle output of some commands. This could be
remedied by setting net.local.dgram.maxdgram=131072 in
/etc/sysctl.conf, but this patch omits that requirement.

PR:		235392
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2019-02-18 15:38:47 +00:00
parent ea2b4d789b
commit 5b35cf7267
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493269
3 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= recursor
DISTVERSION= 4.1.10
DISTVERSION= 4.1.11
CATEGORIES= dns ipv6
MASTER_SITES= http://downloads.powerdns.com/releases/
PKGNAMEPREFIX= powerdns-
@ -22,8 +22,6 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
LIB_DEPENDS= libboost_context.so:devel/boost-libs \
libprotobuf.so:devel/protobuf
CONFLICTS_INSTALL= powerdns-recursor40
USES= compiler:c++11-lib cpe gmake localbase:ldflags pkgconfig ssl tar:bzip2
GNU_CONFIGURE= YES
CXXFLAGS+= -D_GLIBCXX_USE_C99

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1548341968
SHA256 (pdns-recursor-4.1.10.tar.bz2) = f22dc09dae32fbf394a80831f7e7a2fde2e5a2a5ac572e134de9935629817f01
SIZE (pdns-recursor-4.1.10.tar.bz2) = 1238148
TIMESTAMP = 1549022270
SHA256 (pdns-recursor-4.1.11.tar.bz2) = 9ec7d52b545d3ea4498b17ea5433a686aa0d82e882608dcdcea9a116a3f4d670
SIZE (pdns-recursor-4.1.11.tar.bz2) = 1239986

View File

@ -1,4 +1,4 @@
--- dnsname.hh.orig 2017-01-17 03:18:41 UTC
--- dnsname.hh.orig 2019-01-31 19:43:44 UTC
+++ dnsname.hh
@@ -30,7 +30,7 @@
#include <boost/version.hpp>
@ -9,7 +9,7 @@
#include <boost/container/string.hpp>
#endif
@@ -133,7 +133,7 @@ public:
@@ -135,7 +135,7 @@ class DNSName (public)
inline bool canonCompare(const DNSName& rhs) const;
bool slowCanonCompare(const DNSName& rhs) const;