April 13, 2026
5:42 a.m.
From: Rémi Bernon <rbernon@codeweavers.com> --- include/specstrings.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/specstrings.h b/include/specstrings.h index 4d404759c2e..a26c8d7feac 100644 --- a/include/specstrings.h +++ b/include/specstrings.h @@ -328,7 +328,9 @@ extern "C" { #endif /* RC_INVOKED */ #ifndef DECLSPEC_ADDRSAFE -#if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64)) +#ifndef _MSC_VER +#define DECLSPEC_ADDRSAFE +#elif (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64)) #define DECLSPEC_ADDRSAFE __declspec(address_safe) #else #define DECLSPEC_ADDRSAFE -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10644