Date: Thu, 16 Oct 2014 13:19:40 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371006 - head/dns/unbound Message-ID: <201410161319.s9GDJexc025613@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Thu Oct 16 13:19:40 2014 New Revision: 371006 URL: https://svnweb.freebsd.org/changeset/ports/371006 QAT: https://qat.redports.org/buildarchive/r371006/ Log: Mark unbound BROKEN for FreeBSD 10.0+ if built with libevent There is a known issue that causes random crashes due to poor interaction with Capsicum. PR: 191532 Modified: head/dns/unbound/Makefile Modified: head/dns/unbound/Makefile ============================================================================== --- head/dns/unbound/Makefile Thu Oct 16 13:19:32 2014 (r371005) +++ head/dns/unbound/Makefile Thu Oct 16 13:19:40 2014 (r371006) @@ -3,7 +3,7 @@ PORTNAME= unbound PORTVERSION= 1.4.22 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= dns MASTER_SITES= http://unbound.net/downloads/ @@ -88,6 +88,12 @@ LDFLAGS+= $$(pkg-config libevent --libs- CONFIGURE_ARGS+=--with-libevent=no .endif +.if ${PORT_OPTIONS:MLIBEVENT14} || ${PORT_OPTIONS:MLIBEVENT20} +.if ${OSVERSION} >= 1000015 +BROKEN= Unbound with libevent crashes on FreeBSD 10+ due to Capsicum +.endif +.endif + .if empty(PORT_OPTIONS:MTHREADS) CONFIGURE_ARGS+=--without-pthreads .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410161319.s9GDJexc025613>