summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Martin <gmsoft@gentoo.org>2004-12-22 21:46:09 +0000
committerGuy Martin <gmsoft@gentoo.org>2004-12-22 21:46:09 +0000
commit7a64a1f4d86557c3373634002261f2d1205c69d9 (patch)
treefbd3b91a7435d652af6cf46c2704f14c69d40c4f /eclass/mozilla.eclass
parentcorrect fix for #74770 (Manifest recommit) (diff)
downloadgentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.tar.gz
gentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.tar.bz2
gentoo-2-7a64a1f4d86557c3373634002261f2d1205c69d9.zip
Forcing --enable-optimize=-O0 on hppa.
Diffstat (limited to 'eclass/mozilla.eclass')
-rw-r--r--eclass/mozilla.eclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/mozilla.eclass b/eclass/mozilla.eclass
index 848558d6be71..2a399c111224 100644
--- a/eclass/mozilla.eclass
+++ b/eclass/mozilla.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla.eclass,v 1.25 2004/11/30 20:44:05 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla.eclass,v 1.26 2004/12/22 21:46:09 gmsoft Exp $
#
# You probably don't want to change this eclass. Newer ebuilds use
# mozconfig.eclass instead.
@@ -63,6 +63,8 @@ mozilla_conf() {
# Set optimization level based on CFLAGS
if is-flag -O0; then
mozilla_annotate "from CFLAGS" --enable-optimize=-O0
+ elif [[ ${ARCH} == hppa ]]; then
+ mozconfig_annotate "more than -O0 causes segfaults on hppa" --enable-optimize=-O0
elif [[ ${ARCH} == alpha || ${ARCH} == amd64 || ${ARCH} == ia64 ]]; then
mozilla_annotate "more than -O1 causes segfaults on 64-bit (bug 33767)" \
--enable-optimize=-O1