X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fpcap%2Fmeson.build;h=54246095b2848f9863bac298d2e3079a1bcbcc21;hb=012bf708c20f4b23d055717e28f8de74887113d8;hp=66ccecf603f48ee9820968c775699653f891217f;hpb=436c089a528cbb834381eb908ec33bd0c9da6b92;p=dpdk.git diff --git a/drivers/net/pcap/meson.build b/drivers/net/pcap/meson.build index 66ccecf603..54246095b2 100644 --- a/drivers/net/pcap/meson.build +++ b/drivers/net/pcap/meson.build @@ -1,18 +1,17 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -if is_windows - build = false - reason = 'not supported on Windows' - subdir_done() -endif - if not dpdk_conf.has('RTE_PORT_PCAP') build = false reason = 'missing dependency, "libpcap"' endif + sources = files( 'pcap_ethdev.c', 'pcap_osdep_@0@.c'.format(exec_env), ) + ext_deps += pcap_dep +if is_windows + ext_deps += cc.find_library('iphlpapi', required: true) +endif