From 3b2cd468025c35e8b1a58308c276286c3deaf1de Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Wed, 8 Sep 2004 20:32:11 +0000 Subject: [PATCH] recognize MinGW llvm-svn: 16254 --- autoconf/configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 4ca4296cc6e..1335306b70a 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"