summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlex Alexander <wired@gentoo.org>2010-11-10 13:45:38 +0000
committerAlex Alexander <wired@gentoo.org>2010-11-10 13:45:38 +0000
commita6a9179de98418cad570d28c4dbeaf85819b5ae1 (patch)
tree5c6ce037ae05d9dae2983053747456880e6dcc7c /eclass
parentAdded version 0.63 (diff)
downloadgentoo-2-a6a9179de98418cad570d28c4dbeaf85819b5ae1.tar.gz
gentoo-2-a6a9179de98418cad570d28c4dbeaf85819b5ae1.tar.bz2
gentoo-2-a6a9179de98418cad570d28c4dbeaf85819b5ae1.zip
workaround for bug #344915
Diffstat (limited to 'eclass')
-rw-r--r--eclass/qt4-build.eclass8
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index b515626b8392..eae1f8fc44bb 100644
--- a/eclass/qt4-build.eclass
+++ b/eclass/qt4-build.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.84 2010/10/13 19:33:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.85 2010/11/10 13:45:38 wired Exp $
# @ECLASS: qt4-build.eclass
# @MAINTAINER:
@@ -331,6 +331,12 @@ qt4-build_src_configure() {
myconf+=" $(pkg-config --cflags freetype2)"
fi
+ # Disable SSE4.x, since auto-detection is currently broken
+ # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623
+ if version_is_at_least 4.7.1; then
+ myconf+=" -no-sse4.1 -no-sse4.2"
+ fi
+
echo ./configure ${myconf}
./configure ${myconf} || die "./configure failed"
myconf=""