doc: announce behavior change in bus probing
[dpdk.git] / app / dumpcap / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2019 Microsoft Corporation
3
4 if not dpdk_conf.has('RTE_HAS_LIBPCAP')
5     build = false
6     reason = 'missing dependency, "libpcap"'
7 endif
8
9 if is_windows
10     build = false
11     reason = 'not supported on Windows'
12     subdir_done()
13 endif
14
15 ext_deps += pcap_dep
16 sources = files('main.c')
17 deps += ['ethdev', 'pdump', 'pcapng', 'bpf']