View | Details | Raw Unified | Return to bug 237947 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-3 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	recursor
4
PORTNAME=	recursor
5
DISTVERSION=	4.1.12
5
DISTVERSION=	4.1.13
6
PORTREVISION=	1
7
CATEGORIES=	dns ipv6
6
CATEGORIES=	dns ipv6
8
MASTER_SITES=	http://downloads.powerdns.com/releases/
7
MASTER_SITES=	http://downloads.powerdns.com/releases/
9
PKGNAMEPREFIX=	powerdns-
8
PKGNAMEPREFIX=	powerdns-
Lines 17-23 Link Here
17
BROKEN_armv6=		fails to compile: use of overloaded operator << is ambiguous
16
BROKEN_armv6=		fails to compile: use of overloaded operator << is ambiguous
18
BROKEN_armv7=		fails to compile: use of overloaded operator << is ambiguous
17
BROKEN_armv7=		fails to compile: use of overloaded operator << is ambiguous
19
BROKEN_sparc64=		fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt
18
BROKEN_sparc64=		fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt
20
BROKEN_powerpc64=	fails to compile: dnslabeltext.cc: undefined reference to std::__cxx11::basic_string
21
19
22
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
20
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
23
LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
21
LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1554205295
1
TIMESTAMP = 1558440772
2
SHA256 (pdns-recursor-4.1.12.tar.bz2) = e41c0a9825915084794edd86e31bb9bde558a5efa8e178c168b82546fecdb0c8
2
SHA256 (pdns-recursor-4.1.13.tar.bz2) = 1328b75b1ff3df0b0ea097db793dd7c4a8fdb681bf2df87f96c9347fd1d6466f
3
SIZE (pdns-recursor-4.1.12.tar.bz2) = 1245110
3
SIZE (pdns-recursor-4.1.13.tar.bz2) = 1246775
(-)files/patch-configure (+15 lines)
Line 0 Link Here
1
--- configure.orig	2019-05-17 10:25:29 UTC
2
+++ configure
3
@@ -19350,8 +19350,10 @@ fi
4
             { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openssl/crypto.h in $ssldir" >&5
5
 $as_echo_n "checking for openssl/crypto.h in $ssldir... " >&6; }
6
             if test -f "$ssldir/include/openssl/crypto.h"; then
7
-                LIBCRYPTO_INCLUDES="-I$ssldir/include"
8
-                LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
9
+		if test $ssldir != /usr; then
10
+                	LIBCRYPTO_INCLUDES="-I$ssldir/include"
11
+                	LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
12
+		fi
13
                 LIBCRYPTO_LIBS="-lcrypto"
14
                 found=true
15
                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5

Return to bug 237947