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_VET_VLAN_VID_CMD, but possibly there is a non-Linux platform that *does* have it...) Signed-off-by: Laine Stump <laine@xxxxxxxxxx> --- meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/meson.build b/meson.build index a6b6f2d2ee..fa19677fee 100644 --- a/meson.build +++ b/meson.build @@ -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>' ], ] -- 2.26.2