mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 18:31:37 +08:00
5d7ad6b5ae
* Update ffmpeg to 4.4.3 - Backport fix for h.264 hardware decoding on M1 macs - ffmpeg links against built-in atomic, not a findable lib * add missing extension for new patch * version! Co-authored-by: Martijn Otto <martijn@resolume.com> Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
16 lines
635 B
Diff
16 lines
635 B
Diff
diff --git a/configure b/configure
|
|
index ee26559..f2c83b7 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -4496,6 +4496,10 @@ msvc_common_flags(){
|
|
-march=*) ;;
|
|
-lz) echo zlib.lib ;;
|
|
-lx264) echo libx264.lib ;;
|
|
+ -lx265) echo libx265.lib ;;
|
|
+ -lmp3lame) echo libmp3lame.lib ;;
|
|
+ -liconv) echo iconv.lib ;;
|
|
+ -lm) ;;
|
|
-lstdc++) ;;
|
|
-l*) echo ${flag#-l}.lib ;;
|
|
-LARGEADDRESSAWARE) echo $flag ;;
|