X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fnetvsc%2Fmeson.build;h=c190124db067c8174f7da5777fdab576f7afd8ef;hb=29072d593fe4443f8745f648907c876846167d7b;hp=e7f4493028d60bd72b0a28719904d9570fb3f5fb;hpb=acec04c4b2f5c75d244319e1d0ca17ea7d4da72d;p=dpdk.git diff --git a/drivers/net/netvsc/meson.build b/drivers/net/netvsc/meson.build index e7f4493028..c190124db0 100644 --- a/drivers/net/netvsc/meson.build +++ b/drivers/net/netvsc/meson.build @@ -1,7 +1,13 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Microsoft Corporation -build = dpdk_conf.has('RTE_LIBRTE_VMBUS_BUS') +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +build = dpdk_conf.has('RTE_BUS_VMBUS') reason = 'missing dependency, DPDK VMBus driver' sources = files('hn_ethdev.c', 'hn_rxtx.c', 'hn_rndis.c', 'hn_nvs.c', 'hn_vf.c')