summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2007-08-12 05:12:36 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2007-08-12 05:12:36 +0000
commit42255bb2f9d34d851fa34407c1f377094a3078ad (patch)
treedfb6c2c7cb1031931eaeaff6914f37a6a4c9bd9c /media-libs/mesa
parentRemoving old version. (diff)
downloadgentoo-2-42255bb2f9d34d851fa34407c1f377094a3078ad.tar.gz
gentoo-2-42255bb2f9d34d851fa34407c1f377094a3078ad.tar.bz2
gentoo-2-42255bb2f9d34d851fa34407c1f377094a3078ad.zip
Backport GCC 4.2 -O2 workaround for ivopts bug from 7.0.1.
(Portage version: 2.1.3.3)
Diffstat (limited to 'media-libs/mesa')
-rw-r--r--media-libs/mesa/ChangeLog7
-rw-r--r--media-libs/mesa/mesa-6.5-r3.ebuild7
-rw-r--r--media-libs/mesa/mesa-6.5.1-r1.ebuild7
-rw-r--r--media-libs/mesa/mesa-6.5.1-r4.ebuild7
-rw-r--r--media-libs/mesa/mesa-6.5.2-r1.ebuild7
-rw-r--r--media-libs/mesa/mesa-6.5.2.ebuild7
-rw-r--r--media-libs/mesa/mesa-6.5.3.ebuild7
7 files changed, 42 insertions, 7 deletions
diff --git a/media-libs/mesa/ChangeLog b/media-libs/mesa/ChangeLog
index e770472a6a04..131750424118 100644
--- a/media-libs/mesa/ChangeLog
+++ b/media-libs/mesa/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/mesa
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.156 2007/08/11 08:47:04 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.157 2007/08/12 05:12:36 dberkholz Exp $
+
+ 12 Aug 2007; Donnie Berkholz <dberkholz@gentoo.org>; mesa-6.5-r3.ebuild,
+ mesa-6.5.1-r1.ebuild, mesa-6.5.1-r4.ebuild, mesa-6.5.2.ebuild,
+ mesa-6.5.2-r1.ebuild, mesa-6.5.3.ebuild:
+ Backport GCC 4.2 -O2 workaround for ivopts bug from 7.0.1.
*mesa-7.0.1 (11 Aug 2007)
diff --git a/media-libs/mesa/mesa-6.5-r3.ebuild b/media-libs/mesa/mesa-6.5-r3.ebuild
index 025812a97088..5d36a5ec7352 100644
--- a/media-libs/mesa/mesa-6.5-r3.ebuild
+++ b/media-libs/mesa/mesa-6.5-r3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5-r3.ebuild,v 1.16 2007/07/30 07:40:08 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5-r3.ebuild,v 1.17 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability
@@ -69,6 +69,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if [[ ${KERNEL} == "FreeBSD" ]]; then
CONFIG="freebsd"
elif use x86; then
diff --git a/media-libs/mesa/mesa-6.5.1-r1.ebuild b/media-libs/mesa/mesa-6.5.1-r1.ebuild
index bb6fe3f169b0..82e971f9f37c 100644
--- a/media-libs/mesa/mesa-6.5.1-r1.ebuild
+++ b/media-libs/mesa/mesa-6.5.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.1-r1.ebuild,v 1.15 2007/07/30 07:40:08 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.1-r1.ebuild,v 1.16 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability
@@ -70,6 +70,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if use x86-fbsd; then
CONFIG="freebsd-dri-x86"
elif use amd64-fbsd; then
diff --git a/media-libs/mesa/mesa-6.5.1-r4.ebuild b/media-libs/mesa/mesa-6.5.1-r4.ebuild
index 3e8b1be224d8..ab252ff91d26 100644
--- a/media-libs/mesa/mesa-6.5.1-r4.ebuild
+++ b/media-libs/mesa/mesa-6.5.1-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.1-r4.ebuild,v 1.5 2007/07/30 07:40:08 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.1-r4.ebuild,v 1.6 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability
@@ -80,6 +80,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if use x86-fbsd; then
CONFIG="freebsd-dri-x86"
elif use amd64-fbsd; then
diff --git a/media-libs/mesa/mesa-6.5.2-r1.ebuild b/media-libs/mesa/mesa-6.5.2-r1.ebuild
index fcc8360e0a28..c676d20e764d 100644
--- a/media-libs/mesa/mesa-6.5.2-r1.ebuild
+++ b/media-libs/mesa/mesa-6.5.2-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.2-r1.ebuild,v 1.13 2007/08/07 12:48:39 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.2-r1.ebuild,v 1.14 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability
@@ -80,6 +80,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if use x86-fbsd; then
CONFIG="freebsd-dri-x86"
elif use amd64-fbsd; then
diff --git a/media-libs/mesa/mesa-6.5.2.ebuild b/media-libs/mesa/mesa-6.5.2.ebuild
index 3bad18968cde..eebc5141d852 100644
--- a/media-libs/mesa/mesa-6.5.2.ebuild
+++ b/media-libs/mesa/mesa-6.5.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.2.ebuild,v 1.7 2007/07/30 07:40:08 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.2.ebuild,v 1.8 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability
@@ -80,6 +80,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if use x86-fbsd; then
CONFIG="freebsd-dri-x86"
elif use amd64-fbsd; then
diff --git a/media-libs/mesa/mesa-6.5.3.ebuild b/media-libs/mesa/mesa-6.5.3.ebuild
index 66c1a8faa3c9..7a12411f9477 100644
--- a/media-libs/mesa/mesa-6.5.3.ebuild
+++ b/media-libs/mesa/mesa-6.5.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.3.ebuild,v 1.5 2007/08/01 21:48:29 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5.3.ebuild,v 1.6 2007/08/12 05:12:36 dberkholz Exp $
inherit eutils toolchain-funcs multilib flag-o-matic portability versionator
@@ -85,6 +85,11 @@ pkg_setup() {
append-flags -fno-strict-aliasing
+ # gcc 4.2 has buggy ivopts
+ if [[ $(gcc-version) = "4.2" ]]; then
+ append-flags -fno-ivopts
+ fi
+
if use x86-fbsd; then
CONFIG="freebsd-dri-x86"
elif use amd64-fbsd; then