blob: 063bea618d33878b1bb1e811d99ffe2133239300 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 5b859b6e7c82f49d967c25398a8e75b61af9bcc0 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 12 Jun 2013 20:58:51 -0700
4Subject: [PATCH] g_type_init() is deprecated for glib >= 2.35.0
5
6Call it for old versions.
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9
10Upstream-Status: Pending
11---
12 examples/list-known-gps-devices.c | 4 ++--
13 examples/simple-gps-dbus.c | 3 ++-
14 examples/simple-gps-gypsy.c | 4 ++--
15 examples/simple-gps-satellites.c | 4 ++--
16 gypsy/gypsy-marshal.c | 2 +-
17 src/main.c | 4 ++--
18 6 files changed, 11 insertions(+), 10 deletions(-)
19
20diff --git a/examples/list-known-gps-devices.c b/examples/list-known-gps-devices.c
21index c7c4059..0a8b04b 100644
22--- a/examples/list-known-gps-devices.c
23+++ b/examples/list-known-gps-devices.c
24@@ -20,9 +20,9 @@ main (int argc,
25 GError *error = NULL;
26 GPtrArray *known_devices;
27 int i;
28-
29+#if !GLIB_CHECK_VERSION(2,35,0)
30 g_type_init ();
31-
32+#endif
33 discovery = gypsy_discovery_new ();
34 known_devices = gypsy_discovery_list_devices (discovery, &error);
35
36diff --git a/examples/simple-gps-dbus.c b/examples/simple-gps-dbus.c
37index f7044e6..76b18aa 100644
38--- a/examples/simple-gps-dbus.c
39+++ b/examples/simple-gps-dbus.c
40@@ -121,8 +121,9 @@ main (int argc,
41 DBusConnection *conn;
42 DBusError error;
43 GMainLoop *mainloop;
44-
45+#if !GLIB_CHECK_VERSION(2,35,0)
46 g_type_init ();
47+#endif
48 conn = get_connection ();
49
50 dbus_error_init (&error);
51diff --git a/examples/simple-gps-gypsy.c b/examples/simple-gps-gypsy.c
52index 0b6b7a6..86033d9 100644
53--- a/examples/simple-gps-gypsy.c
54+++ b/examples/simple-gps-gypsy.c
55@@ -67,9 +67,9 @@ main (int argc,
56 g_print ("Usage: %s device\n", argv[0]);
57 return 0;
58 }
59-
60+#if !GLIB_CHECK_VERSION(2,35,0)
61 g_type_init ();
62-
63+#endif
64 control = gypsy_control_get_default ();
65 path = gypsy_control_create (control, argv[1], &error);
66 if (path == NULL) {
67diff --git a/examples/simple-gps-satellites.c b/examples/simple-gps-satellites.c
68index 140c98f..9a3f95a 100644
69--- a/examples/simple-gps-satellites.c
70+++ b/examples/simple-gps-satellites.c
71@@ -42,9 +42,9 @@ main (int argc,
72 g_print ("Usage: %s device\n", argv[0]);
73 return 0;
74 }
75-
76+#if !GLIB_CHECK_VERSION(2,35,0)
77 g_type_init ();
78-
79+#endif
80 control = gypsy_control_get_default ();
81 path = gypsy_control_create (control, argv[1], &error);
82 if (path == NULL) {
83diff --git a/gypsy/gypsy-marshal.c b/gypsy/gypsy-marshal.c
84index 6964644..9ac0095 100644
85--- a/gypsy/gypsy-marshal.c
86+++ b/gypsy/gypsy-marshal.c
87@@ -5,7 +5,7 @@
88
89 #ifdef G_ENABLE_DEBUG
90 #define g_marshal_value_peek_boolean(v) g_value_get_boolean (v)
91-#define g_marshal_value_peek_char(v) g_value_get_char (v)
92+#define g_marshal_value_peek_char(v) g_value_get_schar (v)
93 #define g_marshal_value_peek_uchar(v) g_value_get_uchar (v)
94 #define g_marshal_value_peek_int(v) g_value_get_int (v)
95 #define g_marshal_value_peek_uint(v) g_value_get_uint (v)
96diff --git a/src/main.c b/src/main.c
97index 3e8a794..ec980e5 100644
98--- a/src/main.c
99+++ b/src/main.c
100@@ -187,9 +187,9 @@ main (int argc,
101 g_option_context_free (context);
102
103 umask (022);
104-
105+#if !GLIB_CHECK_VERSION(2,35,0)
106 g_type_init ();
107-
108+#endif
109 mainloop = g_main_loop_new (NULL, FALSE);
110
111 conn = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
112--
1131.7.9.5
114