*** empty log message ***

This commit is contained in:
Matthias Clasen 2004-11-17 01:29:29 +00:00
parent bce5fbb460
commit f8b65c0a0e
6 changed files with 30 additions and 0 deletions

View 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

View 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

View 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

View 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

View 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

View File

@ -39,8 +39,13 @@
#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"