diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/tools/benchmark.c | 3 | ||||
-rw-r--r-- | bin/tools/gen-doc.c | 2 | ||||
-rw-r--r-- | bin/tools/grab.c | 2 |
3 files changed, 7 insertions, 0 deletions
diff --git a/bin/tools/benchmark.c b/bin/tools/benchmark.c index fee40f2..1e2c79f 100644 --- a/bin/tools/benchmark.c +++ b/bin/tools/benchmark.c @@ -228,7 +228,10 @@ main (int argc, char *argv[]) }; (void) signal (SIGINT, sigint_handler); + +#if !(GLIB_CHECK_VERSION (2, 36, 0)) g_type_init (); +#endif manager = uca_plugin_manager_new (); context = uca_option_context_new (manager); diff --git a/bin/tools/gen-doc.c b/bin/tools/gen-doc.c index d27bdd8..026d828 100644 --- a/bin/tools/gen-doc.c +++ b/bin/tools/gen-doc.c @@ -196,7 +196,9 @@ int main(int argc, char *argv[]) gchar *name; GError *error = NULL; +#if !(GLIB_CHECK_VERSION (2, 36, 0)) g_type_init(); +#endif manager = uca_plugin_manager_new (); if (argc < 2) { diff --git a/bin/tools/grab.c b/bin/tools/grab.c index 5825ce7..f355fcb 100644 --- a/bin/tools/grab.c +++ b/bin/tools/grab.c @@ -235,7 +235,9 @@ main (int argc, char *argv[]) { NULL } }; +#if !(GLIB_CHECK_VERSION (2, 36, 0)) g_type_init(); +#endif manager = uca_plugin_manager_new (); context = uca_option_context_new (manager); |