configure: Don't force a 32-bit build when cross-compiling.

This commit is contained in:
Alexandre Julliard 2009-01-12 19:29:43 +01:00
parent 8cf8e2c60a
commit 6b4ed0faae
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -3804,7 +3804,7 @@ fi
case $host in
x86_64*)
if test "x$enable_win64" != "xyes"
if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes"
then
CC="$CC -m32"
CXX="$CXX -m32"

View File

@ -101,7 +101,7 @@ AC_CHECK_TOOL(CPPBIN,cpp,cpp)
case $host in
x86_64*)
if test "x$enable_win64" != "xyes"
if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes"
then
CC="$CC -m32"
CXX="$CXX -m32"