diff options
author | 2005-07-16 02:18:13 +0000 | |
---|---|---|
committer | 2005-07-16 02:18:13 +0000 | |
commit | 44f566c969f1292b74e3abb7fd27fbd86163c931 (patch) | |
tree | 727fae7b7b537ed1657026fffdf3801837e63350 /media-gfx/gimp/gimp-2.2.8-r1.ebuild | |
parent | remove pointless code (diff) | |
download | gentoo-2-44f566c969f1292b74e3abb7fd27fbd86163c931.tar.gz gentoo-2-44f566c969f1292b74e3abb7fd27fbd86163c931.tar.bz2 gentoo-2-44f566c969f1292b74e3abb7fd27fbd86163c931.zip |
filter ffast-math because gimp needs accuracy. fixes #98685
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-gfx/gimp/gimp-2.2.8-r1.ebuild')
-rw-r--r-- | media-gfx/gimp/gimp-2.2.8-r1.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media-gfx/gimp/gimp-2.2.8-r1.ebuild b/media-gfx/gimp/gimp-2.2.8-r1.ebuild index 4cb61dc6c556..a68840c78519 100644 --- a/media-gfx/gimp/gimp-2.2.8-r1.ebuild +++ b/media-gfx/gimp/gimp-2.2.8-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.2.8-r1.ebuild,v 1.1 2005/07/01 02:57:59 allanonjl Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.2.8-r1.ebuild,v 1.2 2005/07/16 02:18:13 allanonjl Exp $ inherit flag-o-matic libtool eutils fdo-mime alternatives @@ -94,7 +94,8 @@ src_compile() { replace-flags "-march=k6*" "-march=i586" # gimp uses inline functions (plug-ins/common/grid.c) (#23078) - filter-flags "-fno-inline" + # gimp uses floating point math, needs accuracy (#98685) + filter-flags "-fno-inline" "-ffast-math" if use hardened; then ewarn "hardened use flag suppressing mmx use flag" |