gst/glib-compat.*: Attempt #4 to appease the buildbots.
authorDavid Schleef <ds@schleef.org>
Thu, 15 Sep 2005 01:34:52 +0000 (01:34 +0000)
committerDavid Schleef <ds@schleef.org>
Thu, 15 Sep 2005 01:34:52 +0000 (01:34 +0000)
Original commit message from CVS:
* gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
* gst/glib-compat.h:
Attempt #4 to appease the buildbots.

ChangeLog
gst/glib-compat.c
gst/glib-compat.h

index c9ba709..ef8c14c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 2005-09-14  David Schleef  <ds@schleef.org>
 
        * 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  <ds@schleef.org>
+
+       * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
          Attempt #3.
 
 2005-09-14  David Schleef  <ds@schleef.org>
index 3d4fb75..7995961 100644 (file)
 #include "config.h"
 
 #include <glib.h>
+#if GLIB_CHECK_VERSION (2, 6, 0)
 #include <glib/gstdio.h>
+#endif
 
 #include <stdio.h>
 #include <errno.h>
 
 #include "glib-compat.h"
 
-#if 0
 #include <sys/stat.h>
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#include <sys/types.h>
+#if 0
 #include <stdlib.h>
 #include <stdarg.h>
 #include <string.h>
-#include <sys/types.h>
-#include <sys/stat.h>
 #ifndef G_OS_WIN32
 #include <sys/wait.h>
 #endif
 #include <fcntl.h>
-#include <stdlib.h>
 #endif
 
 
index dbdad04..d3b688a 100644 (file)
@@ -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