Merge pull request #90 from martinsh-shaiters/mingw

Adds conditional include of io.h when compiling with MinGW
This commit is contained in:
Lee Thomason 2013-01-15 13:47:59 -08:00
commit dfc494ffc5
1 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@
#include <windows.h>
_CrtMemState startMemState;
_CrtMemState endMemState;
#elif defined(MINGW32) || defined(__MINGW32__)
#include <io.h> // mkdir
#else
#include <sys/stat.h> // mkdir
#endif
@ -156,7 +158,7 @@ int main( int /*argc*/, const char ** /*argv*/ )
_CrtMemCheckpoint( &startMemState );
#endif
#if defined(_MSC_VER)
#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
_mkdir( "resources/out/" );
#else
mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);