diff options
author | Stefano Karapetsas <[email protected]> | 2012-12-16 02:45:22 -0800 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-12-16 02:45:22 -0800 |
commit | fcd918a52f3b3c37e806a9391092bdbff980b00f (patch) | |
tree | 62542a31a96be45556b68b42dcb46516918e09b8 /gst-mixer/src/main.c | |
parent | 8b041cf52c62250df59c47bd5dc86364da19e6a1 (diff) | |
parent | a507ce95f07547efe26b07b12fecdd85ab108db2 (diff) | |
download | mate-media-fcd918a52f3b3c37e806a9391092bdbff980b00f.tar.bz2 mate-media-fcd918a52f3b3c37e806a9391092bdbff980b00f.tar.xz |
Merge pull request #16 from sbalneav/master
Fix deprecations
Diffstat (limited to 'gst-mixer/src/main.c')
-rw-r--r-- | gst-mixer/src/main.c | 2 |
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 ()); |