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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-02-10 21:48:29 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-02-10 21:48:29 +0300
commit9d7ef684e3ad699bd8aeb3324cfae2c98871e5e3 (patch)
treeb48815add7db5c850bf82775d421bb2b1fb06c3e /source/blender/nodes
parent98b4fa74cbd9af209c190da116c26d6971e0b90a (diff)
* remove redundant define.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/SConscript2
-rw-r--r--source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c4
2 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index cc7cde6fc26..8682f626b80 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -41,6 +41,6 @@ if env['WITH_BF_QUICKTIME'] == 1:
defs += ' WITH_QUICKTIME'
incs += ' ' + env['BF_QUICKTIME_INC']
-defs += ' WITH_CCGSUBSURF USE_PYNODES '
+defs += ' WITH_CCGSUBSURF '
env.BlenderLib ( libname = 'nodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core','player'], priority = [65, 20] )
diff --git a/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c b/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
index 9c15877e478..3b9ef5ceb55 100644
--- a/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
+++ b/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
@@ -27,8 +27,6 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#ifdef USE_PYNODES /* note: won't work without patch */
-
#include <Python.h>
#include <eval.h>
@@ -627,5 +625,3 @@ bNodeType node_dynamic_typeinfo = {
/* id */ NULL
};
-#endif /* USE_PYNODES */
-