2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-08-30 11:18:49 +01:00
|
|
|
|
2018-02-22 17:20:33 +00:00
|
|
|
pcap_dep = cc.find_library('pcap', required: false)
|
|
|
|
if pcap_dep.found() and cc.has_header('pcap.h', dependencies: pcap_dep)
|
|
|
|
build = true
|
2017-08-30 11:18:49 +01:00
|
|
|
else
|
2018-02-22 17:20:33 +00:00
|
|
|
build = false
|
2017-08-30 11:18:49 +01:00
|
|
|
endif
|
|
|
|
sources = files('rte_eth_pcap.c')
|
2018-02-22 17:20:33 +00:00
|
|
|
ext_deps += pcap_dep
|
2017-08-30 11:18:49 +01:00
|
|
|
pkgconfig_extra_libs += '-lpcap'
|