diff -r 000000000000 -r 0e761a78d257 gstreamer_core/gst/glib-compat-private.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gstreamer_core/gst/glib-compat-private.h Thu Dec 17 08:53:32 2009 +0200 @@ -0,0 +1,22 @@ +/* + * glib-compat.c + * Functions copied from glib 2.10 + * + * Copyright 2005 David Schleef + */ + +#include "gst_private.h" /* for g_warning */ +#include + +G_BEGIN_DECLS + +/* copies */ + +/* adaptations */ + +/* FIXME: remove once we depend on GLib 2.10 */ +#if (!GLIB_CHECK_VERSION (2, 10, 0)) +#define g_intern_string(s) g_quark_to_string(g_quark_from_string(s)) +#endif + +G_END_DECLS