From 4c043173bb75e1a92ad358dd5db081291e1d5d5a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 2 Aug 2002 12:18:30 +0000 Subject: ming compile fixes by Bill Napier git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1522 a1c6a512-1295-4272-9138-f99709370657 --- firmware/common/dir.h | 4 ++-- firmware/common/file.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/common/dir.h b/firmware/common/dir.h index 3cf36eb34f..ae21adbd97 100644 --- a/firmware/common/dir.h +++ b/firmware/common/dir.h @@ -53,14 +53,14 @@ typedef struct { #else // SIMULATOR -#ifdef WIN32 +#if defined(WIN32) && !defined(__MINGW32__) #include +#endif // WIN32 typedef struct DIRtag { struct dirent fd; int handle; } DIR; -#endif // WIN32 #endif // SIMULATOR #ifndef DIRFUNCTIONS_DEFINED diff --git a/firmware/common/file.h b/firmware/common/file.h index b5249ec042..59aaa70fcc 100644 --- a/firmware/common/file.h +++ b/firmware/common/file.h @@ -45,7 +45,7 @@ extern int rename(char* oldname, char* newname); #endif #else -#ifdef WIN32 +#if defined(WIN32) && !defined(__MINGW32__) #include #include #endif // WIN32 -- cgit v1.2.3