From owner-freebsd-gecko@FreeBSD.ORG Fri Feb 28 21:44:53 2014 Return-Path: Delivered-To: freebsd-gecko@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 ESMTPS id E97C9957 for ; Fri, 28 Feb 2014 21:44:53 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.244.247]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 614021BA6 for ; Fri, 28 Feb 2014 21:44:53 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.244.247]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id s1SLipN2091795 for ; Fri, 28 Feb 2014 21:44:51 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id s1SLikjD091123 for freebsd-gecko@freebsd.org; Fri, 28 Feb 2014 21:44:46 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Fri, 28 Feb 2014 21:44:46 GMT Message-Id: <201402282144.s1SLikjD091123@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org Subject: [SVN-Commit] r1527 - in trunk/www: firefox firefox-nightly seamonkey MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 21:44:54 -0000 Author: jbeich Date: Fri Feb 28 21:44:46 2014 New Revision: 1527 Log: add clang 3.2/3.3 workaround for 9.2R i386 to avoid pulling in lang/gcc Modified: trunk/www/firefox-nightly/Makefile trunk/www/firefox/Makefile trunk/www/seamonkey/Makefile Modified: trunk/www/firefox-nightly/Makefile ============================================================================== --- trunk/www/firefox-nightly/Makefile Fri Feb 28 21:44:38 2014 (r1526) +++ trunk/www/firefox-nightly/Makefile Fri Feb 28 21:44:46 2014 (r1527) @@ -69,6 +69,14 @@ WRKSRC:= ${WRKDIR}/${MASTER_SITES:M*hg*:S,/archive/,,:T}-${HGREV:C/.*://} +# avoid clang 3.2/3.3 crash in js/src/jsgc.cpp on refillFreeList<(js::AllowGC)1> +# http://svnweb.freebsd.org/changeset/base/255804 +.if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 1000056 +. if ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]} +CXXFLAGS+= -O1 +. endif +.endif + .if ${PORT_OPTIONS:MALSA} BUILD_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif Modified: trunk/www/firefox/Makefile ============================================================================== --- trunk/www/firefox/Makefile Fri Feb 28 21:44:38 2014 (r1526) +++ trunk/www/firefox/Makefile Fri Feb 28 21:44:46 2014 (r1527) @@ -57,8 +57,12 @@ WRKSRC:= ${WRKDIR}/mozilla-beta -.if ${ARCH} == i386 && ${OSVERSION} < 1000000 -USE_GCC?= yes +# avoid clang 3.2/3.3 crash in js/src/jsgc.cpp on refillFreeList<(js::AllowGC)1> +# http://svnweb.freebsd.org/changeset/base/255804 +.if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 1000056 +. if ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]} +CXXFLAGS+= -O1 +. endif .endif .if ${PORT_OPTIONS:MALSA} Modified: trunk/www/seamonkey/Makefile ============================================================================== --- trunk/www/seamonkey/Makefile Fri Feb 28 21:44:38 2014 (r1526) +++ trunk/www/seamonkey/Makefile Fri Feb 28 21:44:46 2014 (r1527) @@ -82,6 +82,14 @@ XPI_LIBDIR= ${PREFIX}/lib/xpi +# avoid clang 3.2/3.3 crash in js/src/jsgc.cpp on refillFreeList<(js::AllowGC)1> +# http://svnweb.freebsd.org/changeset/base/255804 +.if ${CHOSEN_COMPILER_TYPE} == clang && ${ARCH} == i386 && ${OSVERSION} < 1000056 +. if ${CXXFLAGS:M-O*} && ! ${CXXFLAGS:M-O[01]} +CXXFLAGS+= -O1 +. endif +.endif + .if ${PORT_OPTIONS:MALSA} BUILD_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif