Gentoo Archives: gentoo-commits

From: "Davide Pesavento (pesa)" <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog qt4-build.eclass
Date: Wed, 21 Dec 2011 22:36:58
Message-Id: 20111221223647.397072004B@flycatcher.gentoo.org
1 pesa 11/12/21 22:36:47
2
3 Modified: ChangeLog qt4-build.eclass
4 Log:
5 Remove obsolete workaround.
6
7 Revision Changes Path
8 1.51 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.51&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.51&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.50&r2=1.51
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.50
18 retrieving revision 1.51
19 diff -u -r1.50 -r1.51
20 --- ChangeLog 18 Dec 2011 23:38:11 -0000 1.50
21 +++ ChangeLog 21 Dec 2011 22:36:47 -0000 1.51
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.50 2011/12/18 23:38:11 robbat2 Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.51 2011/12/21 22:36:47 pesa Exp $
27 +
28 + 21 Dec 2011; Davide Pesavento <pesa@g.o> qt4-build.eclass:
29 + Remove obsolete workaround.
30
31 18 Dec 2011; Robin H. Johnson <robbat2@g.o> python.eclass:
32 Bug #390691: Be careful about cp call to coreutils with --no-preserve option
33
34
35
36 1.105 eclass/qt4-build.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.105&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.105&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?r1=1.104&r2=1.105
41
42 Index: qt4-build.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v
45 retrieving revision 1.104
46 retrieving revision 1.105
47 diff -u -r1.104 -r1.105
48 --- qt4-build.eclass 16 Dec 2011 20:02:48 -0000 1.104
49 +++ qt4-build.eclass 21 Dec 2011 22:36:47 -0000 1.105
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.104 2011/12/16 20:02:48 abcd Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.105 2011/12/21 22:36:47 pesa Exp $
55
56 # @ECLASS: qt4-build.eclass
57 # @MAINTAINER:
58 @@ -367,10 +367,6 @@
59 myconf+=" $(pkg-config --cflags freetype2)"
60 fi
61
62 - # Disable SSE4.x, since auto-detection is currently broken
63 - # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623
64 - [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2"
65 -
66 echo ./configure ${myconf}
67 ./configure ${myconf} || die "./configure failed"
68 myconf=""