summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-05 15:36:55 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-05 15:36:55 +0000
commitdaa9c9203889d8f064646a258afd3de8349f5862 (patch)
treec7bfe684af7bce0daa4713f476efda8c5f1f67a6 /gst
parentf53948b332e73a319c627885170e736f49c4d75d (diff)
gst: remove safety check for GLib < 2.8
Don't worry about accidentally using GLib < 2.8 at runtime anymore.
Diffstat (limited to 'gst')
-rw-r--r--gst/gst.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gst/gst.c b/gst/gst.c
index 40a5aa30fc..3bde138aa8 100644
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -572,16 +572,6 @@ init_pre (GOptionContext * context, GOptionGroup * group, gpointer data,
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 ();
/* we need threading to be enabled right here */