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-15 01:57:00 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-01-15 02:33:55 +0400
commit53f93ef66d6821249cedbb38e9a7a714bd361890 (patch)
treef6caaa44154f715a31e278d3fce0d85560d7f2bb /source/blender/blenlib/intern/winstuff_dir.c
parenteda49cf58eed6785a8bd9e7bdebe07b8953b0275 (diff)
Fix build issues with mingw's
Diffstat (limited to 'source/blender/blenlib/intern/winstuff_dir.c')
-rw-r--r--source/blender/blenlib/intern/winstuff_dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/winstuff_dir.c b/source/blender/blenlib/intern/winstuff_dir.c
index 5cd2baa033c..4082681ee11 100644
--- a/source/blender/blenlib/intern/winstuff_dir.c
+++ b/source/blender/blenlib/intern/winstuff_dir.c
@@ -25,7 +25,7 @@
* \ingroup bli
*/
-#ifdef WIN32
+#if defined(WIN32) && !defined(FREE_WINDOWS)
# ifdef USE_STANDALONE
# define MEM_mallocN(size, str) ((void)str, malloc(size))