Module: libav Branch: master Commit: bd680c7b49ba665467cb00664667928bbca516a9
Author: Derek Buitenhuis <[email protected]> Committer: Derek Buitenhuis <[email protected]> Date: Mon Oct 1 18:39:30 2012 +0000 msvc: Fix detection of VFW & Avisynth required libs It should be vfw32.lib with MSVC. Signed-off-by: Derek Buitenhuis <[email protected]> --- configure | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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 _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
