1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

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
This commit is contained in:
Kirill Ponomarev 2018-11-20 10:18:48 +00:00
parent 1d5c90a57d
commit 29bbd4bacd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=485423
3 changed files with 5 additions and 17 deletions

View File

@ -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

View File

@ -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

View File

@ -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;