Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/systemsettings/files: systemsettings-4.9.0-parallel-build.patch
Date: Tue, 21 Aug 2012 20:58:24
Message-Id: 20120821202158.8989C20280@flycatcher.gentoo.org
1 johu 12/08/21 20:21:58
2
3 Added: systemsettings-4.9.0-parallel-build.patch
4 Log:
5 Add upstream patch to fix build with aggressive parallel compile options wrt bug #430940.
6
7 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 kde-base/systemsettings/files/systemsettings-4.9.0-parallel-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/systemsettings/files/systemsettings-4.9.0-parallel-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/systemsettings/files/systemsettings-4.9.0-parallel-build.patch?rev=1.1&content-type=text/plain
14
15 Index: systemsettings-4.9.0-parallel-build.patch
16 ===================================================================
17 commit 00578c3036e0a267cd50e63d3745264a533d1899
18 Author: Christoph Feck <christoph@××××××.de>
19 Date: Mon Aug 13 16:41:37 2012 +0200
20
21 Use forward declaration
22
23 Instead of including a file from another target, which might
24 not have been generated yet.
25
26 BUG: 304987
27 FIXED-IN: 4.9.1
28 (cherry picked from commit 46b9acb42eed48f0fd3b9d2391dc8a217003cafc)
29
30 diff --git a/kcontrol/randr/randrconfig.h b/kcontrol/randr/randrconfig.h
31 index 37f7b57..86fdefc 100644
32 --- a/kcontrol/randr/randrconfig.h
33 +++ b/kcontrol/randr/randrconfig.h
34 @@ -22,7 +22,6 @@
35
36 #include "ui_randrconfigbase.h"
37 #include "randr.h"
38 -#include "outputconfig.h"
39
40 #include <QWidget>
41 #include <QTimer>
42 @@ -33,6 +32,9 @@ class CollapsibleWidget;
43 class RandRDisplay;
44 class OutputGraphicsItem;
45 class LayoutManager;
46 +class OutputConfig;
47 +
48 +typedef QList<OutputConfig*> OutputConfigList;
49
50 class RandRConfig : public QWidget, public Ui::RandRConfigBase
51 {