summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-12-05 18:08:38 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-12-05 18:08:38 +0000
commit2c391be8062d8298a6e49212713612eb92db374a (patch)
tree66c8db1394684b6bcd727c156e3a886c7503443b /net-www/mozilla
parentmade zlib required (diff)
downloadgentoo-2-2c391be8062d8298a6e49212713612eb92db374a.tar.gz
gentoo-2-2c391be8062d8298a6e49212713612eb92db374a.tar.bz2
gentoo-2-2c391be8062d8298a6e49212713612eb92db374a.zip
apply pentium4 fix again for all gcc3 versions
Diffstat (limited to 'net-www/mozilla')
-rw-r--r--net-www/mozilla/ChangeLog5
-rw-r--r--net-www/mozilla/mozilla-1.2.1.ebuild9
2 files changed, 7 insertions, 7 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog
index dcdc31141df5..d12f3a36f2e3 100644
--- a/net-www/mozilla/ChangeLog
+++ b/net-www/mozilla/ChangeLog
@@ -1,12 +1,15 @@
# ChangeLog for net-www/mozilla
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.61 2002/12/05 14:16:44 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.62 2002/12/05 18:08:38 azarah Exp $
05 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1.ebuild :
Fix digest again. Hope mozilla devs dont make changing the tarball a
habit ..
+ Seems gcc-3.2.1 is not stable enouth yet to handle -march=pentium4, so
+ change pentium4 to pentium3 again for all gcc3's
+
*mozilla-1.2.1 (05 Dec 2002)
05 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1.ebuild :
diff --git a/net-www/mozilla/mozilla-1.2.1.ebuild b/net-www/mozilla/mozilla-1.2.1.ebuild
index 161dc571389a..9324ca2f275e 100644
--- a/net-www/mozilla/mozilla-1.2.1.ebuild
+++ b/net-www/mozilla/mozilla-1.2.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.1.ebuild,v 1.2 2002/12/05 14:16:44 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.1.ebuild,v 1.3 2002/12/05 18:08:38 azarah Exp $
IUSE="java crypt ipv6 gtk2 ssl ldap gnome"
# Internal USE flags that I do not really want to advertise ...
@@ -325,11 +325,8 @@ src_compile() {
# Currently gcc-3.2 or older do not work well if we specify "-march"
# and other optimizations for pentium4.
- if [ "$(${CC} -dumpversion | sed -e 's:\.::g')" -lt "321" ]
- then
- export CFLAGS="${CFLAGS/pentium4/pentium3}"
- export CXXFLAGS="${CXXFLAGS/pentium4/pentium3}"
- fi
+ export CFLAGS="${CFLAGS/-march=pentium4/-march=pentium3}"
+ export CXXFLAGS="${CXXFLAGS/-march=pentium4/-march=pentium3}"
# Enable us to use flash, etc plugins compiled with gcc-2.95.3
if [ "${ARCH}" = "x86" ]