提交 478d93ad 编写于 作者: E Eric Blake

build: fix build on cygwin

Cygwin has getifaddrs(), but not AF_LINK, leading to:

util/virstats.c: In function 'virNetInterfaceStats':
util/virstats.c:138:41: error: 'AF_LINK' undeclared (first use in this function)
         if (ifa->ifa_addr->sa_family != AF_LINK)
...

* src/util/virstats.c (virNetInterfaceStats): Only use getifaddrs
if AF_LINK is present.
Signed-off-by: NEric Blake <eblake@redhat.com>
上级 c0788af0
/* /*
* virstats.c: Block and network stats. * virstats.c: Block and network stats.
* *
* Copyright (C) 2007-2010 Red Hat, Inc. * Copyright (C) 2007-2010, 2014 Red Hat, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include <unistd.h> #include <unistd.h>
#include <regex.h> #include <regex.h>
#ifdef HAVE_GETIFADDRS #if defined(HAVE_GETIFADDRS) && defined(AF_LINK)
# include <net/if.h> # include <net/if.h>
# include <ifaddrs.h> # include <ifaddrs.h>
#endif #endif
...@@ -119,7 +119,7 @@ virNetInterfaceStats(const char *path, ...@@ -119,7 +119,7 @@ virNetInterfaceStats(const char *path,
_("/proc/net/dev: Interface not found")); _("/proc/net/dev: Interface not found"));
return -1; return -1;
} }
#elif defined(HAVE_GETIFADDRS) #elif defined(HAVE_GETIFADDRS) && defined(AF_LINK)
int int
virNetInterfaceStats(const char *path, virNetInterfaceStats(const char *path,
struct _virDomainInterfaceStats *stats) struct _virDomainInterfaceStats *stats)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册