From owner-svn-ports-head@FreeBSD.ORG Fri Apr 24 15:56:20 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 9E66896D; Fri, 24 Apr 2015 15:56:20 +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 8D0B71DB6; Fri, 24 Apr 2015 15:56:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3OFuKb8062867; Fri, 24 Apr 2015 15:56:20 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3OFuKEf062866; Fri, 24 Apr 2015 15:56:20 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201504241556.t3OFuKEf062866@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Fri, 24 Apr 2015 15:56:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384664 - head/emulators/wine-devel 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.20 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: Fri, 24 Apr 2015 15:56:20 -0000 Author: dbn Date: Fri Apr 24 15:56:19 2015 New Revision: 384664 URL: https://svnweb.freebsd.org/changeset/ports/384664 Log: emulators/wine-compholio: fix build. * Autoconf is required during the extract stage, so add it to the EXTRACT_DEPENDS list (it defaults to BUILD_DEPENDS only) * For an unknown reason autoconf creates a configure script that looks for and detects powl on FreeBSD 8 and 9. powl does not actually exist and causes a build failure. Approved by: gerald@ (maintainer, implicit) Modified: head/emulators/wine-devel/Makefile Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Fri Apr 24 15:48:52 2015 (r384663) +++ head/emulators/wine-devel/Makefile Fri Apr 24 15:56:19 2015 (r384664) @@ -141,8 +141,11 @@ COMP_DIST= v${DISTVERSION}.tar.gz DISTFILES+= ${COMP_DIST}:cho EXTRACT_DEPENDS=bash:${PORTSDIR}/shells/bash \ - git:${PORTSDIR}/devel/git + git:${PORTSDIR}/devel/git \ + ${AUTOCONF_DEPENDS} +# Fix build on FreeBSD 8.4 and 9.3 (false positive: powl) +CONFIGURE_ENV+= ac_cv_have_powl=no CONFIGURE_ARGS+=--without-pulse USE_AUTOTOOLS= autoconf