diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-05-30 22:05:32 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-31 12:02:53 +0200 |
commit | c729021f450f6d5a47698d3f248bf4c2a0ad2142 (patch) | |
tree | a1c0df007ca97dc29613edc4b700ddf2f192b668 | |
parent | 168195f25add30952faf1374fed1c707683e2de4 (diff) | |
download | ffmpeg-c729021f450f6d5a47698d3f248bf4c2a0ad2142.tar.gz |
configure: Check for SecItemImport for securetransport as well
This fixes the default build on iOS; eventually I should come up with
a better solution for that platform.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5218,7 +5218,7 @@ fi enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreFoundation -Wl,-framework,Security" && - check_lib2 Security/SecureTransport.h SSLCreateContext "-Wl,-framework,CoreFoundation -Wl,-framework,Security" && + check_lib2 "Security/SecureTransport.h Security/Security.h" "SSLCreateContext SecItemImport" "-Wl,-framework,CoreFoundation -Wl,-framework,Security" && enable securetransport; } makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo |