From owner-svn-ports-head@FreeBSD.ORG Thu Oct 23 19:54:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8179E22C; Thu, 23 Oct 2014 19:54:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DA3B8BA; Thu, 23 Oct 2014 19:54:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9NJspUT025780; Thu, 23 Oct 2014 19:54:51 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9NJspMo025779; Thu, 23 Oct 2014 19:54:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410231954.s9NJspMo025779@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 23 Oct 2014 19:54:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371404 - head/dns/unbound X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Oct 2014 19:54:51 -0000 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