diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-23 11:20:03 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-23 11:20:03 +0000 |
commit | 4221e9dcb05faa6f6f7ba19bba32fe90da4577dd (patch) | |
tree | 69d42684061c9c3a8dfe53d07874f3f019b08cd1 | |
parent | 9a358e5cc3977fd6121f12dd25a358081fd77041 (diff) |
m4/gst-arch.m4: amd64/x86_64 allows unaligned memory access too.
Original commit message from CVS:
* m4/gst-arch.m4:
amd64/x86_64 allows unaligned memory access too.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | m4/gst-arch.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-03-23 Sebastian Dröge <slomo@circular-chaos.org> + + * m4/gst-arch.m4: + amd64/x86_64 allows unaligned memory access too. + 2008-03-21 Sebastian Dröge <slomo@circular-chaos.org> * m4/gst-dowhile.m4: diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index 8a32bd2..6eadaf5 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -91,7 +91,7 @@ AC_DEFUN([AG_GST_UNALIGNED_ACCESS], [ _AS_ECHO_N([(blacklisted) ]) as_cv_unaligned_access=no ;; - i?86*|powerpc*|m68k*|cris*) + i?86*|x86_64|amd64|powerpc*|m68k*|cris*) _AS_ECHO_N([(whitelisted) ]) as_cv_unaligned_access=yes ;; |