fix for building with py2.3

This commit is contained in:
2009-06-18 17:34:39 +00:00
parent 122b206de3
commit 025b6dcbc3
8 changed files with 25 additions and 0 deletions

View File

@@ -41,6 +41,7 @@
#endif
#include <Python.h>
#include "../intern/bpy_compat.h"
#include "BIF_gl.h"
PyObject *BGL_Init( const char *from );

View File

@@ -32,6 +32,7 @@
#define EXPP_Mathutils_H
#include <Python.h>
#include "../intern/bpy_compat.h"
#include "vector.h"
#include "matrix.h"
#include "quat.h"

View File

@@ -32,6 +32,7 @@
#define EXPP_bpy_import_h
#include <Python.h>
#include "../intern/bpy_compat.h"
#include "compile.h" /* for the PyCodeObject */
#include "eval.h" /* for PyEval_EvalCode */

View File

@@ -32,6 +32,7 @@
#define EXPP_euler_h
#include <Python.h>
#include "../intern/bpy_compat.h"
extern PyTypeObject euler_Type;

View File

@@ -32,6 +32,7 @@
#define EXPP_quat_h
#include <Python.h>
#include "../intern/bpy_compat.h"
extern PyTypeObject quaternion_Type;

View File

@@ -31,6 +31,7 @@
#define EXPP_vector_h
#include <Python.h>
#include "../intern/bpy_compat.h"
extern PyTypeObject vector_Type;