net/txgbe: update link setup process of backplane NICs
[dpdk.git] / drivers / net / pcap / meson.build
index 0c4e020..b65d91e 100644 (file)
@@ -1,12 +1,15 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-pcap_dep = cc.find_library('pcap', required: false)
-if pcap_dep.found() and cc.has_header('pcap.h', dependencies: pcap_dep)
-       build = true
-else
+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('rte_eth_pcap.c')
 ext_deps += pcap_dep
-pkgconfig_extra_libs += '-lpcap'