mirror of https://gitee.com/openkylin/libvirt.git
build: remove duplicate check for GET_VLAN_VID_CMD
Somehow this check was duplicated just below the original. (I was at first skeptical that it's needed at all, since GET_VLAN_VID_CMD was already present in kernel 2.6.32, but then I realized that there is no higher level check for __linux__ around the code that is conditional on WITH_DECL_GET_VLAN_VID_CMD; it only checks for SIOCGIFVLAN and WITH_STRUCT_IFREQ - the latter is also present on *BSD platforms, the former doesn't seem to be anywhere but Linux, but I didn't want to change the effect of the conditional, so I left it in (we could have also replaced WITH_DECL_GET_VLAN_VID_CMD, but possibly there is a non-Linux platform that *does* have it...) Signed-off-by: Laine Stump <laine@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
49a58cb9c9
commit
c6c2341570
|
@ -774,9 +774,6 @@ symbols = [
|
|||
|
||||
[ 'unistd.h', 'SEEK_HOLE' ],
|
||||
|
||||
# GET_VLAN_VID_CMD is required for virNetDevGetVLanID
|
||||
[ 'linux/if_vlan.h', 'GET_VLAN_VID_CMD' ],
|
||||
|
||||
# Check for BSD approach for setting MAC addr
|
||||
[ 'net/if_dl.h', 'link_addr', '#include <sys/types.h>\n#include <sys/socket.h>' ],
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue