cf9ebfbd63
sync with more-recent LBL 0.4, about loopback interface detection (/^lo[0-9]?$/). CAVEAT: with GENERIC kernel on laptops laptops, pcap_lookupdev would almost always pick eon0 as the interface, and fails because eon0 has no bpf attachment. we may want to change pcap_lookup{,dev} to check if the interface has bpf attachment or not. almost in sync with tcpdump.org source code tree.
31 lines
689 B
Makefile
31 lines
689 B
Makefile
# $NetBSD: Makefile,v 1.20 2000/04/13 05:14:19 itojun Exp $
|
|
|
|
LIB= pcap
|
|
MAN= pcap.3
|
|
|
|
LEX= flex
|
|
|
|
CPPFLAGS+=-I. -I${.CURDIR} -DYYBISON
|
|
CPPFLAGS+=-DINET6
|
|
CPPFLAGS+=-DHAVE_MALLOC_H=1 -DHAVE_SYS_IOCCOM_H=1 -DHAVE_SYS_SOCKIO_H=1
|
|
CPPFLAGS+=-DHAVE_ETHER_HOSTTON=1 -DHAVE_STRERROR=1 -DHAVE_SOCKADDR_SA_LEN=1
|
|
CPPFLAGS+=-DHAVE_IFADDRS_H=1
|
|
# used in no place
|
|
#CPPFLAGS+=-DLBL_ALIGN=1
|
|
LPREFIX=pcap_
|
|
YPREFIX=pcap_
|
|
YHEADER=1
|
|
|
|
SRCS= scanner.l savefile.c pcap.c pcap-bpf.c optimize.c nametoaddr.c \
|
|
inet.c grammar.y gencode.c etherent.c bpf_image.c
|
|
SRCS+= bpf_filter.c version.c
|
|
|
|
.PATH: ${.CURDIR}/../../sys/net
|
|
|
|
INCS= pcap-namedb.h pcap.h
|
|
INCSDIR=/usr/include
|
|
|
|
scanner.c: grammar.h
|
|
|
|
.include <bsd.lib.mk>
|