OSDN Git Service

Change __MINGW to __MINGW32__. Patch submitted by Henrik Bach.
authorJeff Cohen <jeffc@jolt-lang.org>
Sat, 19 Feb 2005 03:01:13 +0000 (03:01 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Sat, 19 Feb 2005 03:01:13 +0000 (03:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20243 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Config/alloca.h
lib/System/Win32/DynamicLibrary.inc
lib/System/Win32/Process.inc
lib/System/Win32/Signals.inc
lib/System/Win32/TimeValue.inc

index 13631e5..0756db4 100644 (file)
@@ -28,7 +28,7 @@
 #define alloca _alloca
 #elif defined(HAVE_ALLOCA_H)
 #include <alloca.h>
-#elif defined(__MINGW) && defined(HAVE_MALLOC_H)
+#elif defined(__MINGW32__) && defined(HAVE_MALLOC_H)
 #include <malloc.h>
 #elif !defined(__GNUC__)
 #      ifdef _AIX
index af28f75..2209e59 100644 (file)
@@ -13,7 +13,7 @@
 
 #include "Win32.h"
 
-#ifdef __MINGW
+#ifdef __MINGW32__
 #include <imagehlp.h>
 #else
 #include <dbghelp.h>
index 7c8de64..a47ff2e 100644 (file)
@@ -23,7 +23,7 @@
 //===          and must not be UNIX code
 //===----------------------------------------------------------------------===//
 
-#ifdef __MINGW
+#ifdef __MINGW32__
 // This ban should be lifted when MinGW 1.0+ has defined this value.
 #  define _HEAPOK (-2)
 #endif
index afe6c8d..55e2d2d 100644 (file)
@@ -15,7 +15,7 @@
 #include <stdio.h>
 #include <vector>
 
-#ifdef __MINGW
+#ifdef __MINGW32__
 #include <imagehlp.h>
 #else
 #include <dbghelp.h>
index 34a5df1..01f7484 100644 (file)
@@ -31,7 +31,7 @@ TimeValue TimeValue::now() {
 }
 
 std::string TimeValue::toString() const {
-#ifdef __MINGW
+#ifdef __MINGW32__
   // This ban may be lifted by either:
   // (i) a future MinGW version other than 1.0 inherents the __time64_t type, or
   // (ii) configure tests for either the time_t or __time64_t type.