Commit bd680c7b authored by Derek Buitenhuis's avatar Derek Buitenhuis

msvc: Fix detection of VFW & Avisynth required libs

It should be vfw32.lib with MSVC.
Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 1e46c63e
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment