From d7c528694d8e0dc54800ed6d11aaa474bc6be137 Mon Sep 17 00:00:00 2001 From: David Joseph Date: Sun, 24 Feb 2013 18:43:08 -0600 Subject: [PATCH] build: Fix MINGW64 check. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 12ea6ad..16a937f 100755 --- a/configure +++ b/configure @@ -487,7 +487,7 @@ int main(void) { #if defined(__MINGW64__) puts("mingw64"); return (0); -#if defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION >= 3) +#elif defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION >= 3) puts("mingw32"); return (0); #else