Don't include "bpf.h" when compiling on FreeBSD. We always compile in

bpf support these days.
This commit is contained in:
Brooks Davis 2002-09-06 20:07:50 +00:00
parent 4db5660477
commit 6f9fe1334f

View file

@ -167,7 +167,11 @@
#define vtophys(va) alpha_XXX_dmamap((vm_offset_t)(va))
#endif
#ifdef __FreeBSD__
#define NBPF 1
#else
#include "bpf.h"
#endif
#if NBPF > 0
#include <net/bpf.h>
#ifdef __FreeBSD__