svn commit: r371404 - head/dns/unbound
John Marino
marino at FreeBSD.org
Thu Oct 23 19:54:51 UTC 2014
Author: marino
Date: Thu Oct 23 19:54:50 2014
New Revision: 371404
URL: https://svnweb.freebsd.org/changeset/ports/371404
QAT: https://qat.redports.org/buildarchive/r371404/
Log:
dns/unbound: check OPSYS with OSVERION (check broke DragonFly)
Modified:
head/dns/unbound/Makefile
Modified: head/dns/unbound/Makefile
==============================================================================
--- head/dns/unbound/Makefile Thu Oct 23 19:50:29 2014 (r371403)
+++ head/dns/unbound/Makefile Thu Oct 23 19:54:50 2014 (r371404)
@@ -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
More information about the svn-ports-all
mailing list