On Wed, May 13, 2015 at 11:06:51PM -0700, sfeldma@gmail.com wrote: > diff --git a/hw/net/rocker/rocker.c b/hw/net/rocker/rocker.c > index 55b6c46..f62fb95 100644 > --- a/hw/net/rocker/rocker.c > +++ b/hw/net/rocker/rocker.c > @@ -15,6 +15,7 @@ > * GNU General Public License for more details. > */ > > +#include This breaks Windows builds: hw/net/rocker/rocker.c:18:20: fatal error: net/if.h: No such file or directory #include ^ On Fedora, check out the mingw64- packages if you a cross toolchain. On other distros you can use http://mxe.cc/ to get a cross toolchain. is POSIX but Windows doesn't seem to have it: http://pubs.opengroup.org/onlinepubs/009696699/basedefs/net/if.h.html Note that IF_NAMESIZE is POSIX and might be more widely available than IFNAMSIZ (BSD). Stefan