Gentoo Archives: gentoo-commits

From: "Tobias Heinlein (keytoaster)" <keytoaster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-misc/ksmoothdock/files: ksmoothdock-4.5-gcc43.patch
Date: Tue, 01 Jul 2008 21:35:34
Message-Id: E1KDnVY-0001Cb-QC@stork.gentoo.org
1 keytoaster 08/07/01 21:35:28
2
3 Added: ksmoothdock-4.5-gcc43.patch
4 Log:
5 Fix build with gcc 4.3, patch by Marek Miller.
6 (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 x86_64)
7
8 Revision Changes Path
9 1.1 kde-misc/ksmoothdock/files/ksmoothdock-4.5-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-misc/ksmoothdock/files/ksmoothdock-4.5-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-misc/ksmoothdock/files/ksmoothdock-4.5-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: ksmoothdock-4.5-gcc43.patch
15 ===================================================================
16 --- src/ksmoothdock.h.orig 2008-06-13 22:05:51.000000000 +0000
17 +++ src/ksmoothdock.h 2008-06-13 22:06:06.000000000 +0000
18 @@ -27,6 +27,7 @@
19 #endif
20
21 #include <vector>
22 +#include <memory>
23
24 #include <qwidget.h>
25
26
27 --- src/ksmoothdock.cpp.orig 2008-06-13 22:08:26.000000000 +0000
28 +++ src/ksmoothdock.cpp 2008-06-13 22:08:47.000000000 +0000
29 @@ -24,6 +24,8 @@
30
31 #include <iostream>
32 #include <iterator>
33 +#include <typeinfo>
34 +
35
36 #include <qdir.h>
37
38
39 --- src/buttonisedstate.h.orig 2008-06-13 22:10:48.000000000 +0000
40 +++ src/buttonisedstate.h 2008-06-13 22:11:03.000000000 +0000
41 @@ -20,6 +20,8 @@
42 #ifndef BUTTONISEDSTATE_H
43 #define BUTTONISEDSTATE_H
44
45 +#include <memory>
46 +#include <typeinfo>
47 #include <qobject.h>
48 #include "dockstate.h"
49
50
51 --- src/normalzoomstate.h.orig 2008-06-13 22:13:10.000000000 +0000
52 +++ src/normalzoomstate.h 2008-06-13 22:13:23.000000000 +0000
53 @@ -20,6 +20,8 @@
54 #ifndef NORMALZOOMSTATE_H
55 #define NORMALZOOMSTATE_H
56
57 +#include <memory>
58 +
59 #include <qobject.h>
60 #include "dockstate.h"
61
62
63 --- src/paraboliczoomstate.h.orig 2008-06-13 22:15:19.000000000 +0000
64 +++ src/paraboliczoomstate.h 2008-06-13 22:15:32.000000000 +0000
65 @@ -20,6 +20,8 @@
66 #ifndef PARABOLICZOOMSTATE_H
67 #define PARABOLICZOOMSTATE_H
68
69 +#include <memory>
70 +#include <typeinfo>
71 #include <qobject.h>
72 #include "dockstate.h"
73
74 --- src/normalzoomstate.cpp.orig 2008-06-13 22:22:16.000000000 +0000
75 +++ src/normalzoomstate.cpp 2008-06-13 22:22:28.000000000 +0000
76 @@ -19,6 +19,8 @@
77 ***************************************************************************/
78 #include "normalzoomstate.h"
79
80 +
81 +#include <typeinfo>
82 #include <iostream>
83 #include <unistd.h>
84
85
86 --- src/paraboliczoomstate.cpp.orig 2008-06-13 22:25:09.000000000 +0000
87 +++ src/paraboliczoomstate.cpp 2008-06-13 22:25:33.000000000 +0000
88 @@ -19,6 +19,8 @@
89 ***************************************************************************/
90 #include "paraboliczoomstate.h"
91
92 +
93 +#include <cstdlib>
94 #include <iostream>
95 #include <unistd.h>
96
97
98
99
100
101 --
102 gentoo-commits@l.g.o mailing list