1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
diff -ru gq-1.3.4.orig/src/glib-helpers.c gq-1.3.4/src/glib-helpers.c
--- gq-1.3.4.orig/src/glib-helpers.c 2012-08-28 16:44:00.844858395 +0200
+++ gq-1.3.4/src/glib-helpers.c 2012-08-28 16:45:32.832447086 +0200
@@ -23,8 +23,7 @@
#include "glib-helpers.h"
-#include <glib/gmessages.h>
-#include <glib/gunicode.h>
+#include <glib.h>
GList*
g_list_copy_reversed(GList* list) {
diff -ru gq-1.3.4.orig/src/glib-helpers.h gq-1.3.4/src/glib-helpers.h
--- gq-1.3.4.orig/src/glib-helpers.h 2012-08-28 16:44:00.816659875 +0200
+++ gq-1.3.4/src/glib-helpers.h 2012-08-28 16:45:32.796191846 +0200
@@ -24,7 +24,7 @@
#ifndef GLIB_HELPERS_H
#define GLIB_HELPERS_H
-#include <glib/glist.h>
+#include <glib.h>
G_BEGIN_DECLS
diff -ru gq-1.3.4.orig/src/gq-hash.h gq-1.3.4/src/gq-hash.h
--- gq-1.3.4.orig/src/gq-hash.h 2012-08-28 16:44:00.784432994 +0200
+++ gq-1.3.4/src/gq-hash.h 2012-08-28 16:45:32.699511206 +0200
@@ -24,7 +24,7 @@
#ifndef GQ_ENCRYPTION_H
#define GQ_ENCRYPTION_H
-#include <glib/garray.h>
+#include <glib.h>
#include "gq-utilities.h"
G_BEGIN_DECLS
diff -ru gq-1.3.4.orig/src/gq-main-loop.h gq-1.3.4/src/gq-main-loop.h
--- gq-1.3.4.orig/src/gq-main-loop.h 2012-08-28 16:44:00.812631515 +0200
+++ gq-1.3.4/src/gq-main-loop.h 2012-08-28 16:45:32.788135126 +0200
@@ -24,7 +24,7 @@
#ifndef GQ_MAIN_LOOP_H
#define GQ_MAIN_LOOP_H
-#include <glib/gtypes.h>
+#include <glib.h>
G_BEGIN_DECLS
diff -ru gq-1.3.4.orig/src/gq-stack.c gq-1.3.4/src/gq-stack.c
--- gq-1.3.4.orig/src/gq-stack.c 2012-08-28 16:44:00.824716595 +0200
+++ gq-1.3.4/src/gq-stack.c 2012-08-28 16:45:32.808276926 +0200
@@ -23,9 +23,7 @@
#include "gq-stack.h"
-#include <glib/gmem.h>
-#include <glib/gmessages.h>
-#include <glib/glist.h>
+#include <glib.h>
#undef DEBUG_STACK
diff -ru gq-1.3.4.orig/src/gq-stack.h gq-1.3.4/src/gq-stack.h
--- gq-1.3.4.orig/src/gq-stack.h 2012-08-28 16:44:00.832773315 +0200
+++ gq-1.3.4/src/gq-stack.h 2012-08-28 16:45:32.816333646 +0200
@@ -24,7 +24,7 @@
#ifndef GQ_STACK_H
#define GQ_STACK_H
-#include <glib/gtypes.h>
+#include <glib.h>
G_BEGIN_DECLS
diff -ru gq-1.3.4.orig/src/gq-tab.h gq-1.3.4/src/gq-tab.h
--- gq-1.3.4.orig/src/gq-tab.h 2012-08-28 16:44:00.844858395 +0200
+++ gq-1.3.4/src/gq-tab.h 2012-08-28 16:45:32.828418726 +0200
@@ -24,7 +24,7 @@
#ifndef GQ_TAB_H
#define GQ_TAB_H
-#include <glib/gmacros.h>
+#include <glib.h>
G_BEGIN_DECLS
diff -ru gq-1.3.4.orig/src/state.c gq-1.3.4/src/state.c
--- gq-1.3.4.orig/src/state.c 2012-08-28 16:44:00.804574794 +0200
+++ gq-1.3.4/src/state.c 2012-08-28 16:45:32.780078406 +0200
@@ -35,8 +35,8 @@
#include <fcntl.h>
#include <errno.h>
#include <glib/gi18n.h>
-#include <glib/gmessages.h>
+#include <glib.h>
#include <gtk/gtk.h>
#include "configfile.h"
diff -ru gq-1.3.4.orig/src/syntax.h gq-1.3.4/src/syntax.h
--- gq-1.3.4.orig/src/syntax.h 2012-08-28 16:44:00.877085275 +0200
+++ gq-1.3.4/src/syntax.h 2012-08-28 16:45:32.840503807 +0200
@@ -27,7 +27,7 @@
#ifndef GQ_SYNTAX_H_INCLUDED
#define GQ_SYNTAX_H_INCLUDED
-#include <glib/gmacros.h>
+#include <glib.h>
G_BEGIN_DECLS
|