diff options
author | 2001-11-06 23:03:12 +0000 | |
---|---|---|
committer | 2001-11-06 23:03:12 +0000 | |
commit | 0ebf11d9b01db4a9dd2931c001431d22f4bab646 (patch) | |
tree | 61ead0564a9232c12d40d333cb1fd47bfcedb3d0 | |
parent | -Wall -Werror cleanup. (diff) | |
download | wireguard-openbsd-0ebf11d9b01db4a9dd2931c001431d22f4bab646.tar.xz wireguard-openbsd-0ebf11d9b01db4a9dd2931c001431d22f4bab646.zip |
sparc64 needs LBL_ALIGN.
-rw-r--r-- | usr.sbin/tcpdump/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/Makefile b/usr.sbin/tcpdump/Makefile index 2fe169fe9fe..36198cdadce 100644 --- a/usr.sbin/tcpdump/Makefile +++ b/usr.sbin/tcpdump/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.32 2001/07/11 03:02:25 pvalchev Exp $ +# $OpenBSD: Makefile,v 1.33 2001/11/06 23:03:12 art Exp $ # # Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 # The Regents of the University of California. All rights reserved. @@ -26,7 +26,8 @@ MAN= tcpdump.8 CFLAGS+=-Wall -Werror CFLAGS+=-DCSLIP -DPPP -DHAVE_FDDI -DETHER_SERVICE -DRETSIGTYPE=void -DHAVE_NET_SLIP_H -DHAVE_ETHER_NTOHOST -DINET6 -.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc") +.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc") || \ + (${MACHINE_ARCH} == "sparc64") CFLAGS+=-DLBL_ALIGN .endif |