Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gluon/files: gluon-0.71.0-gcc-4.7.patch
Date: Sun, 24 Jun 2012 17:13:57
Message-Id: 20120624171348.85A132004C@flycatcher.gentoo.org
1 kensington 12/06/24 17:13:48
2
3 Added: gluon-0.71.0-gcc-4.7.patch
4 Log:
5 Version bump. Add a patch from upstream to fix build with GCC 4.7, wrt bug #423337.
6
7 (Portage version: 2.1.11.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-libs/gluon/files/gluon-0.71.0-gcc-4.7.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/files/gluon-0.71.0-gcc-4.7.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/files/gluon-0.71.0-gcc-4.7.patch?rev=1.1&content-type=text/plain
14
15 Index: gluon-0.71.0-gcc-4.7.patch
16 ===================================================================
17 commit bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
18 Author: Christoph Feck <christoph@××××××.de>
19 Date: Fri Mar 23 23:35:09 2012 +0100
20
21 Fix includes
22
23 diff --git a/input/linux/detectlinux.cpp b/input/linux/detectlinux.cpp
24 index 632249a..6ae85a4 100644
25 --- a/input/linux/detectlinux.cpp
26 +++ b/input/linux/detectlinux.cpp
27 @@ -26,6 +26,7 @@
28
29 #include <QtCore/QDir>
30
31 +#include <unistd.h>
32 // #include <libudev.h>
33
34 using namespace GluonInput;
35 diff --git a/input/linux/inputthread.cpp b/input/linux/inputthread.cpp
36 index f92b104..202745e 100644
37 --- a/input/linux/inputthread.cpp
38 +++ b/input/linux/inputthread.cpp
39 @@ -30,6 +30,7 @@
40 // #include <QtCore/QStringList>
41
42 #include <fcntl.h>
43 +#include <unistd.h>
44 #include <sys/stat.h>
45 #include <sys/types.h>
46 #include <linux/input.h>