This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 4eec440e36 configure: filter out -D options from msvc link
4eec440e36 is described below

commit 4eec440e360b4ada0037407715a9c53beea2e98a
Author:     Hendrik Leppkes <[email protected]>
AuthorDate: Thu May 28 23:01:32 2026 +0200
Commit:     Hendrik Leppkes <[email protected]>
CommitDate: Fri Jun 5 07:39:40 2026 +0000

    configure: filter out -D options from msvc link
    
    The linker does not understand or require -D (define) options, and
    unknown options are treated as errors.
    
    Fixes building with MSVC and SChannel, which regressed after
    1e031d4af713168259ea3fd82c54a25f30b7bada
---
 configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index f136365d8c..f544c578d4 100755
--- a/configure
+++ b/configure
@@ -5224,6 +5224,7 @@ msvc_common_flags(){
             -LARGEADDRESSAWARE)   echo $flag ;;
             -L*) [ "$_flags_type" != "link" ] || echo -libpath:${flag#-L} ;;
             -I*) [ "$_flags_type" = "link" ] || echo $flag ;;
+            -D*) [ "$_flags_type" = "link" ] || echo $flag ;;
             -Wl,*)                ;;
             *)                    echo $flag ;;
         esac

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to