diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2004-12-08 22:57:55 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2004-12-08 22:57:55 +0000 |
commit | 182573876a73270d9e782261002429ab1b0ab535 (patch) | |
tree | 71aac7455dd6353dc5c8b84515b614c9f3e9224b /dev-lang/hugs98 | |
parent | stable on ppc-macos (Manifest recommit) (diff) | |
download | gentoo-2-182573876a73270d9e782261002429ab1b0ab535.tar.gz gentoo-2-182573876a73270d9e782261002429ab1b0ab535.tar.bz2 gentoo-2-182573876a73270d9e782261002429ab1b0ab535.zip |
Fixed bug #73611
Diffstat (limited to 'dev-lang/hugs98')
-rw-r--r-- | dev-lang/hugs98/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/hugs98/hugs98-2003.11.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/dev-lang/hugs98/ChangeLog b/dev-lang/hugs98/ChangeLog index 829e2c77d74e..65e1bcc562be 100644 --- a/dev-lang/hugs98/ChangeLog +++ b/dev-lang/hugs98/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/hugs98 # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/hugs98/ChangeLog,v 1.18 2004/12/08 19:50:09 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/hugs98/ChangeLog,v 1.19 2004/12/08 22:57:55 hansmi Exp $ + + 08 Dec 2004; Michael Hanselmann <hansmi@gentoo.org> hugs98-2003.11.ebuild: + Fixed bug #73611. 08 Dec 2004; Michael Hanselmann <hansmi@gentoo.org> hugs98-2003.11.ebuild: Added to ~ppc diff --git a/dev-lang/hugs98/hugs98-2003.11.ebuild b/dev-lang/hugs98/hugs98-2003.11.ebuild index 131947df0379..81309bc29b90 100644 --- a/dev-lang/hugs98/hugs98-2003.11.ebuild +++ b/dev-lang/hugs98/hugs98-2003.11.ebuild @@ -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/dev-lang/hugs98/hugs98-2003.11.ebuild,v 1.9 2004/12/08 19:50:09 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/hugs98/hugs98-2003.11.ebuild,v 1.10 2004/12/08 22:57:55 hansmi Exp $ inherit base flag-o-matic eutils @@ -31,6 +31,11 @@ src_compile() { [ "${ARCH}" = "amd64" ] && append-flags -fPIC + # Strip -O? from CFLAGS because of bugs + # in the garbage collection of gcc on ppc. + # See bug #73611 + [ "${ARCH}" = "ppc" ] && filter-flags "-O?" + if use opengl; then myconf="--enable-hopengl" # the nvidia drivers *seem* not to work together |