From bd680c7b49ba665467cb00664667928bbca516a9 Mon Sep 17 00:00:00 2001 From: Derek Buitenhuis Date: Mon, 1 Oct 2012 18:39:30 +0000 Subject: [PATCH] msvc: Fix detection of VFW & Avisynth required libs It should be vfw32.lib with MSVC. Signed-off-by: Derek Buitenhuis --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 5c0aa47527..bca93619ee 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