diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 04:02:30 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 04:02:30 +0000 |
commit | 718d4012b4b9e5416e2c1ca631a54bc9fce85604 (patch) | |
tree | 247109f791d35b42e38930a492fe5d4bbf8f7dd1 /net-www | |
parent | update tarball used. (diff) | |
download | gentoo-2-718d4012b4b9e5416e2c1ca631a54bc9fce85604.tar.gz gentoo-2-718d4012b4b9e5416e2c1ca631a54bc9fce85604.tar.bz2 gentoo-2-718d4012b4b9e5416e2c1ca631a54bc9fce85604.zip |
add fix from Weeve for non x86 and ppc archs
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mozilla/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-1.2.1-r3.ebuild | 10 |
2 files changed, 14 insertions, 3 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog index 2f0c77461cd1..7d190cbc873f 100644 --- a/net-www/mozilla/ChangeLog +++ b/net-www/mozilla/ChangeLog @@ -1,6 +1,11 @@ # 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.71 2002/12/16 02:30:06 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.72 2002/12/16 04:02:30 azarah Exp $ + + 16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.1-r3.ebuild : + + Currently --enable-elf-dynstr-gc only works for x86 and ppc, thanks + to Jason Wever <weeve@gentoo.org> for the fix. *mozilla-1.2.1-r3 (16 Dec 2002) diff --git a/net-www/mozilla/mozilla-1.2.1-r3.ebuild b/net-www/mozilla/mozilla-1.2.1-r3.ebuild index f6a4a5825679..2bd1ba33b6d4 100644 --- a/net-www/mozilla/mozilla-1.2.1-r3.ebuild +++ b/net-www/mozilla/mozilla-1.2.1-r3.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-r3.ebuild,v 1.1 2002/12/16 02:30:06 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.1-r3.ebuild,v 1.2 2002/12/16 04:02:30 azarah Exp $ IUSE="java crypt ipv6 gtk2 ssl ldap gnome" # Internal USE flags that I do not really want to advertise ... @@ -232,9 +232,15 @@ src_compile() { --disable-dtd-debug \ --enable-reorder \ --enable-strip \ - --enable-elf-dynstr-gc \ --enable-cpp-rtti" + # Currently --enable-elf-dynstr-gc only works for x86 and ppc, + # thanks to Jason Wever <weeve@gentoo.org> for the fix. + if [ -n "`use x86`" -o -n "`use ppc`" ] + then + myconf="${myconf} --enable-elf-dynstr-gc" + fi + if [ -z "`use gtk2`" ] then myconf="${myconf} --disable-accessibility \ |