diff --git a/gstreamer-sharp/glue/glib.c b/gstreamer-sharp/glue/glib.c index 1b5dfaa920..5a0510acee 100644 --- a/gstreamer-sharp/glue/glib.c +++ b/gstreamer-sharp/glue/glib.c @@ -27,5 +27,9 @@ gboolean gstglibsharp_g_thread_supported (void); gboolean gstglibsharp_g_thread_supported () { +#if !GLIB_CHECK_VERSION (2, 35, 0) return g_thread_supported (); +#else + return TRUE; +#endif }