From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 07:43:35 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BE91B549; Thu, 31 Oct 2013 07:43:35 +0000 (UTC) (envelope-from flo@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ACFFE2692; Thu, 31 Oct 2013 07:43:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V7hZZV081144; Thu, 31 Oct 2013 07:43:35 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V7hZxI081143; Thu, 31 Oct 2013 07:43:35 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201310310743.r9V7hZxI081143@svn.freebsd.org> From: Florian Smeets Date: Thu, 31 Oct 2013 07:43:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332207 - head/www/firefox 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.14 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, 31 Oct 2013 07:43:35 -0000 Author: flo Date: Thu Oct 31 07:43:35 2013 New Revision: 332207 URL: http://svnweb.freebsd.org/changeset/ports/332207 Log: Firefox 25.0 seems to trigger a bug in clang on 9.X/i386, switch to gcc for now. Reported by: Kenta Suzumoto Modified: head/www/firefox/Makefile Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Oct 31 07:42:03 2013 (r332206) +++ head/www/firefox/Makefile Thu Oct 31 07:43:35 2013 (r332207) @@ -52,6 +52,10 @@ MOZ_OPTIONS= --program-transform-name='s WRKSRC:= ${WRKDIR}/mozilla-release +.if ${ARCH} == i386 && ${OSVERSION} < 1000000 +USE_GCC?= yes +.endif + post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \