summaryrefslogtreecommitdiffstats
path: root/src/spdk/dpdk/drivers/net/af_xdp/meson.build
blob: 307aa0e38877f6c355933d925b58d5330fd71cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019 Intel Corporation

sources = files('rte_eth_af_xdp.c')

bpf_dep = dependency('libbpf', required: false)
if not bpf_dep.found()
	bpf_dep = cc.find_library('bpf', required: false)
endif

if bpf_dep.found() and cc.has_header('bpf/xsk.h') and cc.has_header('linux/if_xdp.h')
	ext_deps += bpf_dep
else
	build = false
	reason = 'missing dependency, "libbpf"'
endif