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:
authorJoshua Leung <aligorith@gmail.com>2011-01-08 02:54:58 +0300
committerJoshua Leung <aligorith@gmail.com>2011-01-08 02:54:58 +0300
commit14d6d1cdf68f598df4530a0d76736e9605a92baa (patch)
tree35301c67fb37845173863bbcd242a4fc1a25acf9 /source/blender/blenlib/intern/winstuff.c
parente415798e13707b5a8c9611c678f75202ee8e9e2c (diff)
More Windows+mingw compiling fixes:
FILE_FILE_MAXDIR/FILE were undefined. Restoring BKE_utildefines.h include to make this work again in the meantime.
Diffstat (limited to 'source/blender/blenlib/intern/winstuff.c')
-rw-r--r--source/blender/blenlib/intern/winstuff.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/winstuff.c b/source/blender/blenlib/intern/winstuff.c
index 6f38dceccba..c7ec34d69a3 100644
--- a/source/blender/blenlib/intern/winstuff.c
+++ b/source/blender/blenlib/intern/winstuff.c
@@ -36,6 +36,9 @@
#include "MEM_guardedalloc.h"
#include "BLI_path_util.h"
#include "BLI_string.h"
+
+#include "BKE_utildefines.h"
+
#define WIN32_SKIP_HKEY_PROTECTION // need to use HKEY
#include "BLI_winstuff.h"