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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-12-15 21:18:09 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2003-12-15 21:18:09 +0300
commit050dc02134d71ba984fd1dd900ffccf45cbd6865 (patch)
treec439c24bbc22034b3ac0b7419cacc41865a1c62d /source/blender/blenkernel/intern/script.c
parent436bb963f128b96f871d1ae7fa651cf7c9d810d1 (diff)
Chris reported build errors w/ traditional makefiles.
This commit moves the 2 undefined references to BPY_interface.c and changes things a little, hopefully fixing the problem. I had to add a new dir, source/blender/include/ to auto*'s Makefile.am in source/blender/python/. Thanks Chris for the report, and Jiri, for adding a missing declaration.
Diffstat (limited to 'source/blender/blenkernel/intern/script.c')
-rw-r--r--source/blender/blenkernel/intern/script.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/script.c b/source/blender/blenkernel/intern/script.c
index 13b7473b9d8..78a9b511538 100644
--- a/source/blender/blenkernel/intern/script.c
+++ b/source/blender/blenkernel/intern/script.c
@@ -37,7 +37,6 @@
#include "DNA_script_types.h"
#include "BKE_script.h"
-#include "BIF_drawscript.h" /* for unlink_script */
/*
#include "BLI_blenlib.h"
@@ -64,7 +63,5 @@ void free_script (Script *script)
BPY_clear_script(script);
}
- unlink_script (script); /* unlink from all visible SPACE_SCRIPTS */
-
return;
}