Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfe/files: xfe-1.32.2-missing_Xlib_h.patch
Date: Tue, 02 Nov 2010 12:47:01
Message-Id: 20101102124654.8288220051@flycatcher.gentoo.org
1 ssuominen 10/11/02 12:46:54
2
3 Added: xfe-1.32.2-missing_Xlib_h.patch
4 Log:
5 Fix building with USE="-startup-notification" wrt #343825 by Diego Elio Pettenò.
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-misc/xfe/files/xfe-1.32.2-missing_Xlib_h.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/files/xfe-1.32.2-missing_Xlib_h.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/files/xfe-1.32.2-missing_Xlib_h.patch?rev=1.1&content-type=text/plain
14
15 Index: xfe-1.32.2-missing_Xlib_h.patch
16 ===================================================================
17 http://bugs.gentoo.org/343825
18
19 --- src/ViewWindow.cpp
20 +++ src/ViewWindow.cpp
21 @@ -12,6 +12,8 @@
22 #include <string.h>
23 #include <unistd.h>
24
25 +#include <X11/Xlib.h>
26 +
27 #include <fx.h>
28 #include <fxkeys.h>
29 #include <FXPNGIcon.h>
30 --- src/WriteWindow.cpp
31 +++ src/WriteWindow.cpp
32 @@ -12,6 +12,8 @@
33 #include <unistd.h>
34 #include <signal.h>
35
36 +#include <X11/Xlib.h>
37 +
38 #include <fx.h>
39 #include <fxkeys.h>
40 #include <FXPNGIcon.h>
41 --- src/XFileExplorer.cpp
42 +++ src/XFileExplorer.cpp
43 @@ -8,6 +8,8 @@
44 #include <sys/wait.h>
45 #include <unistd.h>
46
47 +#include <X11/Xlib.h>
48 +
49 #include <fx.h>
50 #include <fxkeys.h>
51 #include <FXPNGIcon.h>