diff options
author | Alex Alexander <wired@gentoo.org> | 2010-11-10 13:45:38 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2010-11-10 13:45:38 +0000 |
commit | 01fc85c6256dc1b0616069034d5af019a4028870 (patch) | |
tree | e8718b7cc87fe07664ff547bb1747921aeae61e1 /eclass/qt4-build.eclass | |
parent | Added version 0.63 (diff) | |
download | historical-01fc85c6256dc1b0616069034d5af019a4028870.tar.gz historical-01fc85c6256dc1b0616069034d5af019a4028870.tar.bz2 historical-01fc85c6256dc1b0616069034d5af019a4028870.zip |
workaround for bug #344915
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 8 |
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="" |