This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit b98ec6d31298e820063bb0fb36ea8c6161041f1d Author: Marvin Scholz <[email protected]> AuthorDate: Tue Feb 17 14:26:25 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Feb 17 15:17:37 2026 +0000 configure: remove require_cpp, check_lib_cpp Remove the improperly named check functions that were added for the opencolorio detection in 677cf95ea4be805fa326adb082eff666a2e790ea. Those are not needed anymore and there are already require_cxx and check_lib_cxx for this purpose. --- configure | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/configure b/configure index e7c6418490..da93aaf661 100755 --- a/configure +++ b/configure @@ -1580,17 +1580,6 @@ check_lib(){ enable $name && eval ${name}_extralibs="\$@" } -check_lib_cpp(){ - log check_lib_cpp "$@" - name="$1" - headers="$2" - code="$3" - shift 3 - disable $name - test_code ld "$headers" "$code" cxx "$@" && - enable $name && eval ${name}_extralibs="\$@" -} - check_lib_cxx(){ log check_lib_cxx "$@" name="$1" @@ -1804,14 +1793,6 @@ require_cxx(){ check_lib_cxx "$name" "$@" || die "ERROR: $name_version not found" } -require_cpp(){ - log require_cpp "$@" - name_version="$1" - name="${1%% *}" - shift - check_lib_cpp "$name" "$@" || die "ERROR: $name_version not found" -} - require_headers(){ log require_headers "$@" headers="$1" _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
