fixed windows cross compilation of vpcd-config

This commit is contained in:
Frank Morgner
2015-08-21 03:46:46 +02:00
parent dc342cf682
commit e4b438e870
3 changed files with 19 additions and 1 deletions

View File

@@ -20,6 +20,17 @@ ifdef(
]
)
dnl Check for windows build
case "${host}" in
*-mingw*|*-winnt*)
WIN32="yes"
;;
*-cygwin*)
WIN32="yes"
;;
esac
AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL