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:
authorJoerg Mueller <nexyon@gmail.com>2013-11-07 16:33:35 +0400
committerJoerg Mueller <nexyon@gmail.com>2013-11-07 16:33:35 +0400
commitbef6b06a47d9cdedf73324c298e038706e6eb888 (patch)
treea5473663a92c09d06d6c61b56813b4f421c97dd8 /source/blender/editors/sound/SConscript
parentc2aca3b517bc27723627399008cfe9ad5248fc9a (diff)
Fix for [#36819] *AFTER 2.69* Audio Only Sequencer wont render
The original description is not a bug, but the mixdown options were missing as scons was lacking the required defines during compile time.
Diffstat (limited to 'source/blender/editors/sound/SConscript')
-rw-r--r--source/blender/editors/sound/SConscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/sound/SConscript b/source/blender/editors/sound/SConscript
index 016f8055da0..33feedf51cc 100644
--- a/source/blender/editors/sound/SConscript
+++ b/source/blender/editors/sound/SConscript
@@ -44,4 +44,10 @@ incs = ' '.join(incs)
defs = []
+if env['WITH_BF_FFMPEG']:
+ defs.append('WITH_FFMPEG')
+
+if env['WITH_BF_SNDFILE']:
+ defs.append('WITH_SNDFILE')
+
env.BlenderLib ( 'bf_editors_sound', sources, Split(incs), defs, libtype=['core'], priority=[35] )