Include also <direct.h> for mkdir() prototype with MSVC. [156727, Kazuki
authorTor Lillqvist <tml@iki.fi>
Fri, 29 Oct 2004 02:04:28 +0000 (02:04 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Fri, 29 Oct 2004 02:04:28 +0000 (02:04 +0000)
2004-10-29  Tor Lillqvist  <tml@iki.fi>

* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gstdio.c

index fb0d0e3..598e572 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-10-29  Tor Lillqvist  <tml@iki.fi>
 
+       * glib/gstdio.c: Include also <direct.h> for mkdir() prototype
+       with MSVC. [156727, Kazuki IWAMOTO]
+
        * glib/giochannel.h (g_io_channel_new_file): Redefine also
        g_io_channel_new_file to the UTF-8 version on Win32. [156725,
        Kazuki IWAMOTO)
index fb0d0e3..598e572 100644 (file)
@@ -1,5 +1,8 @@
 2004-10-29  Tor Lillqvist  <tml@iki.fi>
 
+       * glib/gstdio.c: Include also <direct.h> for mkdir() prototype
+       with MSVC. [156727, Kazuki IWAMOTO]
+
        * glib/giochannel.h (g_io_channel_new_file): Redefine also
        g_io_channel_new_file to the UTF-8 version on Win32. [156725,
        Kazuki IWAMOTO)
index fb0d0e3..598e572 100644 (file)
@@ -1,5 +1,8 @@
 2004-10-29  Tor Lillqvist  <tml@iki.fi>
 
+       * glib/gstdio.c: Include also <direct.h> for mkdir() prototype
+       with MSVC. [156727, Kazuki IWAMOTO]
+
        * glib/giochannel.h (g_io_channel_new_file): Redefine also
        g_io_channel_new_file to the UTF-8 version on Win32. [156725,
        Kazuki IWAMOTO)
index fb0d0e3..598e572 100644 (file)
@@ -1,5 +1,8 @@
 2004-10-29  Tor Lillqvist  <tml@iki.fi>
 
+       * glib/gstdio.c: Include also <direct.h> for mkdir() prototype
+       with MSVC. [156727, Kazuki IWAMOTO]
+
        * glib/giochannel.h (g_io_channel_new_file): Redefine also
        g_io_channel_new_file to the UTF-8 version on Win32. [156725,
        Kazuki IWAMOTO)
index fb0d0e3..598e572 100644 (file)
@@ -1,5 +1,8 @@
 2004-10-29  Tor Lillqvist  <tml@iki.fi>
 
+       * glib/gstdio.c: Include also <direct.h> for mkdir() prototype
+       with MSVC. [156727, Kazuki IWAMOTO]
+
        * glib/giochannel.h (g_io_channel_new_file): Redefine also
        g_io_channel_new_file to the UTF-8 version on Win32. [156725,
        Kazuki IWAMOTO)
index b7775c3..5cb95e2 100644 (file)
@@ -34,6 +34,7 @@
 #ifdef G_OS_WIN32
 #include <errno.h>
 #include <wchar.h>
+#include <direct.h>
 #include <io.h>
 #endif