From 664610aa6265bffbb76378601af9048fc26197db Mon Sep 17 00:00:00 2001 From: Kjetil Matheussen Date: Sun, 19 Jul 2015 10:01:53 +0200 Subject: [PATCH] Use _WIN32 instead of WIN32 in header files since WIN32 might not always be defined For instance, if compiling with gcc and the option --stc=c++11, WIN32 is not defined. See http://webcache.googleusercontent.com/search?q=cache:amvfgAUCdsgJ:sourceforge.net/p/mingw-w64/mailman/message/31850993/+&cd=4&hl=en&ct=clnk&gl=no http://sourceforge.net/p/mingw-w64/mailman/message/31850993/ --- systemdeps.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemdeps.h b/systemdeps.h index b4a1472..ce0c2f7 100644 --- a/systemdeps.h +++ b/systemdeps.h @@ -58,7 +58,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #endif -#if defined(WIN32) && !defined(__CYGWIN__) && !defined(GNU_WIN32) +#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(GNU_WIN32) #include @@ -101,7 +101,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. typedef pthread_t jack_native_thread_t; #endif -#endif /* WIN32 && !__CYGWIN__ && !GNU_WIN32 */ +#endif /* _WIN32 && !__CYGWIN__ && !GNU_WIN32 */ #if defined(__APPLE__) || defined(__linux__) || defined(__sun__) || defined(sun) || defined(__unix__) || defined(__CYGWIN__) || defined(GNU_WIN32)