Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-04-16 02:33:37 +0300
committerJames Almer <jamrial@gmail.com>2018-04-16 16:50:30 +0300
commitb6ec1812403547ba10dfb4c6be5ac276d19f4328 (patch)
tree90b28c97457ba963f2d5f7bd9aeb573af7582d3f /configure
parentb42e135614df4b1f4cec312f7b3125a245b12b3a (diff)
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> (cherry picked from commit c04609eefce0183d460430f5014f7f8948170770)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index a6f32f8d9a..323a7dc0f6 100755
--- a/configure
+++ b/configure
@@ -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