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:
authorCampbell Barton <ideasman42@gmail.com>2009-08-26 10:15:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-26 10:15:43 +0400
commit43422354895bb620d6731f928d121ae6cd06da48 (patch)
tree6eb4a4191a804bc4433f72ac03ae0417aca0c1bd /source/blender/python/generic/bpy_internal_import.h
parentd893b0f9ff5fc21277b9c24568e224961537c23c (diff)
- Mathutils.Vector assignment wasnt working in the BGE's py api, was using getValue() rather than setValue()
- added GPL header to bpy_interface.c from 2.4x's BPY_interface.c - warning fixes
Diffstat (limited to 'source/blender/python/generic/bpy_internal_import.h')
-rw-r--r--source/blender/python/generic/bpy_internal_import.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/python/generic/bpy_internal_import.h b/source/blender/python/generic/bpy_internal_import.h
index c93d930dab0..4e761fe8da0 100644
--- a/source/blender/python/generic/bpy_internal_import.h
+++ b/source/blender/python/generic/bpy_internal_import.h
@@ -31,6 +31,15 @@
#ifndef EXPP_bpy_import_h
#define EXPP_bpy_import_h
+/* python redefines :/ */
+#ifdef _POSIX_C_SOURCE
+#undef _POSIX_C_SOURCE
+#endif
+
+#ifdef _XOPEN_SOURCE
+#undef _XOPEN_SOURCE
+#endif
+
#include <Python.h>
#include "compile.h" /* for the PyCodeObject */
#include "eval.h" /* for PyEval_EvalCode */