diff options
author | krion <krion@FreeBSD.org> | 2018-11-20 18:18:48 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2018-11-20 18:18:48 +0800 |
commit | 3c2d720a8176c616d7438c913c0aeaf15dabd670 (patch) | |
tree | b9d51f8f81f2596284fe8b945ac7f552c468d172 /dns | |
parent | 161836f073f53eb8c1b137d514844c8ec682cac0 (diff) | |
download | freebsd-ports-gnome-3c2d720a8176c616d7438c913c0aeaf15dabd670.tar.gz freebsd-ports-gnome-3c2d720a8176c616d7438c913c0aeaf15dabd670.tar.zst freebsd-ports-gnome-3c2d720a8176c616d7438c913c0aeaf15dabd670.zip |
Update to 4.1.5
This releases fixes the following security advisories:
- PowerDNS Security Advisory 2018-03 (CVE-2018-10851)
- PowerDNS Security Advisory 2018-05 (CVE-2018-14626)
It also contains some improvemens and bug fixes.
Full changelog:
https://doc.powerdns.com/authoritative/changelog/4.1.html#change-4.1.5
PR: 233139
Submitted by: maintainer
Diffstat (limited to 'dns')
-rw-r--r-- | dns/powerdns/Makefile | 4 | ||||
-rw-r--r-- | dns/powerdns/distinfo | 6 | ||||
-rw-r--r-- | dns/powerdns/files/patch-pdns_opensslsigners.cc | 12 |
3 files changed, 5 insertions, 17 deletions
diff --git a/dns/powerdns/Makefile b/dns/powerdns/Makefile index e7a01e69d1fa..3e29470a9d7e 100644 --- a/dns/powerdns/Makefile +++ b/dns/powerdns/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= powerdns -DISTVERSION= 4.1.4 -PORTREVISION= 1 +DISTVERSION= 4.1.5 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${DISTVERSION} @@ -19,6 +18,7 @@ LIB_DEPENDS= libboost_serialization.so:devel/boost-libs USES= compiler:c++11-lib cpe gmake libtool localbase:ldflags pathfix pkgconfig ssl \ tar:bzip2 + USE_LDCONFIG= YES USE_SUBMAKE= YES GNU_CONFIGURE= YES diff --git a/dns/powerdns/distinfo b/dns/powerdns/distinfo index 1d2e67d34b9b..100285e64f65 100644 --- a/dns/powerdns/distinfo +++ b/dns/powerdns/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535616205 -SHA256 (pdns-4.1.4.tar.bz2) = e9408603383d529b3bbee2509b73187d2186c502a9b052d07e250cd8f3873ed5 -SIZE (pdns-4.1.4.tar.bz2) = 1089376 +TIMESTAMP = 1541580311 +SHA256 (pdns-4.1.5.tar.bz2) = c329570a66d8c7340d38fd582cb23ad642799b83c7276fb0fdea4303759b4f8a +SIZE (pdns-4.1.5.tar.bz2) = 1116238 diff --git a/dns/powerdns/files/patch-pdns_opensslsigners.cc b/dns/powerdns/files/patch-pdns_opensslsigners.cc deleted file mode 100644 index ca8679c3de57..000000000000 --- a/dns/powerdns/files/patch-pdns_opensslsigners.cc +++ /dev/null @@ -1,12 +0,0 @@ ---- pdns/opensslsigners.cc.orig 2018-02-16 09:52:29 UTC -+++ pdns/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; - |