From: Paul Brossier Date: Sat, 1 Dec 2007 14:54:30 +0000 (+0100) Subject: configure.ac: host conditional depend on host_os, not build_os X-Git-Tag: bzr2git~422 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=55e9018db39f3f8719cdf3fd3deff5e85c0e7ac5;p=aubio.git configure.ac: host conditional depend on host_os, not build_os --- diff --git a/configure.ac b/configure.ac index 204ae38b..fd55df04 100644 --- a/configure.ac +++ b/configure.ac @@ -90,7 +90,7 @@ AC_CONFIG_FILES(aubio.pc) AM_CONDITIONAL(MINGW, false) AM_CONDITIONAL(DARWIN, false) -case "${build_os}" in +case "${host_os}" in *mingw* | *cygwin*) mingw32_support="yes" AC_CHECK_HEADER(windows.h)