From owner-svn-ports-head@FreeBSD.ORG Thu Jan 29 23:20:34 2015 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 67523493; Thu, 29 Jan 2015 23:20:34 +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 5343498B; Thu, 29 Jan 2015 23:20:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0TNKYWN001450; Thu, 29 Jan 2015 23:20:34 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0TNKY4U001449; Thu, 29 Jan 2015 23:20:34 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201501292320.t0TNKY4U001449@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Thu, 29 Jan 2015 23:20:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378132 - head/devel/libvirt 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, 29 Jan 2015 23:20:34 -0000 Author: jgh Date: Thu Jan 29 23:20:33 2015 New Revision: 378132 URL: https://svnweb.freebsd.org/changeset/ports/378132 QAT: https://qat.redports.org/buildarchive/r378132/ Log: - add sasl support PR: 196732 Submitted by: fabian.freyer@physik.tu-berlin.de Modified: head/devel/libvirt/Makefile Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Thu Jan 29 21:52:22 2015 (r378131) +++ head/devel/libvirt/Makefile Thu Jan 29 23:20:33 2015 (r378132) @@ -20,7 +20,7 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ BUILD_DEPENDS= dnsmasq:${PORTSDIR}/dns/dnsmasq RUN_DEPENDS= dnsmasq:${PORTSDIR}/dns/dnsmasq -OPTIONS_DEFINE= DOCS NLS QEMU +OPTIONS_DEFINE= DOCS NLS QEMU SASL OPTIONS_DEFINE_amd64= BHYVE .if exists(/usr/sbin/bhyve) OPTIONS_DEFAULT_amd64= BHYVE @@ -42,13 +42,16 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +SASL_CONFIGURE_WITH= sasl +SASL_BUILD_DEPENDS= sasl:${PORTSDIR}/security/cyrus-sasl2 +SASL_LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 + VARDIR= /var USE_RC_SUBR= libvirtd GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-sasl \ - --without-avahi \ +CONFIGURE_ARGS= --without-avahi \ --without-polkit \ --without-hal \ --without-udev \