From bdda5189f087568f51473edf30bf67bf6a965d33 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 3 Feb 2016 23:38:33 +1100 Subject: [PATCH] fix configure errors for 64bit mingw changes the search pattern for host_os from *mingw32* to *mingw* so that mingw64 can be used --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index a82fe20e..a913a5a8 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -7,7 +7,7 @@ AC_DEFUN([LIBZMQ_CONFIG_LIBTOOL], [{ # Libtool configuration for different targets case "${host_os}" in - *mingw32*|*cygwin*) + *mingw*|*cygwin*) # Disable static build by default AC_DISABLE_STATIC ;;