2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-08-30 10:18:49 +00:00
|
|
|
|
2019-02-26 17:46:37 +00:00
|
|
|
pcap_dep = dependency('pcap', required: false)
|
|
|
|
if pcap_dep.found()
|
2018-02-22 17:20:33 +00:00
|
|
|
build = true
|
2017-08-30 10:18:49 +00:00
|
|
|
else
|
2019-02-26 17:46:37 +00:00
|
|
|
# pcap got a pkg-config file only in 1.9.0 and before that meson uses
|
|
|
|
# an internal pcap-config finder, which is not compatible with
|
|
|
|
# cross-compilation, so try to fallback to find_library
|
|
|
|
pcap_dep = cc.find_library('pcap', required: false)
|
|
|
|
if pcap_dep.found() and cc.has_header('pcap.h', dependencies: pcap_dep)
|
|
|
|
build = true
|
|
|
|
pkgconfig_extra_libs += '-lpcap'
|
|
|
|
else
|
|
|
|
build = false
|
2019-06-05 20:22:41 +00:00
|
|
|
reason = 'missing dependency, "libpcap"'
|
2019-02-26 17:46:37 +00:00
|
|
|
endif
|
2017-08-30 10:18:49 +00:00
|
|
|
endif
|
|
|
|
sources = files('rte_eth_pcap.c')
|
2018-02-22 17:20:33 +00:00
|
|
|
ext_deps += pcap_dep
|