aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDonovan Watteau2016-12-03 16:01:20 +0100
committerThierry Crozat2016-12-03 21:43:17 +0000
commit77e0297b2a9c1226966afc9bcd81f992c59ccf7c (patch)
tree47b3597ebb1b31e1c507dc500545e3c6f51abb12 /configure
parentd2ae7fa3fa3920c6fe0a605ecedb67cd8a1f9f09 (diff)
downloadscummvm-rg350-77e0297b2a9c1226966afc9bcd81f992c59ccf7c.tar.gz
scummvm-rg350-77e0297b2a9c1226966afc9bcd81f992c59ccf7c.tar.bz2
scummvm-rg350-77e0297b2a9c1226966afc9bcd81f992c59ccf7c.zip
CONFIGURE: Allow ppc as alias for powerpc
OpenBSD, for example, uses ppc instead of powerpc.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index be6f663b4b..b8656b1022 100755
--- a/configure
+++ b/configure
@@ -2167,7 +2167,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 | amd64 | x86_64 | powerpc*)
+ i[3-6]86 | amd64 | x86_64 | powerpc* | ppc*)
# Unaligned access should work
_need_memalign=no
;;
@@ -2228,7 +2228,7 @@ case $_host_cpu in
echo "MIPS"
append_var DEFINES "-DMIPS_TARGET"
;;
- powerpc*)
+ powerpc* | ppc*)
echo "PowerPC"
append_var DEFINES "-DPPC_TARGET"
;;