mirror of https://github.com/F-Stack/f-stack.git
17 lines
419 B
Meson
17 lines
419 B
Meson
# 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
|