This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 84ffb18f77bbe86d94d3b12e9a4e0ec58f26b219 Author: Marvin Scholz <[email protected]> AuthorDate: Tue Feb 17 14:17:16 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Feb 17 15:17:37 2026 +0000 configure: do not require default-constructible class When checking for C++ classes in check_class_headers_cxx, the test code required the class to be default-constructible, which is not always the case. For the sake of the test, it is enough to check that referencing the class succeeds. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index afa215d84b..c407849751 100755 --- a/configure +++ b/configure @@ -1499,7 +1499,7 @@ check_class_headers_cxx(){ echo "int main(void) { " i=1 for class in $classes; do - echo "$class obj$i;" + echo "$class *obj$i;" i=$(expr $i + 1) done echo "return 0; }" _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
