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>2014-01-13 17:46:46 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-01-13 17:46:46 +0400
commit02386bd1e3b09dfa5716355af04c0f846291e641 (patch)
treec853a7d51fa1718fb71f6c104d5d37556a720fa2 /source/blender/datatoc/datatoc_icon.c
parent9cf6946d3113fe1a8b61954fd724f4db6a4a8e8e (diff)
fix compilation for mingw-w64
Diffstat (limited to 'source/blender/datatoc/datatoc_icon.c')
-rw-r--r--source/blender/datatoc/datatoc_icon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/datatoc/datatoc_icon.c b/source/blender/datatoc/datatoc_icon.c
index 82eeb3af9b2..1569e554f9f 100644
--- a/source/blender/datatoc/datatoc_icon.c
+++ b/source/blender/datatoc/datatoc_icon.c
@@ -32,7 +32,7 @@
#include "../blenlib/BLI_sys_types.h"
/* for DIR */
-#ifndef WIN32
+#if !defined(WIN32) || defined(__MINGW64__)
# include <dirent.h>
#endif