mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-23 10:42:11 +01:00
Should not define HAVE_DIRENT_H when compiling with MSVC, as the only file
2008-08-27 Tor Lillqvist <tml@novell.com> * config.h.win32.in: Should not define HAVE_DIRENT_H when compiling with MSVC, as the only file which checks HAVE_DIRENT_H is gdir.c, and that includes the dirent.h and wdirent.c from build/win32/dirent explicitly anyway when being compiled with MSVC. svn path=/trunk/; revision=7403
This commit is contained in:
parent
b2073f1ce2
commit
194493f3f8
@ -1,3 +1,11 @@
|
||||
2008-08-27 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* config.h.win32.in: Should not define HAVE_DIRENT_H when
|
||||
compiling with MSVC, as the only file which checks HAVE_DIRENT_H
|
||||
is gdir.c, and that includes the dirent.h and wdirent.c from
|
||||
build/win32/dirent explicitly anyway when being compiled with
|
||||
MSVC.
|
||||
|
||||
2008-08-22 Björn Lindqvist <bjourne@gmail.com>
|
||||
|
||||
Bug 523939 – Example program for GValue
|
||||
|
@ -154,7 +154,11 @@
|
||||
#define HAVE_DCGETTEXT 1
|
||||
|
||||
/* Define to 1 if you have the <dirent.h> header file. */
|
||||
#ifndef _MSC_VER
|
||||
#define HAVE_DIRENT_H 1
|
||||
#else
|
||||
/* #undef HAVE_DIRENT_H */
|
||||
#endif
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
/* #undef HAVE_DLFCN_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user