2008-05-19 Tor Lillqvist <tml@novell.com>
* glib/gdir.c: Include the dirent.h and wdirent.c from
../build/win32/dirent directly here when compiling with MSVC and
without HAVE_DIRENT_H.
svn path=/trunk/; revision=6915
+2008-05-19 Tor Lillqvist <tml@novell.com>
+
+ * glib/gdir.c: Include the dirent.h and wdirent.c from
+ ../build/win32/dirent directly here when compiling with MSVC and
+ without HAVE_DIRENT_H.
+
2008-05-19 Hans Breuer <hans@breuer.org>
* glib/makefile.msc : added gi18n.c
#include "galias.h"
+#if defined (_MSC_VER) && !defined (HAVE_DIRENT_H)
+#include "../build/win32/dirent/dirent.h"
+#include "../build/win32/dirent/wdirent.c"
+#endif
+
struct _GDir
{
#ifdef G_OS_WIN32