1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-17 20:17:55 +02:00

Merge commit 'c78495d1cdac6dd13786a7e5571b606604a360bd'

* commit 'c78495d1cdac6dd13786a7e5571b606604a360bd':
  configure: Log name and parameters of all helper functions where it makes sense

Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-03-31 14:36:38 -03:00
commit 8d50dd976d

3
configure vendored
View File

@ -1251,6 +1251,7 @@ check_exec(){
}
check_exec_crash(){
log check_exec_crash "$@"
code=$(cat)
# exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
@ -1321,6 +1322,7 @@ check_compile_assert(){
}
require(){
log require "$@"
name="$1"
headers="$2"
func="$3"
@ -1337,6 +1339,7 @@ require_cpp(){
}
use_pkg_config(){
log use_pkg_config "$@"
pkg="$1"
check_pkg_config "$@" || return 1
add_cflags $(get_safe "${pkg}_cflags")