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:
authorStephen Swaney <sswaney@centurytel.net>2006-06-04 20:46:55 +0400
committerStephen Swaney <sswaney@centurytel.net>2006-06-04 20:46:55 +0400
commitd45b13ea64edbb6cf6e44516c5dcd8f6415ba1a7 (patch)
tree56973905bc33f119116f49dd5d71f8f80329877c /config
parente9fb9f2c33eb8238d6483d8adddd3ad030335e54 (diff)
support for ffmpeg in linux. default is no.
set BF_OPENGL to /usr rather than /usr/lib. thx Ken!
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index aad60c42c2f..72bf8815675 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -93,11 +93,18 @@ BF_FREETYPE_LIB = 'freetype'
WITH_BF_QUICKTIME = 'false' # -DWITH_QUICKTIME
BF_QUICKTIME = '/usr/local'
-BF_QUICKTIME_INC = '${BF_QUICKTIME}/include'
+BF_QUICKTIME_INC = '${BF_QUICKTIME}/include'
+
+# enable ffmpeg support
+WITH_BF_FFMPEG = 'false' # -DWITH_FFMPEG
+BF_FFMPEG = '/usr'
+BF_FFMPEG_INC = '${BF_FFMPEG}/include'
+BF_FFMPEG_LIBPATH='$(BF_FFMPEG)/lib'
+BF_FFMPEG_LIB = 'avcodec avformat avutil'
# Mesa Libs should go here if your using them as well....
WITH_BF_STATICOPENGL = 'false'
-BF_OPENGL = '/usr/lib'
+BF_OPENGL = '/usr'
BF_OPENGL_INC = '${BF_OPENGL}/include'
BF_OPENGL_LIB = 'GL GLU X11 Xi'
BF_OPENGL_LIBPATH = '/usr/X11R6/lib'