summaryrefslogtreecommitdiff
path: root/libraries/libdbusmenu/g_type_init.patch
blob: a050f169e450db491af4c8313b27d1eabc7d487a (plain)
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
--- a/tools/dbusmenu-dumper.c
+++ b/tools/dbusmenu-dumper.c
@@ -388,7 +388,10 @@
 int
 main (int argc, char ** argv)
 {
+#if GLIB_VERSION_CUR_STABLE < G_ENCODE_VERSION(2, 36)
+	// g_type_init is deprecated after 2.36
 	g_type_init();
+#endif
 	GError * error = NULL;
 	GOptionContext * context;
 
--- a/tools/testapp/main.c
+++ b/tools/testapp/main.c
@@ -135,7 +135,10 @@
 
 int main (int argc, char ** argv)
 {
+#if GLIB_VERSION_CUR_STABLE < G_ENCODE_VERSION(2, 36)
+	// g_type_init is deprecated after 2.36
 	g_type_init();
+#endif
 
 	if (argc != 2) {
 		g_warning(USAGE);