mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-22 20:26:17 +01:00
*** empty log message ***
This commit is contained in:
parent
bce5fbb460
commit
f8b65c0a0e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user