summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2017-07-17 10:16:06 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2017-07-17 10:16:06 +0100
commit43aac613f1c2a56aa672c36c157c9b8eb193ac25 (patch)
tree350bf07923d136a3e24006b423ae1ca601107257 /tools
parent46e8b1cfad0012be1d74a32ded0f5f873599b2b4 (diff)
downloadlibnotify-43aac613f1c2a56aa672c36c157c9b8eb193ac25.tar.gz
Conditionall call g_type_init() after a version check
There's no need to call g_type_init() since GLib 2.36, so let's hide it when building against newer versions of GLib.
Diffstat (limited to 'tools')
-rw-r--r--tools/notify-send.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/notify-send.c b/tools/notify-send.c
index cafcf15..abfffe6 100644
--- a/tools/notify-send.c
+++ b/tools/notify-send.c
@@ -173,7 +173,9 @@ main (int argc, char *argv[])
setlocale (LC_ALL, "");
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
g_set_prgname (argv[0]);
g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);