diff options
author | ache <ache@FreeBSD.org> | 1998-08-18 10:29:37 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-08-18 10:29:37 +0000 |
commit | 861a4bd425335a44f3f720b023ca7213cdcafa11 (patch) | |
tree | 9ab0670c3af3309bbd3dd9ee2866a891d5cba802 /lib/libpcap | |
parent | 60fc86d17128d6d6f28863b37eb2d2a0126ec528 (diff) | |
download | FreeBSD-src-861a4bd425335a44f3f720b023ca7213cdcafa11.zip FreeBSD-src-861a4bd425335a44f3f720b023ca7213cdcafa11.tar.gz |
do not include private copy of bpf.h - it leads to dangerous mismatch
of kernel/user bpf interface - include updated /sys/net/bpf.h instead
Diffstat (limited to 'lib/libpcap')
-rw-r--r-- | lib/libpcap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile index 1ccd768..f49bbe9 100644 --- a/lib/libpcap/Makefile +++ b/lib/libpcap/Makefile @@ -1,5 +1,5 @@ # Makefile for libpcap -# $Id: Makefile,v 1.18 1997/10/10 11:55:42 peter Exp $ +# $Id: Makefile,v 1.19 1998/05/08 06:43:07 bde Exp $ LIB= pcap SRCS= grammar.y tokdefs.h pcap-bpf.c \ @@ -22,7 +22,7 @@ SHLIB_MINOR=2 # Magic to grab sources out of src/contrib # PCAP_DISTDIR?=${.CURDIR}/../../contrib/libpcap -CFLAGS+=-I${PCAP_DISTDIR} -I${PCAP_DISTDIR}/lbl -I${PCAP_DISTDIR}/bpf +CFLAGS+=-I${PCAP_DISTDIR} -I${PCAP_DISTDIR}/lbl .PATH: ${PCAP_DISTDIR} .PATH: ${PCAP_DISTDIR}/bpf/net |