gst/glib-compat.*: Attempt #4 to appease the buildbots.
[platform/upstream/gstreamer.git] / gst / glib-compat.h
1 /*
2  * glib-compat.c
3  * Functions copied from glib 2.6 and 2.8
4  *
5  * Copyright 2005 David Schleef <ds@schleef.org>
6  */
7
8 #include <glib.h>
9
10 G_BEGIN_DECLS
11
12 #if !GLIB_CHECK_VERSION (2, 8, 0)
13 int g_mkdir_with_parents (const gchar *pathname, int          mode);
14 #endif
15
16 #if !GLIB_CHECK_VERSION (2, 6, 0)
17 int g_mkdir (const gchar *filename, int          mode);
18 #endif
19
20 #if !GLIB_CHECK_VERSION (2, 6, 0)
21 struct stat;
22
23 int g_stat (const gchar *filename, struct stat *buf);
24 #endif
25
26 G_END_DECLS
27