diff options
author | Tor Lillqvist <tml@novell.com> | 2008-05-19 12:39:24 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-05-19 12:39:24 +0000 |
commit | 4b2a571e43b952ea66849786a68e8e4cb7657109 (patch) | |
tree | 8c832d5de5a6222e68118d5bcc91973f70cabe3b /build | |
parent | 1ad74c4459583eaf5aa71b11a7b89cceb5f508bd (diff) |
Include dirent.h with doublequotes so that it is searched from this same
2008-05-19 Tor Lillqvist <tml@novell.com>
* win32/dirent/dirent.c: Include dirent.h with doublequotes so
that it is searched from this same folder first.
svn path=/trunk/; revision=6914
Diffstat (limited to 'build')
-rw-r--r-- | build/ChangeLog | 7 | ||||
-rw-r--r-- | build/win32/dirent/dirent.c | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/build/ChangeLog b/build/ChangeLog index 75c0d8a60..bb4e96311 100644 --- a/build/ChangeLog +++ b/build/ChangeLog @@ -1,5 +1,10 @@ 2008-05-19 Tor Lillqvist <tml@novell.com> - + + * win32/dirent/dirent.c: Include dirent.h with doublequotes so + that it is searched from this same folder first. + +2008-05-19 Tor Lillqvist <tml@novell.com> + * win32/vs8/gspawn-win32-helper.vcproj * win32/vs8/gspawn-win32-helper-console.vcproj: New files. Build these two executables. diff --git a/build/win32/dirent/dirent.c b/build/win32/dirent/dirent.c index 0ba4c9dd6..26b6cb1e5 100644 --- a/build/win32/dirent/dirent.c +++ b/build/win32/dirent/dirent.c @@ -19,7 +19,8 @@ #include <string.h>
#include <io.h>
#include <direct.h>
-#include <dirent.h>
+
+#include "dirent.h"
#define WIN32_LEAN_AND_MEAN
#include <windows.h> /* for GetFileAttributes */
|