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>2011-09-26 14:35:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-26 14:35:47 +0400
commit573ed73be85d7f6342567bdaebbd0662c7428800 (patch)
tree46c14ef8cc93bab6d2738f07f8d8d894904a0a62 /source/blender/python/SConscript
parentfc8a7aba558d1dab53cac8039ba9e34b90a8b5a3 (diff)
change define INTERNATIONAL --> WITH_INTERNATIONAL
also rename backface_culling --> use_backface_culling (which is used elsewhere in rna)
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index f00d49fe8dd..3f47038687a 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -41,7 +41,7 @@ if env['BF_BUILDINFO']:
defs.append('BUILD_DATE')
if env['WITH_BF_INTERNATIONAL']:
- defs.append('INTERNATIONAL')
+ defs.append('WITH_INTERNATIONAL')
sources = env.Glob('intern/*.c')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361])