mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-23 04:36: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>
|
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
* 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>
|
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
* 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>
|
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
* 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>
|
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
* 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>
|
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
* glib/gkeyfile.c (g_key_file_load_from_fd): Use S_ISREG(), since
|
||||||
|
@ -39,8 +39,13 @@
|
|||||||
#endif
|
#endif
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
|
||||||
|
#ifndef S_ISREG
|
||||||
|
#define S_ISREG(mode) ((mode)&_S_IFREG)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif /* G_OS_WIN23 */
|
||||||
|
|
||||||
#include "gconvert.h"
|
#include "gconvert.h"
|
||||||
#include "gdataset.h"
|
#include "gdataset.h"
|
||||||
#include "gerror.h"
|
#include "gerror.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user