From owner-svn-ports-head@FreeBSD.ORG Fri Dec 19 17:08:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8D2C406; Fri, 19 Dec 2014 17:08:45 +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 D50E31FFE; Fri, 19 Dec 2014 17:08:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBJH8jnv047325; Fri, 19 Dec 2014 17:08:45 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBJH8jHW047324; Fri, 19 Dec 2014 17:08:45 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201412191708.sBJH8jHW047324@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Fri, 19 Dec 2014 17:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374953 - head/audio/musicpd 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: Fri, 19 Dec 2014 17:08:46 -0000 Author: crees Date: Fri Dec 19 17:08:44 2014 New Revision: 374953 URL: https://svnweb.freebsd.org/changeset/ports/374953 QAT: https://qat.redports.org/buildarchive/r374953/ Log: Fix build on 10.1-- temporary fix until clang bug investigated PR: ports/195888 Submitted by: martin.dieringer Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Fri Dec 19 16:52:21 2014 (r374952) +++ head/audio/musicpd/Makefile Fri Dec 19 17:08:44 2014 (r374953) @@ -132,6 +132,11 @@ GROUPS= ${MPDGROUP} .include +# Work around suspected clang bug +.if ${OSVERSION} >= 1001000 +USE_GCC= yes +.endif + .ifdef MPDCONF IGNORE=Please remove the MPDCONF line from make.conf, then rename ${PREFIX}/etc/${MPDCONF} to musicpd.conf, if it exists .endif