diff options
| author | Martin Kröning <mkroening@posteo.net> | 2019-08-19 17:41:49 +0200 |
|---|---|---|
| committer | Curtis J Bezault <curtbezault@gmail.com> | 2019-08-19 08:41:49 -0700 |
| commit | 9a6f38041fbf75e9df455919aab2412cee9c0a20 (patch) | |
| tree | 43b0bbeb747eff20c056cab9c055733766901e36 /ports/ffmpeg/CONTROL | |
| parent | 81258880b185345a21d89d458d9c995f2ec65fc4 (diff) | |
| download | vcpkg-9a6f38041fbf75e9df455919aab2412cee9c0a20.tar.gz vcpkg-9a6f38041fbf75e9df455919aab2412cee9c0a20.zip | |
[ffmpeg] Fix static linking on Windows, FindFFMPEG (#7739)
This adds zlib as dependency to make it possible to find in FindFFMPEG.cmake.
Also FFmpeg likes to autodetect zlib for additional features on compilation.
This removes the check for stdint.h, as it is included since MSVC 2010 and does not always find it.
To enable static linking on windows, bcript had to be added:
avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptOpenAlgorithmProvider@16 referenced in function _av_get_random_seed
avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptCloseAlgorithmProvider@8 referenced in function _av_get_random_seed
avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptGenRandom@16 referenced in function _av_get_random_seed
Diffstat (limited to 'ports/ffmpeg/CONTROL')
| -rw-r--r-- | ports/ffmpeg/CONTROL | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/ffmpeg/CONTROL b/ports/ffmpeg/CONTROL index abf59b857..724a849c2 100644 --- a/ports/ffmpeg/CONTROL +++ b/ports/ffmpeg/CONTROL @@ -1,5 +1,6 @@ Source: ffmpeg -Version: 4.1-10 +Version: 4.1-11 +Build-Depends: zlib Homepage: https://ffmpeg.org Description: a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations. |
