Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/gtksourceviewmm/files: gtksourceviewmm-2.10.2-glib-2.31.patch
Date: Wed, 02 May 2012 07:17:25
Message-Id: 20120502071704.8BECE2004C@flycatcher.gentoo.org
1 tetromino 12/05/02 07:17:04
2
3 Added: gtksourceviewmm-2.10.2-glib-2.31.patch
4 Log:
5 Fix building with >=glib-2.31 (bug #414127, thanks to salamanderrake for reporting).
6
7 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-cpp/gtksourceviewmm/files/gtksourceviewmm-2.10.2-glib-2.31.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtksourceviewmm/files/gtksourceviewmm-2.10.2-glib-2.31.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gtksourceviewmm/files/gtksourceviewmm-2.10.2-glib-2.31.patch?rev=1.1&content-type=text/plain
14
15 Index: gtksourceviewmm-2.10.2-glib-2.31.patch
16 ===================================================================
17 Fix build with glib 2.31
18
19 Patch by Dominique Leuenberger <dimstar@××××××××.org>
20
21 https://bugzilla.gnome.org/show_bug.cgi?id=666651
22
23 Index: gtksourceviewmm-2.10.2/gtksourceview/gtksourceviewmm/sourceiter.cc
24 ===================================================================
25 --- a/gtksourceviewmm-2.10.2/gtksourceview/gtksourceviewmm/sourceiter.cc
26 +++ b/gtksourceviewmm-2.10.2/gtksourceview/gtksourceviewmm/sourceiter.cc
27 @@ -28,7 +28,7 @@
28 */
29
30 #include "sourceiter.h"
31 -#include <glib/gmessages.h>
32 +#include <glib.h>
33 #include <gtksourceview/gtksourceview-typebuiltins.h>
34 namespace gtksourceview
35 {
36 Index: gtksourceviewmm-2.10.2/gtksourceview/src/sourceiter.ccg
37 ===================================================================
38 --- a/gtksourceviewmm-2.10.2/gtksourceview/src/sourceiter.ccg
39 +++ b/gtksourceviewmm-2.10.2/gtksourceview/src/sourceiter.ccg
40 @@ -21,7 +21,7 @@
41 */
42
43 #include "sourceiter.h"
44 -#include <glib/gmessages.h>
45 +#include <glib.h>
46 #include <gtksourceview/gtksourceview-typebuiltins.h>
47 namespace gtksourceview
48 {
49 Index: gtksourceviewmm-2.10.2/tests/search/main.cc
50 ===================================================================
51 --- a/gtksourceviewmm-2.10.2/tests/search/main.cc
52 +++ b/gtksourceviewmm-2.10.2/tests/search/main.cc
53 @@ -6,7 +6,7 @@
54 #include <cstring>
55 #include <gtkmm.h>
56 #include <gtksourceviewmm.h>
57 -#include <glib/gmessages.h>
58 +#include <glib.h>
59
60 using namespace std ;
61 using namespace Gtk;