Adapt Windows installer for 64 bit

This commit is contained in:
Wladimir J. van der Laan
2014-01-21 12:01:37 +01:00
parent f622232bcf
commit 2f87b38e2e
3 changed files with 27 additions and 5 deletions

View File

@ -193,6 +193,12 @@ case $host in
if test "x$CXXFLAGS_overridden" = "xno"; then
CXXFLAGS="$CXXFLAGS -w"
fi
case $host in
i?86-*) WINDOWS_BITS=32 ;;
x86_64-*) WINDOWS_BITS=64 ;;
*) AC_MSG_ERROR("Could not determine win32/win64 for installer") ;;
esac
AC_SUBST(WINDOWS_BITS)
;;
*darwin*)
TARGET_OS=darwin