FIX: added 64-bit detection to Maui configure script if uname -m reports 64-bit architecture

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@93 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
josh 2007-10-09 15:40:54 +00:00
parent 2b53c6eac6
commit d4090c46e8

6
configure vendored
View File

@ -2256,6 +2256,12 @@ echo "$as_me: WARNING: Unsupported OS: $OS, attempting build with OPSYS=$OPSYS"
OS="LINUX"
fi
# Configure 64 bit dependent settings
BIT64=`uname -m | grep 64`
if test -n "$BIT64"; then
CFLAGS="$CFLAGS -D__M64"
LDFLAGS="$LDFLAGS"
fi
# Make generic variable Substitutions