Date: Thu, 23 Oct 2014 19:54:51 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371404 - head/dns/unbound Message-ID: <201410231954.s9NJspMo025779@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410231954.s9NJspMo025779>