aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2013-01-09 05:10:42 +0100
committerJohannes Schickel2013-01-09 05:10:42 +0100
commited53292194682fb2ebc0d5a7ecd23e482899aefc (patch)
treeca21a2cf6fa037018f0221b940a49f3bf70cfbc1
parent796867cd32408aada11fc21323d5ee0ce201ffee (diff)
downloadscummvm-rg350-ed53292194682fb2ebc0d5a7ecd23e482899aefc.tar.gz
scummvm-rg350-ed53292194682fb2ebc0d5a7ecd23e482899aefc.tar.bz2
scummvm-rg350-ed53292194682fb2ebc0d5a7ecd23e482899aefc.zip
CONFIGURE: Allow amd64 as alias for x86_64.
Patch from #3599990 "CONFIGURE: Equate amd64 with x86_64".
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index f2d45c1305..b703776f8b 100755
--- a/configure
+++ b/configure
@@ -1904,7 +1904,7 @@ cc_check_clean tmp_find_type_with_size.cpp
# for the smaller sizes.
echo_n "Alignment required... "
case $_host_cpu in
- i[3-6]86 | x86_64 | ppc*)
+ i[3-6]86 | amd64 | x86_64 | ppc*)
# Unaligned access should work
_need_memalign=no
;;
@@ -1951,7 +1951,7 @@ case $_host_cpu in
echo "PowerPC"
DEFINES="$DEFINES -DPPC_TARGET"
;;
- x86_64)
+ amd64 | x86_64)
echo "x86_64"
;;
*)