summaryrefslogtreecommitdiff
path: root/dns/unbound
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-10-23 19:54:50 +0000
committerJohn Marino <marino@FreeBSD.org>2014-10-23 19:54:50 +0000
commit4a16e1bb7f393ec286b717327b8a7bf2455a4511 (patch)
treefe9e66205e011c88c1b16c77e9d799067775223b /dns/unbound
parent- Allow staging as a regular user (diff)
dns/unbound: check OPSYS with OSVERION (check broke DragonFly)
Notes
Notes: svn path=/head/; revision=371404
Diffstat (limited to 'dns/unbound')
-rw-r--r--dns/unbound/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/unbound/Makefile b/dns/unbound/Makefile
index f0714e32852d..bcc258378590 100644
--- a/dns/unbound/Makefile
+++ b/dns/unbound/Makefile
@@ -55,7 +55,7 @@ PYTHON= "@comment "
.endif
.if ${PORT_OPTIONS:MGOST}
-. if ${OSVERSION} < 1000015
+. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015
WITH_OPENSSL_PORT= yes
. endif
DEPENDS_ARGS+= WITH_GOST=yes
@@ -79,7 +79,7 @@ MUNIN= "@comment "
.endif
.if ${PORT_OPTIONS:MLIBEVENT}
-.if ${OSVERSION} >= 1000015
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000015
BROKEN= Unbound with libevent crashes on FreeBSD 10+ due to Capsicum
.endif
LIB_DEPENDS+= libevent.so:${PORTSDIR}/devel/libevent2