summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlex Alexander <wired@gentoo.org>2011-03-03 21:39:29 +0000
committerAlex Alexander <wired@gentoo.org>2011-03-03 21:39:29 +0000
commitc62cdc88c7ce3ab31a7a6aa352d49f9f16e2f05b (patch)
tree8767bba2f197537b1f885ffa1587ae0d9bde946d /eclass
parentDelete older ebuild. (diff)
downloadgentoo-2-c62cdc88c7ce3ab31a7a6aa352d49f9f16e2f05b.tar.gz
gentoo-2-c62cdc88c7ce3ab31a7a6aa352d49f9f16e2f05b.tar.bz2
gentoo-2-c62cdc88c7ce3ab31a7a6aa352d49f9f16e2f05b.zip
enabled support for sse4 in qt-4.7.2, bug #344915
Diffstat (limited to 'eclass')
-rw-r--r--eclass/qt4-build.eclass6
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index c1f3db52b8e7..78655ddd26c8 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.88 2011/01/20 23:08:09 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.89 2011/03/03 21:39:29 wired Exp $
# @ECLASS: qt4-build.eclass
# @MAINTAINER:
@@ -335,9 +335,7 @@ qt4-build_src_configure() {
# 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
+ [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2"
echo ./configure ${myconf}
./configure ${myconf} || die "./configure failed"