Commit b64d956d authored by Andrew Dunstan's avatar Andrew Dunstan

Prevent double macro definition of WIN32.

David Rowley.
parent 4cba1f6b
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
* but _WIN32 is the compiler pre-defined macro. So make sure we define * but _WIN32 is the compiler pre-defined macro. So make sure we define
* WIN32 whenever _WIN32 is set, to facilitate standalone building. * WIN32 whenever _WIN32 is set, to facilitate standalone building.
*/ */
#if defined(_WIN32) #if defined(_WIN32) && !defined(WIN32)
#define WIN32 #define WIN32
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment