From c9bdcfc58486ef42946aea28d34c45c0d125a2fd Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 16 Apr 2015 00:40:32 +1000 Subject: [PATCH] allow host_os to accept mingw64 Changes the pattern for the host_os matches to *mingw* from *mingw32* to accept both mingw32 and mingw64 versions. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f0102e9d..ed616a82 100644 --- a/configure.ac +++ b/configure.ac @@ -245,7 +245,7 @@ case "${host_os}" in LIBZMQ_CHECK_LANG_FLAG_PREPEND([-Ae]) AC_CHECK_FUNCS(gethrtime) ;; - *mingw32*) + *mingw*) AC_DEFINE(ZMQ_HAVE_WINDOWS, 1, [Have Windows OS]) AC_DEFINE(ZMQ_HAVE_MINGW32, 1, [Have MinGW32]) AC_CHECK_HEADERS(windows.h)