am: drop checking for WINVER for thread safety

This commit is contained in:
Viktor Szakats 2025-07-20 23:31:49 +02:00
parent 6a7be6c56c
commit 57c014612f
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -5381,7 +5381,7 @@ else
AC_LANG_PROGRAM([[
#include <windows.h>
]],[[
#if (WINVER < 0x600) && (_WIN32_WINNT < 0x600)
#if _WIN32_WINNT < 0x600
#error
#endif
]])