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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-02-04 09:44:13 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-02-04 09:44:13 +0300
commitebbe718237932964b25d9a6184cd6894da46673e (patch)
tree0f00f5baaa8104ac85727e6445b066f48dd21cee /SConstruct
parent1425e0da6d25f624480b9df2c5c724d101d1ee67 (diff)
* Building with FFMPEG-support on Windows works only for mingw. And those libs are static anyway.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 4 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 1886b6486b8..00b7404e9fd 100644
--- a/SConstruct
+++ b/SConstruct
@@ -422,10 +422,10 @@ if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
dllsources += ['${LCGDIR}/pthreads/lib/pthreadVC2.dll']
if env['WITH_BF_ICONV']:
dllsources += ['${LCGDIR}/iconv/lib/iconv.dll']
- if env['WITH_BF_FFMPEG']:
- dllsources += ['${LCGDIR}/ffmpeg/lib/avcodec-51.dll',
- '${LCGDIR}/ffmpeg/lib/avformat-51.dll',
- '${LCGDIR}/ffmpeg/lib/avutil-49.dll']
+# if env['WITH_BF_FFMPEG']:
+# dllsources += ['${LCGDIR}/ffmpeg/lib/avcodec-51.dll',
+# '${LCGDIR}/ffmpeg/lib/avformat-51.dll',
+# '${LCGDIR}/ffmpeg/lib/avutil-49.dll']
windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
allinstall += windlls