From e45c976cf3427633dcf5ca11af6ed026b710f3dc Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Tue, 16 Feb 2010 23:53:15 +0100 Subject: [PATCH] Always define the WINDOWS feature in windows (both mingw32 and MSVC) --- src/c/main.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/main.d b/src/c/main.d index 23e480b34..9ee4be354 100644 --- a/src/c/main.d +++ b/src/c/main.d @@ -143,6 +143,9 @@ static const char *feature_names[] = { #ifdef _MSC_VER "MSVC", #endif +#if defined(_MSC_VER) || defined(mingw32) + "WINDOWS", +#endif #ifdef ECL_CMU_FORMAT "CMU-FORMAT", #endif