aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-31 14:36:38 -0300
committerJames Almer <jamrial@gmail.com>2017-03-31 14:36:38 -0300
commit8d50dd976d29884463993b75dff1cc813c089b3a (patch)
tree11c2c5d033a05e4d9959b1ea70eff69407bdfc82
parent3795899978cf486c27c3c2001e6f909a210f01dd (diff)
parentc78495d1cdac6dd13786a7e5571b606604a360bd (diff)
downloadffmpeg-8d50dd976d29884463993b75dff1cc813c089b3a.tar.gz
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>
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index d9185bd875..c024717b0a 100755
--- a/configure
+++ b/configure
@@ -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")