[FFmpeg-cvslog] msvc: Fix detection of VFW & Avisynth required libs

Derek Buitenhuis git at videolan.org
Tue Oct 2 20:07:45 CEST 2012


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Mon Oct  1 18:39:30 2012 +0000| [bd680c7b49ba665467cb00664667928bbca516a9] | committer: Derek Buitenhuis

msvc: Fix detection of VFW & Avisynth required libs

It should be vfw32.lib with MSVC.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bd680c7b49ba665467cb00664667928bbca516a9
---

 configure |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure b/configure
index 5c0aa47..bca9361 100755
--- a/configure
+++ b/configure
@@ -2137,6 +2137,8 @@ msvc_flags(){
             -fno-common)          ;;
             -fno-signed-zeros)    ;;
             -lz)                  echo zlib.lib ;;
+            -lavifil32)           echo vfw32.lib ;;
+            -lavicap32)           echo vfw32.lib user32.lib ;;
             -l*)                  echo ${flag#-l}.lib ;;
             *)                    echo $flag ;;
         esac



More information about the ffmpeg-cvslog mailing list