From owner-svn-ports-all@FreeBSD.ORG Tue Oct 9 22:06:39 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2380999F; Tue, 9 Oct 2012 22:06:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7568FC08; Tue, 9 Oct 2012 22:06:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q99M6cib094454; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M6c8j094452; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092206.q99M6c8j094452@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305608 - head/audio/akode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:06:39 -0000 Author: linimon Date: Tue Oct 9 22:06:38 2012 New Revision: 305608 URL: http://svn.freebsd.org/changeset/ports/305608 Log: Force numerous ports that fail to build with clang over to instead always rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Modified: head/audio/akode/Makefile Modified: head/audio/akode/Makefile ============================================================================== --- head/audio/akode/Makefile Tue Oct 9 22:05:57 2012 (r305607) +++ head/audio/akode/Makefile Tue Oct 9 22:06:38 2012 (r305608) @@ -32,6 +32,7 @@ OPTIONS= FFMPEG "FFMPEG decoder plugin" USE_AUTOTOOLS= libltdl libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes