aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMax Horn2007-01-18 21:36:44 +0000
committerMax Horn2007-01-18 21:36:44 +0000
commitfb95758b818cc41a9f125f809c7441da918dd552 (patch)
treed76d52ee99f37e1ba04606117befd2b5c9368f17 /configure
parent7d8ddb9a5b89b9839cd82230699049f80960a358 (diff)
downloadscummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.tar.gz
scummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.tar.bz2
scummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.zip
Patch #1596959 (SH and MIPS need memalign too)
svn-id: r25118
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure b/configure
index 0f16785a72..05a4290b3e 100755
--- a/configure
+++ b/configure
@@ -872,6 +872,18 @@ EOF
# Hardcode alignment requirements for Alpha processsors
_need_memalign=yes
;;
+ sh*)
+ # Hardcode alignment requirements for SH processsors.
+ # While these can emulate unaligned memory access, this
+ # emulation is rather slow.
+ _need_memalign=yes
+ ;;
+ mips*)
+ # Hardcode alignment requirements for MIPS processsors.
+ # While these can emulate unaligned memory access, this
+ # emulation is rather slow.
+ _need_memalign=yes
+ ;;
*)
# Try to auto-detect....
cat > $TMPC << EOF