]> The Tcpdump Group git mirrors - tcpdump/commitdiff
The current "config.guess" may give different Alpha processors different
authorguy <guy>
Tue, 19 Sep 2000 04:01:25 +0000 (04:01 +0000)
committerguy <guy>
Tue, 19 Sep 2000 04:01:25 +0000 (04:01 +0000)
names, e.g. "alphaev56", rather than just "alpha", so, in
"AC_LBL_UNALIGNED_ACCESS", we should check for "alpha*", rather than
"alpha", in our test for platforms we *know* shouldn't do unaligned
accesses (Digital^H^H^H^H^H^H^HTru64 UNIX, by default, may just catch
the alignment trap, complain on the console, and then simulate the
unaligned access, but that's slow - and, in one test, didn't appear to
prevent all the faults from unaligned accesses).

aclocal.m4
configure

index 394fb3e3f5258843143b86c9b567644e628402d5..0f39e0849c6a7566b0a49f8a27dc96f33e0d9258 100644 (file)
@@ -1,4 +1,4 @@
-dnl @(#) $Header: /tcpdump/master/tcpdump/aclocal.m4,v 1.71 2000-07-30 10:53:20 assar Exp $ (LBL)
+dnl @(#) $Header: /tcpdump/master/tcpdump/aclocal.m4,v 1.72 2000-09-19 04:01:25 guy Exp $ (LBL)
 dnl
 dnl Copyright (c) 1995, 1996, 1997, 1998
 dnl    The Regents of the University of California.  All rights reserved.
@@ -492,7 +492,7 @@ AC_DEFUN(AC_LBL_UNALIGNED_ACCESS,
        [case "$target_cpu" in
 
        # XXX: should also check that they don't do weird things (like on arm)
-       alpha|arm*|hp*|mips|sparc)
+       alpha*|arm*|hp*|mips|sparc)
                ac_cv_lbl_unaligned_fail=yes
                ;;
 
index 2fba971e4d79d55e194d56a2ec8300559a3cd31d..884a33debfe4b6081c467b9ae899fc60dbe4ab6d 100755 (executable)
--- a/configure
+++ b/configure
@@ -4498,7 +4498,7 @@ else
   case "$target_cpu" in
 
        # XXX: should also check that they don't do weird things (like on arm)
-       alpha|arm*|hp*|mips|sparc)
+       alpha*|arm*|hp*|mips|sparc)
                ac_cv_lbl_unaligned_fail=yes
                ;;