This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 8adb0d5976ca7e50c166b66e5bd7c6909a35f065 Author: Kacper Michajłow <[email protected]> AuthorDate: Sat Aug 22 17:24:36 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Sep 7 03:57:59 2026 +0000 configure: remove MSVC version check The C11 support check rejects anything older than VS2019 16.8, where /std:c11 was introduced. A separate version probe is redundant. Signed-off-by: Kacper Michajłow <[email protected]> --- configure | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/configure b/configure index f671c708cf..569b0744bb 100755 --- a/configure +++ b/configure @@ -4996,13 +4996,8 @@ case "$toolchain" in esac ;; msvc) - cl_major_ver=$(cl.exe 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p') - if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then - cc_default="cl.exe" - cxx_default="cl.exe" - else - die "Unsupported MSVC version (2013 or newer required)" - fi + cc_default="cl.exe" + cxx_default="cl.exe" ld_default="$source_path/compat/windows/mslink" windres_default="$source_path/compat/windows/mswindres" nm_default="dumpbin.exe -symbols" -- To stop receiving notification emails like this one, please contact [email protected]. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
