Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Oct 2014 13:52:42 +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: r371007 - head/dns/unbound
Message-ID:  <201410161352.s9GDqgAh043438@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Thu Oct 16 13:52:42 2014
New Revision: 371007
URL: https://svnweb.freebsd.org/changeset/ports/371007
QAT: https://qat.redports.org/buildarchive/r371007/

Log:
  Correct last patch. There is only one libevent now.
  
  Pointyhat -> feld
  
  PR:		191532

Modified:
  head/dns/unbound/Makefile

Modified: head/dns/unbound/Makefile
==============================================================================
--- head/dns/unbound/Makefile	Thu Oct 16 13:19:40 2014	(r371006)
+++ head/dns/unbound/Makefile	Thu Oct 16 13:52:42 2014	(r371007)
@@ -32,7 +32,7 @@ PLIST_SUB+=	PYTHON=${PYTHON} MUNIN=${MUN
 OPTIONS_DEFINE=	THREADS PYTHON GOST ECDSA MUNIN DOCS LIBEVENT
 OPTIONS_DEFAULT=THREADS ECDSA
 
-LIBEVENT_DESC=	Build against libevent (devel/libevent2)
+LIBEVENT_DESC=	Build against libevent (devel/libevent2) (BROKEN on >=10)
 GOST_DESC=	Enable GOST support (requires OpenSSL >= 1.0)
 ECDSA_DESC=	Enable ECDSA (elliptic curve) support (OpenSSL >= 1.0)
 MUNIN_DESC=	Install Munin plugin
@@ -79,6 +79,9 @@ MUNIN=		"@comment "
 .endif
 
 .if ${PORT_OPTIONS:MLIBEVENT}
+.if ${OSVERSION} >= 1000015
+BROKEN=	Unbound with libevent crashes on FreeBSD 10+ due to Capsicum
+.endif
 LIB_DEPENDS+=	libevent.so:${PORTSDIR}/devel/libevent2
 USES+=		pkgconfig
 CONFIGURE_ARGS+=--with-libevent
@@ -88,12 +91,6 @@ 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?201410161352.s9GDqgAh043438>