svn commit: r371006 - head/dns/unbound

Mark Felder feld at FreeBSD.org
Thu Oct 16 13:19:40 UTC 2014


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


More information about the svn-ports-all mailing list