diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-03-16 15:23:28 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-03-16 15:31:21 +0100 |
commit | 7d9e064cc13cb1b9db854c60bfff3ed3dc60ab7b (patch) | |
tree | 42921b3a3cc248952786c28831b67af9f8952c0c /configure | |
parent | c198295dedd5ef8e864c2794bf90c27848f23140 (diff) | |
download | ffmpeg-7d9e064cc13cb1b9db854c60bfff3ed3dc60ab7b.tar.gz |
configure: check for SEC_I_CONTEXT_EXPIRED before enabling SChannel
Fixes build on mingw32, which lacks this constant.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5695,7 +5695,7 @@ disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreF enable securetransport; } disabled schannel || { check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 && - enable schannel && add_extralibs -lsecur32; } + check_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" && enable schannel && add_extralibs -lsecur32; } makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo enabled makeinfo \ |