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_csg.c')
-rw-r--r--source/blender/bpython/intern/BPY_csg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bpython/intern/BPY_csg.c b/source/blender/bpython/intern/BPY_csg.c
index 7237a843428..fe9af750209 100644
--- a/source/blender/bpython/intern/BPY_csg.c
+++ b/source/blender/bpython/intern/BPY_csg.c
@@ -33,17 +33,17 @@
// TODO
-
#include "Python.h"
-
#include "BPY_csg.h"
-
#include "BKE_booleanops_mesh.h"
#include "BKE_booleanops.h"
#include "MEM_guardedalloc.h"
-
#include "b_interface.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef DEBUG
#define CSG_DEBUG(str) \
{ printf str; }