summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2012-12-16 02:45:22 -0800
committerStefano Karapetsas <[email protected]>2012-12-16 02:45:22 -0800
commitfcd918a52f3b3c37e806a9391092bdbff980b00f (patch)
tree62542a31a96be45556b68b42dcb46516918e09b8
parent8b041cf52c62250df59c47bd5dc86364da19e6a1 (diff)
parenta507ce95f07547efe26b07b12fecdd85ab108db2 (diff)
downloadmate-media-fcd918a52f3b3c37e806a9391092bdbff980b00f.tar.bz2
mate-media-fcd918a52f3b3c37e806a9391092bdbff980b00f.tar.xz
Merge pull request #16 from sbalneav/master
Fix deprecations
-rw-r--r--gst-mixer/src/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst-mixer/src/main.c b/gst-mixer/src/main.c
index b051bf5..bcddb04 100644
--- a/gst-mixer/src/main.c
+++ b/gst-mixer/src/main.c
@@ -144,7 +144,9 @@ main (gint argc,
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
+#if !GLIB_CHECK_VERSION (2, 32, 0)
g_thread_init (NULL);
+#endif
ctx = g_option_context_new ("mate-volume-control");
g_option_context_add_main_entries(ctx, entries, GETTEXT_PACKAGE);
g_option_context_add_group (ctx, gst_init_get_option_group ());