X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fpcap%2Fmeson.build;h=b680710aa03eb7c0bdc2411147b482df4b52caed;hb=644906881881ea1f5a0400ebc83e95f203790f6e;hp=0c4e0201a0faa541ff46601e3b435ccb53e1c06a;hpb=6930c0403a1754eb5cab89577565eefa5a9995a1;p=dpdk.git diff --git a/drivers/net/pcap/meson.build b/drivers/net/pcap/meson.build index 0c4e0201a0..b680710aa0 100644 --- a/drivers/net/pcap/meson.build +++ b/drivers/net/pcap/meson.build @@ -1,12 +1,9 @@ # 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 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'