The branch, master has been updated
       via  f6bcd661f08f84fc9177603ee9450bc91e0d2953 (commit)
      from  fc45127bcc79731a2e3ec5858a00c35c6cfbc1c0 (commit)


- Log -----------------------------------------------------------------
commit f6bcd661f08f84fc9177603ee9450bc91e0d2953
Author:     Martin Storsjö <[email protected]>
AuthorDate: Fri Sep 5 11:55:31 2025 +0300
Commit:     Timo Rothenpieler <[email protected]>
CommitDate: Fri Sep 5 12:20:11 2025 +0000

    configure: Improve the check for schannel DTLS constants
    
    This amends 307983b292adb60c82e75c8e5e41deedc89efbf0 to fix
    building with older versions of mingw-w64.
    
    The previously checked constant, SP_PROT_DTLS1_X_CLIENT, was
    added in mingw-w64 in df36f5deda23192d0ee99ffd661ea36df924e667
    in 2020, and is included in released versions since v8.0.0.
    
    The new checked constant SECPKG_ATTR_DTLS_MTU was added in
    mingw-w64 in 0792283787cca8fc27dd38671107c791c87f4db3 in 2021,
    and first appeared in mingw-w64 v9.0.0.
    
    This fixes building with mingw-w64 v8, which is the version bundled
    in Ubuntu 22.04.

diff --git a/configure b/configure
index 7ec4c3975b..0aa93622fe 100755
--- a/configure
+++ b/configure
@@ -7349,7 +7349,7 @@ enabled schannel &&
     schannel_extralibs="-lsecur32 -lncrypt -lcrypt32" ||
         disable schannel
 
-enabled schannel && check_cc dtls_protocol "windows.h security.h schnlsp.h" 
"int i = SP_PROT_DTLS1_X_CLIENT;" -DSECURITY_WIN32
+enabled schannel && check_cc dtls_protocol "windows.h security.h schnlsp.h" 
"int i = SECPKG_ATTR_DTLS_MTU;" -DSECURITY_WIN32
 
 makeinfo --version > /dev/null 2>&1 && enable makeinfo  || disable makeinfo
 enabled makeinfo \

-----------------------------------------------------------------------

Summary of changes:
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 

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

Reply via email to