mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 23:18:52 +00:00
gst: remove safety check for GLib < 2.8
Don't worry about accidentally using GLib < 2.8 at runtime anymore.
This commit is contained in:
parent
f53948b332
commit
daa9c92038
1 changed files with 0 additions and 10 deletions
10
gst/gst.c
10
gst/gst.c
|
@ -572,16 +572,6 @@ init_pre (GOptionContext * context, GOptionGroup * group, gpointer data,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GStreamer was built against a GLib >= 2.8 and is therefore not doing
|
|
||||||
* the refcount hack. Check that it isn't being run against an older GLib */
|
|
||||||
if (glib_major_version < 2 ||
|
|
||||||
(glib_major_version == 2 && glib_minor_version < 8)) {
|
|
||||||
g_warning ("GStreamer was compiled against GLib %d.%d.%d but is running"
|
|
||||||
" against %d.%d.%d. This will cause reference counting issues",
|
|
||||||
GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
|
|
||||||
glib_major_version, glib_minor_version, glib_micro_version);
|
|
||||||
}
|
|
||||||
|
|
||||||
g_type_init ();
|
g_type_init ();
|
||||||
|
|
||||||
/* we need threading to be enabled right here */
|
/* we need threading to be enabled right here */
|
||||||
|
|
Loading…
Reference in a new issue