[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11197] trunk/blender/source/blender/ python/SConscript: Bug #6924: Add WITH_FFMPEG compilation switch when WITH_BF_FFMPEG is true for

Ken Hughes khughes at pacific.edu
Mon Jul 9 18:03:26 CEST 2007


Revision: 11197
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11197
Author:   khughes
Date:     2007-07-09 18:03:26 +0200 (Mon, 09 Jul 2007)

Log Message:
-----------
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?

Modified Paths:
--------------
    trunk/blender/source/blender/python/SConscript

Modified: trunk/blender/source/blender/python/SConscript
===================================================================
--- trunk/blender/source/blender/python/SConscript	2007-07-09 15:59:06 UTC (rev 11196)
+++ trunk/blender/source/blender/python/SConscript	2007-07-09 16:03:26 UTC (rev 11197)
@@ -20,4 +20,7 @@
 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] )





More information about the Bf-blender-cvs mailing list