Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2012-09-27 19:49:15 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-09-27 19:49:15 +0400
commit6ce0c433ce18f2bb159d8391c38731ca62ea2c8c (patch)
treeffa9205b86341e846ba3f2d83219e8da1cc2a331
parent06baaeee222e94ad7c301bac104207c653f21dcb (diff)
Fix compilation issue on MinGW, thanks to Sergey for the fix
-rw-r--r--source/blender/blenlib/intern/fileops.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index 9ccd6e3d521..453463beaa8 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -42,6 +42,9 @@
#include "zlib.h"
#ifdef WIN32
+#ifdef __MINGW32__
+#include <ctype.h>
+#endif
#include <io.h>
# include "BLI_winstuff.h"
# include "BLI_callbacks.h"