mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
nwfilter: add a missing define, so libvirtd builds on macos x
The nwfilter code uses ETH_ALEN, which isn't defined on MacOS X. This is a simple workaround, to add it when missing.
This commit is contained in:
parent
570d040435
commit
04c3704e70
@ -38,6 +38,11 @@
|
|||||||
#include <net/if_arp.h>
|
#include <net/if_arp.h>
|
||||||
#include <intprops.h>
|
#include <intprops.h>
|
||||||
|
|
||||||
|
// Add Linux define missing from OSX
|
||||||
|
#ifndef ETH_ALEN
|
||||||
|
# define ETH_ALEN 6 /* Octets in one ethernet addr */
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
#include "buf.h"
|
#include "buf.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user