From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 10D40138CBB for ; Wed, 4 Mar 2015 00:16:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3F68E0954; Wed, 4 Mar 2015 00:16:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61E22E0954 for ; Wed, 4 Mar 2015 00:16:06 +0000 (UTC) Received: from manakin.gentoo.org (static-108-28-123-98.washdc.fios.verizon.net [108.28.123.98]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5123E340A67 for ; Wed, 4 Mar 2015 00:16:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by manakin.gentoo.org (Postfix) with ESMTP id 8E44B60518 for ; Wed, 4 Mar 2015 00:16:04 +0000 (UTC) From: "git@oystercatcher mirror+tproxy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "git@oystercatcher mirror+tproxy" Message-ID: <1425428149.106c77dfb13c28304c74c3e07e8bf146e8c3b282.git@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: www-client/firefox/, eclass/ X-VCS-Repository: proj/mozilla X-VCS-Files: eclass/mozconfig-v5.36.eclass www-client/firefox/firefox-36.0.ebuild www-client/firefox/firefox-37.0_beta1.ebuild X-VCS-Directories: www-client/firefox/ eclass/ X-VCS-Committer: git X-VCS-Committer-Name: git@oystercatcher mirror+tproxy X-VCS-Revision: 106c77dfb13c28304c74c3e07e8bf146e8c3b282 X-VCS-Branch: master Date: Wed, 4 Mar 2015 00:16:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: dce786e8-3ca5-45d9-bb1d-3ca16bce6b91 X-Archives-Hash: fdf5acd6971aca60d81f04d8fa2207a3 commit: 106c77dfb13c28304c74c3e07e8bf146e8c3b282 Author: Ian Stakenvicius gentoo org> AuthorDate: Wed Mar 4 00:15:49 2015 +0000 Commit: git@oystercatcher mirror+tproxy oystercatcher gentoo org> CommitDate: Wed Mar 4 00:15:49 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/mozilla.git;a=commit;h=106c77df Adjusted jit config options between ebuilds and eclass eclass/mozconfig-v5.36.eclass | 4 +++- www-client/firefox/firefox-36.0.ebuild | 4 ---- www-client/firefox/firefox-37.0_beta1.ebuild | 4 ---- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/eclass/mozconfig-v5.36.eclass b/eclass/mozconfig-v5.36.eclass index 7959064..0cab858 100644 --- a/eclass/mozconfig-v5.36.eclass +++ b/eclass/mozconfig-v5.36.eclass @@ -184,7 +184,9 @@ mozconfig_config() { if [[ -n ${MOZCONFIG_OPTIONAL_JIT} ]]; then mozconfig_use_enable jit ion - mozconfig_use_enable jit yarr-jit + # Force jit simulators for mips and arm + use jit && use arm && mozconfig_annotate '' --enable-arm-simulator + use jit && use mips && mozconfig_annotate '' --enable-mips-simulator fi # These are enabled by default in all mozilla applications diff --git a/www-client/firefox/firefox-36.0.ebuild b/www-client/firefox/firefox-36.0.ebuild index a3cc92f..69c577e 100644 --- a/www-client/firefox/firefox-36.0.ebuild +++ b/www-client/firefox/firefox-36.0.ebuild @@ -224,10 +224,6 @@ src_configure() { # Other ff-specific settings mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} - # Force jit simulators for mips and arm - use jit && use arm && mozconfig_annotate '' --enable-arm-simulator - use jit && use mips && mozconfig_annotate '' --enable-mips-simulator - # Allow for a proper pgo build if use pgo; then echo "mk_add_options PROFILE_GEN_SCRIPT='\$(PYTHON) \$(OBJDIR)/_profile/pgo/profileserver.py'" >> "${S}"/.mozconfig diff --git a/www-client/firefox/firefox-37.0_beta1.ebuild b/www-client/firefox/firefox-37.0_beta1.ebuild index 7acd903..813338e 100644 --- a/www-client/firefox/firefox-37.0_beta1.ebuild +++ b/www-client/firefox/firefox-37.0_beta1.ebuild @@ -223,10 +223,6 @@ src_configure() { # Other ff-specific settings mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} - # Force jit simulators for mips and arm - use jit && use arm && mozconfig_annotate '' --enable-arm-simulator - use jit && use mips && mozconfig_annotate '' --enable-mips-simulator - # Allow for a proper pgo build if use pgo; then echo "mk_add_options PROFILE_GEN_SCRIPT='\$(PYTHON) \$(OBJDIR)/_profile/pgo/profileserver.py'" >> "${S}"/.mozconfig