diff options
author | 2002-05-14 17:33:22 +0000 | |
---|---|---|
committer | 2002-05-14 17:33:22 +0000 | |
commit | 6a5dfcad1477dfb3838884c66ed507791ed4e87f (patch) | |
tree | f64f2945c06ec556a5abb0c1c0b5d18da311107c /media-gfx/povray | |
parent | Fix to install to /usr instead of / (bug# 2565), submitted by Nicholas Jones.... (diff) | |
download | gentoo-2-6a5dfcad1477dfb3838884c66ed507791ed4e87f.tar.gz gentoo-2-6a5dfcad1477dfb3838884c66ed507791ed4e87f.tar.bz2 gentoo-2-6a5dfcad1477dfb3838884c66ed507791ed4e87f.zip |
Worked around a bug in icc/povray when you compile povray with icc support on a
P3. Bascially just removed "-ip" from CFLAGS
Diffstat (limited to 'media-gfx/povray')
-rw-r--r-- | media-gfx/povray/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/povray/povray-3.1g-r4.ebuild | 9 |
2 files changed, 11 insertions, 5 deletions
diff --git a/media-gfx/povray/ChangeLog b/media-gfx/povray/ChangeLog index 56d77a85edd6..cbbd881dbd31 100644 --- a/media-gfx/povray/ChangeLog +++ b/media-gfx/povray/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for <CATEGORY>/<PACKAGE_NAME> # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.5 2002/04/27 23:45:20 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.6 2002/05/14 17:33:22 sandymac Exp $ + + 14 May 2002; William McArthur <sandymac@gentoo.org> + + rphillips found a problem where -ip causes segfaults on P3 cpus. I removed + -ip from the default case. *povray-3.1g-r4 (19 Apr 2002) diff --git a/media-gfx/povray/povray-3.1g-r4.ebuild b/media-gfx/povray/povray-3.1g-r4.ebuild index fb076ba1968a..d6913b2560f1 100644 --- a/media-gfx/povray/povray-3.1g-r4.ebuild +++ b/media-gfx/povray/povray-3.1g-r4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Achim Gottinger <achim@gentoo.org>, William McArthur <sandymac@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.1g-r4.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.1g-r4.ebuild,v 1.3 2002/05/14 17:33:22 sandymac Exp $ S=${WORKDIR}/povray31 DESCRIPTION="POV Ray- The Persistance of Vision Ray Tracer" @@ -57,11 +57,12 @@ src_compile() { # If you have a P4 add -tpp7 after the -O3 # If you want lean/mean replace -axiMKW with -x? (see icc docs for -x) # Note: -ipo breaks povray - echo "s/^CFLAGS =/CFLAGS = -O3 -axiMKW -ip /" >> makefile.sed + # Note: -ip breaks povray on a P3 + echo "s/^CFLAGS =/CFLAGS = -O3 -axiMKW /" >> makefile.sed # This is optimized for my Pentium 2: #echo "s/^CFLAGS =/CFLAGS = -O3 -xM -ip /" >> makefile.sed - # This is optimized for Pentium 3 (untested, I don't own one): - #echo "s/^CFLAGS =/CFLAGS = -O3 -xK -ip /" >> makefile.sed + # This is optimized for Pentium 3 (semi-untested, I don't own one): + #echo "s/^CFLAGS =/CFLAGS = -O3 -xK /" >> makefile.sed # This is optimized for Pentium 4 (untested, I don't own one): #echo "s/^CFLAGS =/CFLAGS = -O3 -xW -ip -tpp7 /" >> makefile.sed |