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:
authorKent Mein <mein@cs.umn.edu>2005-03-14 17:56:40 +0300
committerKent Mein <mein@cs.umn.edu>2005-03-14 17:56:40 +0300
commitecf6de151c5c2a4794a6c0f700dcc47568d3b78b (patch)
tree8b89e296b52987ef56751f9e390acaf8a596b531 /source/blender/imbuf/SConscript
parentcce74ab4d02bb793c199b7dfdb193e30cc590092 (diff)
This commit reverses the OpenEXR specific stuff in the OpenEXR commit I
did last friday. A patch will be available in the patches tracker that will have the current stuff there until everything is working. Kent
Diffstat (limited to 'source/blender/imbuf/SConscript')
-rw-r--r--source/blender/imbuf/SConscript4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript
index 199e872e49b..11d7cfb2b30 100644
--- a/source/blender/imbuf/SConscript
+++ b/source/blender/imbuf/SConscript
@@ -33,9 +33,6 @@ source_files = ['intern/allocimbuf.c',
'intern/util.c',
'intern/writeimage.c']
-if user_options_dict['USE_OPENEXR'] == 1:
- source_files.append('intern/openexr.cpp')
-
imbuf_env.Append (CPPPATH = ['.',
'../makesdna',
'#/intern/guardedalloc',
@@ -46,7 +43,6 @@ imbuf_env.Append (CPPPATH = ['.',
imbuf_env.Append (CPPPATH = user_options_dict['JPEG_INCLUDE'])
imbuf_env.Append (CPPPATH = user_options_dict['PNG_INCLUDE'])
-imbuf_env.Append (CPPPATH = user_options_dict['OPENEXR_INCLUDE'])
imbuf_env.Append (CPPPATH = user_options_dict['Z_INCLUDE'])
imbuf_env.Append (CPPPATH = extra_includes)
imbuf_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_imbuf', source=source_files)