Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
72655616
Commit
72655616
authored
Jul 28, 2017
by
Clément Bœsch
Committed by
Clément Bœsch
Sep 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: treat securetransport and schannel like other autodetected libraries
parent
1c08ff08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
configure
configure
+10
-4
No files found.
configure
View file @
72655616
...
...
@@ -3606,6 +3606,7 @@ enable_weak cuda cuvid nvenc vda_framework videotoolbox videotoolbox_encoder
enable_weak zlib bzlib lzma
enable_weak iconv
enable_weak securetransport schannel
disabled logging
&&
logfile
=
/dev/null
...
...
@@ -6055,11 +6056,16 @@ if enabled decklink; then
esac
fi
disabled securetransport
||
{
check_func SecIdentityCreate
"-Wl,-framework,CoreFoundation -Wl,-framework,Security"
&&
check_lib securetransport
"Security/SecureTransport.h Security/Security.h"
"SSLCreateContext SecItemImport"
"-Wl,-framework,CoreFoundation -Wl,-framework,Security"
;
}
enabled securetransport
&&
check_func SecIdentityCreate
"-Wl,-framework,CoreFoundation -Wl,-framework,Security"
&&
check_lib securetransport
"Security/SecureTransport.h Security/Security.h"
"SSLCreateContext SecItemImport"
"-Wl,-framework,CoreFoundation -Wl,-framework,Security"
||
disable securetransport
disabled schannel
||
{
check_func_headers
"windows.h security.h"
InitializeSecurityContext
-DSECURITY_WIN32
-lsecur32
&&
check_cpp_condition winerror.h
"defined(SEC_I_CONTEXT_EXPIRED)"
&&
enable
schannel
&&
add_extralibs
-lsecur32
;
}
enabled schannel
&&
check_func_headers
"windows.h security.h"
InitializeSecurityContext
-DSECURITY_WIN32
-lsecur32
&&
check_cpp_condition winerror.h
"defined(SEC_I_CONTEXT_EXPIRED)"
&&
add_extralibs
-lsecur32
||
disable schannel
makeinfo
--version
>
/dev/null 2>&1
&&
enable
makeinfo
||
disable makeinfo
enabled makeinfo
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment