diff options
author | James Almer <jamrial@gmail.com> | 2018-04-15 20:33:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-04-16 10:20:46 -0300 |
commit | c04609eefce0183d460430f5014f7f8948170770 (patch) | |
tree | 66cd99b5ea1c6f4fd394ea2036c8950e8646ff74 /configure | |
parent | 3c1ecb057d7621e57968624aa15ad3e9efc819f7 (diff) | |
download | ffmpeg-c04609eefce0183d460430f5014f7f8948170770.tar.gz |
configure: extend the check for bcrypt
Some old mingw-w64 builds seem to provide an incomplete implementation
of the API. Add an extra check to make sure it's disabled for those.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5828,7 +5828,8 @@ check_header asm/types.h check_builtin stdatomic stdatomic.h "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0); foo += bar" check_lib advapi32 "windows.h" RegCloseKey -ladvapi32 -check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt +check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt && + check_cpp_condition bcrypt bcrypt.h "defined BCRYPT_RNG_ALGORITHM" check_lib ole32 "windows.h" CoTaskMemFree -lole32 check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32 check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi |