diff --git a/ChangeLog b/ChangeLog index c9ba7093df..ef8c14cb0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-14 David Schleef + + * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat): + * gst/glib-compat.h: + Attempt #4 to appease the buildbots. + 2005-09-14 David Schleef * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat): diff --git a/gst/glib-compat.c b/gst/glib-compat.c index 3d4fb752f8..7995961e06 100644 --- a/gst/glib-compat.c +++ b/gst/glib-compat.c @@ -28,28 +28,28 @@ #include "config.h" #include +#if GLIB_CHECK_VERSION (2, 6, 0) #include +#endif #include #include #include "glib-compat.h" -#if 0 #include #ifdef HAVE_UNISTD_H #include #endif +#include +#if 0 #include #include #include -#include -#include #ifndef G_OS_WIN32 #include #endif #include -#include #endif diff --git a/gst/glib-compat.h b/gst/glib-compat.h index dbdad048fd..d3b688a0fe 100644 --- a/gst/glib-compat.h +++ b/gst/glib-compat.h @@ -18,6 +18,8 @@ int g_mkdir (const gchar *filename, int mode); #endif #if !GLIB_CHECK_VERSION (2, 6, 0) +struct stat; + int g_stat (const gchar *filename, struct stat *buf); #endif