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:
-rw-r--r--source/blender/imbuf/SConscript1
-rw-r--r--source/blender/imbuf/intern/cineon/SConscript15
2 files changed, 7 insertions, 9 deletions
diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript
index 7055fcfd46a..93041ab97cf 100644
--- a/source/blender/imbuf/SConscript
+++ b/source/blender/imbuf/SConscript
@@ -24,4 +24,3 @@ if env['WITH_BF_QUICKTIME']==1:
defs.append('WITH_QUICKTIME')
env.BlenderLib ( libname = 'bf_imbuf', sources = sources, includes = Split(incs), defines = defs, libtype=['core','player'], priority = [80, 40] )
-env.BlenderLib ( libname = "bf_imbuf_cineondpx", sources = cineon, includes = Split(cincs), defines = defs, libtype=['core', 'player'], priority = [81, 41] )
diff --git a/source/blender/imbuf/intern/cineon/SConscript b/source/blender/imbuf/intern/cineon/SConscript
index e23027b43de..7bfaa8dbdf2 100644
--- a/source/blender/imbuf/intern/cineon/SConscript
+++ b/source/blender/imbuf/intern/cineon/SConscript
@@ -1,17 +1,16 @@
#!/usr/bin/python
Import ('env')
-#source_files = ['cineon_dpx.c', 'cineonlib.c']
source_files = env.Glob('*.c')
incs = ['.',
- '../../../blenkernel',
- '../../',
- '..',
- '../../../blenlib',
- 'intern/include',
- '#/intern/guardedalloc',
- '../../../makesdna']
+ '../../../blenkernel',
+ '../../',
+ '..',
+ '../../../blenlib',
+ 'intern/include',
+ '#/intern/guardedalloc',
+ '../../../makesdna']
defs = []