mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 18:09:00 +08:00
2017886818
- Setup and use pkg-config for ffmpeg dependencies. https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355. - Export actual c++ link libraries for fdk-aac via pkg-config. (Same pattern as lerc, geos.) - Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265. - Burn-in dllimport for libsrt and x265. - Pass detected STRIP to ffmpeg. Fixes https://github.com/microsoft/vcpkg/issues/36852.
13 lines
488 B
Diff
13 lines
488 B
Diff
diff --git a/configure b/configure
|
|
index d6c4388..75b96c3 100644
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -4378,6 +4378,7 @@ msvc_common_flags(){
|
|
-march=*) ;;
|
|
-lz) echo zlib.lib ;;
|
|
-lx264) echo libx264.lib ;;
|
|
+ -lmp3lame) echo libmp3lame.lib ;;
|
|
-lstdc++) ;;
|
|
-l*) echo ${flag#-l}.lib ;;
|
|
-LARGEADDRESSAWARE) echo $flag ;;
|