diff options
author | İsmail Dönmez <ismail@i10z.com> | 2016-03-08 14:45:16 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-16 09:20:39 +0100 |
commit | fa3eecf9ab6e20c1c74554fc2eb8b8e4245935b4 (patch) | |
tree | fb8cf768012e71d9c966520d614093affae19f85 | |
parent | d0a9114f991142514fe398ea2cc4ba58620691b1 (diff) | |
download | ffmpeg-fa3eecf9ab6e20c1c74554fc2eb8b8e4245935b4.tar.gz |
configure: Use lowercase includes/library names for schannel check.
Fixes cross-build on Linux with mingw-w64.
Reviewed-by: Reimar Döffinger
Reviewed-by: Hendrik Leppkes
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5694,8 +5694,8 @@ disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreF check_lib2 "Security/SecureTransport.h Security/Security.h" "SSLCreateContext SecItemImport" "-Wl,-framework,CoreFoundation -Wl,-framework,Security" && enable securetransport; } -disabled schannel || { check_func_headers "windows.h Security.h" InitializeSecurityContext -DSECURITY_WIN32 -lSecur32 && - enable schannel && add_extralibs -lSecur32; } +disabled schannel || { check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 && + enable schannel && add_extralibs -lsecur32; } makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo enabled makeinfo \ |