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:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-03-07 17:48:13 +0300
committerJohnny Matthews <johnny.matthews@gmail.com>2005-03-07 17:48:13 +0300
commit9e52a14894a9685331010cab53fe0500be74659c (patch)
tree8f9265bb814f176d8347b0eacdee4628fcd2ce75 /source/blender
parentd6f6d13f3ac328284eb9a6afa9942d067c018846 (diff)
Solves a build problem with MSVC scons build. Thanks kaito for pointing out the Black box of BLI_winstuff
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/BPY_interface.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/BPY_interface.c b/source/blender/python/BPY_interface.c
index bc691e002fb..e6f71ac8bb4 100644
--- a/source/blender/python/BPY_interface.c
+++ b/source/blender/python/BPY_interface.c
@@ -34,6 +34,10 @@
#include <config.h>
#endif
+#ifdef WIN32
+#include "BLI_winstuff.h"
+#endif
+
#include <Python.h>
#include "compile.h" /* for the PyCodeObject */
#include "eval.h" /* for PyEval_EvalCode */