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:
authorMichel Selten <michel@mselten.demon.nl>2003-11-23 17:28:46 +0300
committerMichel Selten <michel@mselten.demon.nl>2003-11-23 17:28:46 +0300
commit90541541c3ad6e1e4a796b85e32a43ce60a8b885 (patch)
tree9c76750a991bb832b276cc6b6988ae2b5fb05265 /source/creator
parent5cc89c0f4e97fff904b3bbb0d1df034ca766b209 (diff)
Added all necessary BPY_extern.h include files to the .c files.
Updated the Make environment to point to the correct location. The include paths were still pointing to source/blender/bpython/include while it should be source/blender/python. I did not encounter the build problems because I'm always working with the autoconf build environment.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/Makefile2
-rw-r--r--source/creator/creator.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/source/creator/Makefile b/source/creator/Makefile
index c50f720acb5..1074adf9b2b 100644
--- a/source/creator/Makefile
+++ b/source/creator/Makefile
@@ -53,7 +53,7 @@ CPPFLAGS += -I../blender/blenlib
CPPFLAGS += -I../blender/include
CPPFLAGS += -I../blender/renderconverter
CPPFLAGS += -I../blender/blenkernel
-CPPFLAGS += -I../blender/bpython/include
+CPPFLAGS += -I../blender/python
CPPFLAGS += -I../blender/blenloader
CPPFLAGS += -I../kernel/gen_system
CPPFLAGS += -I../kernel/gen_messaging
diff --git a/source/creator/creator.c b/source/creator/creator.c
index cdcdc731711..c92d034d2a6 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -78,6 +78,8 @@
#include "RE_renderconverter.h"
+#include "BPY_extern.h"
+
#include "playanim_ext.h"
#include "mydevice.h"
#include "render.h"