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>2009-08-24 16:34:19 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2009-08-24 16:34:19 +0400
commit01e2aa02495fc200115c49f65aef82f77d80267c (patch)
tree497d6397393c9148a49d7a9bd77d3a909c8a8367 /source/blender/imbuf/intern/openexr
parent0b459178e1a247c647def869566da3d901d059ae (diff)
* r22739 broke compilation with scons. Make sure WITH_OPENEXR definition is given
Diffstat (limited to 'source/blender/imbuf/intern/openexr')
-rw-r--r--source/blender/imbuf/intern/openexr/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/openexr/SConscript b/source/blender/imbuf/intern/openexr/SConscript
index aa166a1983c..30757db1cef 100644
--- a/source/blender/imbuf/intern/openexr/SConscript
+++ b/source/blender/imbuf/intern/openexr/SConscript
@@ -13,6 +13,6 @@ incs = ['.',
'../../../makesdna']
incs += Split(env['BF_OPENEXR_INC'])
-defs = []
+defs = ['WITH_OPENEXR']
env.BlenderLib ('bf_openexr', source_files, incs, defs, libtype=['core','player'], priority = [225, 85])