diff options
author | David Holm <dholm@gentoo.org> | 2004-03-07 15:51:49 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-03-07 15:51:49 +0000 |
commit | 4dad09103e27700df134c76a826378530ec9cb79 (patch) | |
tree | 6f6217861ef532b8300ead90f8a0f73419aa6a14 /app-emulation/uae | |
parent | Marked as stable. (diff) | |
download | historical-4dad09103e27700df134c76a826378530ec9cb79.tar.gz historical-4dad09103e27700df134c76a826378530ec9cb79.tar.bz2 historical-4dad09103e27700df134c76a826378530ec9cb79.zip |
Replace -O3 with -O2
Diffstat (limited to 'app-emulation/uae')
-rw-r--r-- | app-emulation/uae/uae-0.8.25_pre20040302.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app-emulation/uae/uae-0.8.25_pre20040302.ebuild b/app-emulation/uae/uae-0.8.25_pre20040302.ebuild index 899f17503f6f..7387b911904a 100644 --- a/app-emulation/uae/uae-0.8.25_pre20040302.ebuild +++ b/app-emulation/uae/uae-0.8.25_pre20040302.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.25_pre20040302.ebuild,v 1.4 2004/03/07 15:50:34 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.25_pre20040302.ebuild,v 1.5 2004/03/07 15:51:49 dholm Exp $ inherit flag-o-matic @@ -22,6 +22,7 @@ DEPEND="X? ( virtual/x11 gtk? x11-libs/gtk+ ) : games-emulation/caps" src_compile() { + # -O3 breaks compilation, GCC will eat all your RAM + Swap and die replace-flags "-O3" "-O2" use sdl && myconf="--with-sdl-sound --with-sdl-gfx" |