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
commitc821914fff583c157738a180ffdf52efeb6638df (patch)
tree836b08544fb36a456c7a54bcdc1aaf9c8c02db38 /eclass
parentDelete older ebuild. (diff)
downloadhistorical-c821914fff583c157738a180ffdf52efeb6638df.tar.gz
historical-c821914fff583c157738a180ffdf52efeb6638df.tar.bz2
historical-c821914fff583c157738a180ffdf52efeb6638df.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"