diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-09-08 20:32:11 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-09-08 20:32:11 +0000 |
commit | 2f686dbc560433a028eaf0bcf36e34358bec9eb8 (patch) | |
tree | 21c4153e431de1ce8a7b61aab49a9308d1387f2e | |
parent | 6f22256a38ffe614d3e6a18dcadefc759acd4ddb (diff) |
recognize MinGW
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16254 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | autoconf/configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 4ca4296cc6..1335306b70 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -110,6 +110,10 @@ case $build in AC_SUBST(OS,[Win32]) platform_type="Win32" ;; + *-*-mingw*) + AC_SUBST(OS,[Win32]) + platform_type="Win32" + ;; *) AC_SUBST(OS,[Unknown]) platform_type="Unknown" |