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:
Tor Lillqvist 2008-08-27 12:48:57 +00:00 committed by Tor Lillqvist
parent b2073f1ce2
commit 194493f3f8
2 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -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 */