*** empty log message ***
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 17 Nov 2004 01:29:29 +0000 (01:29 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 17 Nov 2004 01:29:29 +0000 (01:29 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gkeyfile.c

index ab6c694..90d52da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gkeyfile.c: Define S_ISREG() on windows, since it
+       is not present there.  (#158469, Kazuki IWAMOTO)
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
index ab6c694..90d52da 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gkeyfile.c: Define S_ISREG() on windows, since it
+       is not present there.  (#158469, Kazuki IWAMOTO)
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
index ab6c694..90d52da 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gkeyfile.c: Define S_ISREG() on windows, since it
+       is not present there.  (#158469, Kazuki IWAMOTO)
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
index ab6c694..90d52da 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gkeyfile.c: Define S_ISREG() on windows, since it
+       is not present there.  (#158469, Kazuki IWAMOTO)
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
index ab6c694..90d52da 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gkeyfile.c: Define S_ISREG() on windows, since it
+       is not present there.  (#158469, Kazuki IWAMOTO)
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
index 397777f..939589e 100644 (file)
 #endif
 #ifdef G_OS_WIN32
 #include <io.h>
+
+#ifndef S_ISREG
+#define S_ISREG(mode) ((mode)&_S_IFREG)
 #endif
 
+#endif  /* G_OS_WIN23 */
+
 #include "gconvert.h"
 #include "gdataset.h"
 #include "gerror.h"