Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Apr 2015 15:56:20 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r384664 - head/emulators/wine-devel
Message-ID:  <201504241556.t3OFuKEf062866@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504241556.t3OFuKEf062866>