diff options
author | julian <julian@FreeBSD.org> | 1999-02-20 11:18:00 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1999-02-20 11:18:00 +0000 |
commit | 16c8d9e8d0ca48475483b6c811b4af317c734ab0 (patch) | |
tree | e3e5ce3fffddfb7abb04759c7f4a6af8d76a18c1 /usr.sbin | |
parent | 0fd1dd9aabd45a0d145034aef2766eb2a88c1185 (diff) | |
download | FreeBSD-src-16c8d9e8d0ca48475483b6c811b4af317c734ab0.zip FreeBSD-src-16c8d9e8d0ca48475483b6c811b4af317c734ab0.tar.gz |
World, I'd like you to meet the first FreeBSD token Ring driver.
This is for various Olicom cards. An IBM driver is following.
This patch also adds support to tcpdump to decode packets on tokenring.
Congratulations to the proud father.. (below)
Submitted by: Larry Lile <lile@stdio.com>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/tcpdump/tcpdump/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tcpdump/tcpdump/Makefile b/usr.sbin/tcpdump/tcpdump/Makefile index 253b7d1..604d7f0 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile +++ b/usr.sbin/tcpdump/tcpdump/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.19 1998/09/15 19:47:58 fenner Exp $ +# $Id: Makefile,v 1.20 1998/10/02 21:56:30 fenner Exp $ PROG= tcpdump CFLAGS+=-DHAVE_FCNTL_H=1 -DHAVE_NET_SLIP_H=1 -DTIME_WITH_SYS_TIME=1 \ -DHAVE_ETHER_NTOHOST=1 -DHAVE_SETLINEBUF=1 -DSTDC_HEADERS=1 \ -DRETSIGTYPE=void -DRETSIGVAL= -DHAVE_SOCKADDR_SA_LEN=1 \ - -DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI + -DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI -g MAN1= tcpdump.1 SRCS = version.c tcpdump.c \ print-arp.c print-atalk.c print-atm.c print-fr.c print-bootp.c \ @@ -16,7 +16,7 @@ SRCS = version.c tcpdump.c \ print-snmp.c print-sunrpc.c print-tcp.c print-tftp.c print-udp.c \ print-wb.c \ addrtoname.c bpf_dump.c gmt2local.c machdep.c parsenfsfh.c \ - setsignal.c savestr.c util.c + setsignal.c savestr.c util.c print-token.c CLEANFILES+= version.c DPADD+= ${LIBL} ${LIBPCAP} LDADD+= -ll -lpcap |