View | Details | Raw Unified | Return to bug 202407
Collapse All | Expand All

(-)dns/unbound/Makefile (-2 / +5 lines)
Lines 12-18 Link Here
12
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USES+=		cpe gmake libtool
15
USES+=		autoreconf cpe gmake libtool
16
CPE_VENDOR=	nlnetlabs
16
CPE_VENDOR=	nlnetlabs
17
USE_OPENSSL=	yes
17
USE_OPENSSL=	yes
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
Lines 101-107 Link Here
101
		s|$$(configfile); fi|$$(configfile).sample|' \
101
		s|$$(configfile); fi|$$(configfile).sample|' \
102
		${WRKSRC}/Makefile.in
102
		${WRKSRC}/Makefile.in
103
.if ${PORT_OPTIONS:MFILTER_AAAA}
103
.if ${PORT_OPTIONS:MFILTER_AAAA}
104
	cat ${WRKSRC}/contrib/aaaa-filter-iterator.patch | ${PATCH} -d ${WRKSRC} -p1 -s
104
	${CAT} ${WRKSRC}/contrib/aaaa-filter-iterator.patch | ${PATCH} -d ${WRKSRC} -p1 -s
105
.endif
105
.endif
106
106
107
post-build:
107
post-build:
Lines 132-135 Link Here
132
	done
132
	done
133
.endif
133
.endif
134
134
135
regression-test: build
136
	cd ${WRKSRC} && ${MAKE} test
137
135
.include <bsd.port.mk>
138
.include <bsd.port.mk>
(-)dns/unbound/files/patch-configure.ac (+11 lines)
Line 0 Link Here
1
--- configure.ac.orig	2015-06-29 10:19:42 UTC
2
+++ configure.ac
3
@@ -566,7 +566,7 @@ if test $USE_NSS = "no"; then
4
 ACX_WITH_SSL
5
 ACX_LIB_SSL
6
 AC_MSG_CHECKING([for LibreSSL])
7
-if grep OPENSSL_VERSION_TEXT $ssldir/include/openssl/opensslv.h | grep "LibreSSL" >/dev/null; then
8
+if grep -e OPENSSL_VERSION_TEXT -e LIBRESSL_VERSION_TEXT $ssldir/include/openssl/opensslv.h | grep "LibreSSL" >/dev/null; then
9
 	AC_MSG_RESULT([yes])
10
 	AC_DEFINE([HAVE_LIBRESSL], [1], [Define if we have LibreSSL])
11
 	# libressl provides these compat functions, but they may also be

Return to bug 202407