diff options
author | joneum <joneum@FreeBSD.org> | 2018-11-18 20:47:37 +0800 |
---|---|---|
committer | joneum <joneum@FreeBSD.org> | 2018-11-18 20:47:37 +0800 |
commit | ddb45425d75d3a0ea19965ebc6248f9903a01a80 (patch) | |
tree | 36696209911b72172058ccf8ea41df4e8f2e14c9 /dns | |
parent | 9f43166de5af8ddec24f8333d7ce7dda1de779f5 (diff) | |
download | freebsd-ports-gnome-ddb45425d75d3a0ea19965ebc6248f9903a01a80.tar.gz freebsd-ports-gnome-ddb45425d75d3a0ea19965ebc6248f9903a01a80.tar.zst freebsd-ports-gnome-ddb45425d75d3a0ea19965ebc6248f9903a01a80.zip |
Update to 4.1.7
Changelog: https://doc.powerdns.com/recursor/changelog/4.1.html#change-4.1.7
PR: 233140
Submitted by: Ralf van der Enden <tremere@cainites.net> (maintainer)
MFH: 2018Q4
Security: e9aa0e4c-ea8b-11e8-a5b7-00e04c1ea73d
Sponsored by: Netzkommune GmbH
Diffstat (limited to 'dns')
-rw-r--r-- | dns/powerdns-recursor/Makefile | 3 | ||||
-rw-r--r-- | dns/powerdns-recursor/distinfo | 6 | ||||
-rw-r--r-- | dns/powerdns-recursor/files/patch-opensslsigners.cc | 12 |
3 files changed, 4 insertions, 17 deletions
diff --git a/dns/powerdns-recursor/Makefile b/dns/powerdns-recursor/Makefile index 8bc8c571a051..8e96e8b3bf0b 100644 --- a/dns/powerdns-recursor/Makefile +++ b/dns/powerdns-recursor/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= recursor -DISTVERSION= 4.1.4 -PORTREVISION= 1 +DISTVERSION= 4.1.7 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- diff --git a/dns/powerdns-recursor/distinfo b/dns/powerdns-recursor/distinfo index 5261058a03b7..a6c5f4270bc5 100644 --- a/dns/powerdns-recursor/distinfo +++ b/dns/powerdns-recursor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535813031 -SHA256 (pdns-recursor-4.1.4.tar.bz2) = b19f4353bea3fe54a581a4e7ace101637f8474f5ebfe925e2d3ff4910b71b550 -SIZE (pdns-recursor-4.1.4.tar.bz2) = 1224360 +TIMESTAMP = 1542545089 +SHA256 (pdns-recursor-4.1.7.tar.bz2) = 9a045cfd1d3b195f3166170c2cb120bea08926c6474ebc67e8020edf1deddb6b +SIZE (pdns-recursor-4.1.7.tar.bz2) = 1237866 diff --git a/dns/powerdns-recursor/files/patch-opensslsigners.cc b/dns/powerdns-recursor/files/patch-opensslsigners.cc deleted file mode 100644 index be96d5f57172..000000000000 --- a/dns/powerdns-recursor/files/patch-opensslsigners.cc +++ /dev/null @@ -1,12 +0,0 @@ ---- opensslsigners.cc.orig 2018-01-22 13:39:07 UTC -+++ opensslsigners.cc -@@ -33,7 +33,8 @@ - #include "opensslsigners.hh" - #include "dnssecinfra.hh" - --#if (OPENSSL_VERSION_NUMBER < 0x1010000fL || defined LIBRESSL_VERSION_NUMBER) -+#if (OPENSSL_VERSION_NUMBER < 0x1010000fL || \ -+ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)) - /* OpenSSL < 1.1.0 needs support for threading/locking in the calling application. */ - static pthread_mutex_t *openssllocks; - |