Bug #6924: Add WITH_FFMPEG compilation switch when WITH_BF_FFMPEG is true for

scons.  

Can someone verify that other build systems are also including this?
This commit is contained in:
Ken Hughes 2007-07-09 16:03:26 +00:00
parent db2cc09913
commit 1d1faacdff

@ -20,4 +20,7 @@ if env['WITH_BF_QUICKTIME']==1:
if env['WITH_BF_OPENEXR'] == 1:
defs.append('WITH_OPENEXR')
if env['WITH_BF_FFMPEG'] == 1:
defs.append('WITH_FFMPEG')
env.BlenderLib ( libname='blender_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype=['core','game2'], priority = [60,115] )