diff options
author | James Almer <jamrial@gmail.com> | 2018-09-02 16:56:27 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-09-02 17:18:58 -0300 |
commit | 73d193d1d0ff62a029a905d1404c0fd357f4c880 (patch) | |
tree | a14ad6d4cef8df442dc140e40da711f25f46dd75 | |
parent | 41cd5af3250ef976f0a48adeb6dbccc9b2683e58 (diff) | |
parent | 25c2a27c9ec0150210d75ee5ac8ed1bfa14c1a56 (diff) | |
download | ffmpeg-73d193d1d0ff62a029a905d1404c0fd357f4c880.tar.gz |
Merge commit '25c2a27c9ec0150210d75ee5ac8ed1bfa14c1a56'
* commit '25c2a27c9ec0150210d75ee5ac8ed1bfa14c1a56':
configure: Make require_cc() and require_cpp_condition() functions consistent
Merged-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -1484,8 +1484,7 @@ require(){ require_cc(){ log require_cc "$@" name="$1" - shift - test_code cc "$@" || die "ERROR: $name failed" + check_cc "$@" || die "ERROR: $name failed" } require_cpp(){ @@ -1504,8 +1503,8 @@ require_header(){ require_cpp_condition(){ log require_cpp_condition "$@" - condition="$2" - test_cpp_condition "$@" || die "ERROR: $condition not satisfied" + condition="$3" + check_cpp_condition "$@" || die "ERROR: $condition not satisfied" } require_pkg_config(){ @@ -6161,10 +6160,10 @@ enabled libwebp && { enabled libx264 && { check_pkg_config libx264 x264 "stdint.h x264.h" x264_encoder_encode || { require libx264 "stdint.h x264.h" x264_encoder_encode "-lx264 $pthreads_extralibs $libm_extralibs" && warn "using libx264 without pkg-config"; } } && - require_cpp_condition x264.h "X264_BUILD >= 118" && + require_cpp_condition libx264 x264.h "X264_BUILD >= 118" && check_cpp_condition libx262 x264.h "X264_MPEG2" enabled libx265 && require_pkg_config libx265 x265 x265.h x265_api_get && - require_cpp_condition x265.h "X265_BUILD >= 68" + require_cpp_condition libx265 x265.h "X265_BUILD >= 68" enabled libxavs && require libxavs "stdint.h xavs.h" xavs_encoder_encode "-lxavs $pthreads_extralibs $libm_extralibs" enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore enabled libzimg && require_pkg_config libzimg "zimg >= 2.7.0" zimg.h zimg_get_api_version |