dshow: Define STRSAFE_NO_DEPRECATE while building
The mingw dshow.h includes strsafe.h. Normally, strsafe.h deprecates certain functions like strcpy and strcat, adding defines like #define strcpy strcpy_instead_use_StringCbCopyA_or_StringCchCopyA libcxx contains code that declares "using ::strcpy;" and "using ::strcat;" within a namespace, which breaks if strsafe.h has been included before. Add this define to skip the deprecation defines in strsafe.h, fixing buliding with libcxx.
Please register or sign in to comment