mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
Check for link_addr more thoroughly
Some versions of kFreeBSD (like 9.0) declare link_addr in a header but lack an implementation. This makes ./configure pass but breaks compilation later with a undefined reference to `link_addr' Althought that's a bug in the OS header we can detect it easily by also trying to link. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=715320
This commit is contained in:
parent
984c01ba5c
commit
77bac48b37
14
configure.ac
14
configure.ac
@ -2391,13 +2391,19 @@ AC_CHECK_MEMBERS([struct ifreq.ifr_newname,
|
||||
[#include <sys/socket.h>
|
||||
#include <net/if.h>
|
||||
])
|
||||
|
||||
# Check for BSD approach for setting MAC addr
|
||||
AC_CHECK_DECLS([link_addr],
|
||||
[], [],
|
||||
[#include <sys/types.h>
|
||||
AC_LINK_IFELSE([AC_LANG_PROGRAM(
|
||||
[[
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <net/if_dl.h>
|
||||
])
|
||||
]],
|
||||
[[
|
||||
link_addr(NULL, NULL)]])],
|
||||
[AC_DEFINE([HAVE_DECL_LINK_ADDR],
|
||||
[1],
|
||||
[whether link_addr is available])])
|
||||
|
||||
# Check for BSD approach for bridge management
|
||||
AC_CHECK_DECLS([BRDGSFD, BRDGADD, BRDGDEL],
|
||||
|
Loading…
Reference in New Issue
Block a user