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:
Diffstat (limited to 'source/blender/bpython/intern/BPY_constobject.c')
-rw-r--r--source/blender/bpython/intern/BPY_constobject.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/bpython/intern/BPY_constobject.c b/source/blender/bpython/intern/BPY_constobject.c
index 9f1a6b4cc3b..3dca07a6105 100644
--- a/source/blender/bpython/intern/BPY_constobject.c
+++ b/source/blender/bpython/intern/BPY_constobject.c
@@ -51,9 +51,12 @@ c = module.Const['CONSTANT']
#include "Python.h"
#include "BPY_macros.h"
-
#include "BPY_constobject.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define Const_Check(v) ((v)->ob_type == &Const_Type)