From 6e4f2f6f0dad303f13ea3b1a5e527030406a3756 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 26 Oct 2011 14:46:09 +0200 Subject: Fixed "no --enable-dbgutil for MSVC" check. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 54687872cf0d..9700de9e6d75 100644 --- a/configure.in +++ b/configure.in @@ -2312,8 +2312,8 @@ if test -n "$enable_dbgutil" && test "$enable_dbgutil" != "no"; then # causes too many compilation errors. After having spent some # months slowly fixing them one by one, having reached sw, I give # up. Feel free to try again. - if test $_os = WINNT; then - AC_MSG_ERROR([Sorry, --enable-dgutil won't work with MSVC]) + if test "$_os" = WINNT -a "$WITH_MINGW" != yes; then + AC_MSG_ERROR([Sorry, --enable-dbgutil won't work with MSVC]) fi AC_MSG_RESULT([yes]) -- cgit