diff options
author | Peter Palfrader <peter@palfrader.org> | 2005-10-06 02:55:29 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2005-10-06 02:55:29 +0000 |
commit | e53f1ccbfcb667bda30ce9ee5a42cc3be9efc80a (patch) | |
tree | 0e1a3689432d3728d7a8ca24b7621c69c0e2649d /configure.in | |
parent | 780aa94b6a89f26f4dce62a35dee584b51596434 (diff) | |
download | tor-e53f1ccbfcb667bda30ce9ee5a42cc3be9efc80a.tar tor-e53f1ccbfcb667bda30ce9ee5a42cc3be9efc80a.tar.gz |
sparc64 doesn't like unaligned access either
svn:r5206
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a531eb7fd..233e89b17 100644 --- a/configure.in +++ b/configure.in @@ -365,7 +365,7 @@ AC_CHECK_SIZEOF(cell_t) # Now, let's see about alignment requirements. On some platforms, we override # the default. case $host in - ia64-*-* | arm-*-* | sparc-*-* ) + ia64-*-* | arm-*-* | sparc-*-* | sparc64-*-* ) tor_cv_unaligned_ok=no ;; # On the following architectures unaligned access works, but is not done in |