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
path: root/config
diff options
context:
space:
mode:
authorPeter Schlaile <peter@schlaile.de>2007-09-27 10:47:59 +0400
committerPeter Schlaile <peter@schlaile.de>2007-09-27 10:47:59 +0400
commit54dca15a0e277da419b4dfae2cd4c123fcd67fd8 (patch)
tree858b3aff59c2d3270f6c487d908e96d491738e2f /config
parent379d7827aee5a5ece24ba5c7990fbe1847b18b38 (diff)
== FFMPEG ==
First round of scons support for internal ffmpeg.
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 90fe74cee6b..863885dc0bd 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -115,11 +115,13 @@ BF_ICONV_LIB = 'iconv'
BF_ICONV_LIBPATH = '${BF_ICONV}/lib'
# enable ffmpeg support
-WITH_BF_FFMPEG = 'false' # -DWITH_FFMPEG
-BF_FFMPEG = '/usr'
+WITH_BF_FFMPEG = 'true' # -DWITH_FFMPEG
+BF_FFMPEG = '#extern/ffmpeg'
BF_FFMPEG_INC = '${BF_FFMPEG}/include'
BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib'
-BF_FFMPEG_LIB = 'avformat avcodec swscale avutil'
+BF_FFMPEG_LIB = ''
+# Uncomment the following line to use external ffmpeg
+# BF_FFMPEG_LIB = 'avformat avcodec swscale avutil'
# Mesa Libs should go here if your using them as well....
WITH_BF_STATICOPENGL = 'false'