diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-02-12 10:39:44 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-02-12 10:39:44 +0000 |
commit | 0dcb7c27bad0e89ddc76fb98de63ce9d8820f211 (patch) | |
tree | 4a54f5d3abc6ef88273b974e3d852fcfd7f3588a | |
parent | aedc1369268f7d2cac5893de2e15101ff1029e6b (diff) |
glib-compat-private.h: remove old GStaticRecMutex stuff
Breaks the build with newer GLibs ("unknown type GStaticRecMutex")
and is not needed any more.
-rw-r--r-- | gst-libs/gst/glib-compat-private.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gst-libs/gst/glib-compat-private.h b/gst-libs/gst/glib-compat-private.h index 8804f78b6..c96c005f5 100644 --- a/gst-libs/gst/glib-compat-private.h +++ b/gst-libs/gst/glib-compat-private.h @@ -79,14 +79,6 @@ gst_g_mutex_free (GMutex *mutex) g_mutex_clear (mutex); g_slice_free (GMutex, mutex); } -#define g_static_rec_mutex_init gst_g_static_rec_mutex_init -static inline void -gst_g_static_rec_mutex_init (GStaticRecMutex *mutex) -{ - static const GStaticRecMutex init_mutex = G_STATIC_REC_MUTEX_INIT; - - *mutex = init_mutex; -} #define g_cond_new gst_g_cond_new static inline GCond * gst_g_cond_new (void) |