fix configure errors for 64bit mingw

changes the search pattern for host_os from *mingw32* to *mingw* so that mingw64 can be used
This commit is contained in:
Michael 2016-02-03 23:38:33 +11:00
parent 0329402d0a
commit bdda5189f0

View File

@ -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
;;