From c6c23415706ee303a9fbeee5326a4e504645fe3e Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Wed, 30 Sep 2020 18:51:45 -0400 Subject: [PATCH] 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 Reviewed-by: Michal Privoznik --- meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/meson.build b/meson.build index 08aa827ca2..257e4452a1 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 \n#include ' ], ] -- 2.47.2