Revision: 18676
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18676
Author:   erwin
Date:     2009-01-26 07:31:06 +0100 (Mon, 26 Jan 2009)

Log Message:
-----------
let the game engine compile, if WITH_FFPEG is not defined (so we don't have 
video textures in that case)

Modified Paths:
--------------
    trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp

Modified: 
trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp
===================================================================
--- trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp     
2009-01-26 04:13:38 UTC (rev 18675)
+++ trunk/blender/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp     
2009-01-26 06:31:06 UTC (rev 18676)
@@ -368,7 +368,9 @@
                        initGameKeys();
                        initPythonConstraintBinding();
                        initMathutils();
+#ifdef WITH_FFMPEG
                        initVideoTexture();
+#endif
 
                        if (sceneconverter)
                        {
@@ -660,7 +662,9 @@
                        initGameKeys();
                        initPythonConstraintBinding();
                        initMathutils();
-            initVideoTexture();
+#ifdef WITH_FFMPEG
+                       initVideoTexture();
+#endif
 
                        if (sceneconverter)
                        {


_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to