mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Fix FreeBSD/OSX compile problem due to headers
This commit is contained in:
parent
a2423f7d43
commit
800eda4796
3 changed files with 12 additions and 2 deletions
|
@ -3,7 +3,12 @@
|
|||
#ifndef conn_h
|
||||
#define conn_h
|
||||
|
||||
#ifdef HAVE_NETINET_ETHER_H
|
||||
#include <netinet/ether.h>
|
||||
#endif
|
||||
#ifdef HAVE_NET_ETHERNET_H
|
||||
#include <net/ethernet.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "Dict.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue