diff options
author | James Almer <jamrial@gmail.com> | 2017-03-31 14:36:38 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-31 14:36:38 -0300 |
commit | 8d50dd976d29884463993b75dff1cc813c089b3a (patch) | |
tree | 11c2c5d033a05e4d9959b1ea70eff69407bdfc82 | |
parent | 3795899978cf486c27c3c2001e6f909a210f01dd (diff) | |
parent | c78495d1cdac6dd13786a7e5571b606604a360bd (diff) | |
download | ffmpeg-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-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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") |