Skip to content

Commit

Permalink
Fix build - USE_MINGW seems to be the preferred define
Browse files Browse the repository at this point in the history
Change-Id: I57dd7f5029ed1fe3a74be7573a28fa894187b3a7
  • Loading branch information
Jean-Baptiste Queru committed Jul 9, 2010
1 parent 8565c63 commit 8884bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/host/CopyFile.c
Expand Up @@ -69,7 +69,7 @@ static bool isSourceNewer(const struct stat* pSrcStat, const struct stat* pDstSt
*/
static bool isHiresMtime(const struct stat* pSrcStat)
{
#ifdef WIN32_EXE
#if defined(WIN32_EXE) || defined(USE_MINGW)
return 0;
#elif defined(MACOSX_RSRC)
return pSrcStat->st_mtimespec.tv_nsec > 0;
Expand Down

0 comments on commit 8884bf0

Please sign in to comment.