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:
authorPeter Schlaile <peter@schlaile.de>2006-02-05 22:49:29 +0300
committerPeter Schlaile <peter@schlaile.de>2006-02-05 22:49:29 +0300
commit250c9de1bc1293141acf87cae8716bd63b7e216c (patch)
tree7b32c7ee52a2b11029b9c2b27c426dadff82e724 /tools/Blender.py
parent3700984c994b68d26a06cd62aaab822b346236ad (diff)
Adds ffmpeg-support on Linux-platforms. Since ffmpeg is installed
always statically (you have to force it to build a dynamic library) the resulting binary is redistributable. The code is made ffmpeg-version independent using #ifdef's.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 27365f4aab4..377e96f3d76 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -139,6 +139,8 @@ def setup_syslibs(lenv):
syslibs += Split(lenv['BF_ICONV_LIB'])
if lenv['WITH_BF_OPENEXR']:
syslibs += Split(lenv['BF_OPENEXR_LIB'])
+ if lenv['WITH_BF_FFMPEG']:
+ syslibs += Split(lenv['BF_FFMPEG_LIB'])
syslibs += Split(lenv['BF_SDL_LIB'])
syslibs += Split(lenv['BF_OPENGL_LIB'])
syslibs += Split(lenv['LLIBS'])