a8d0d473a0
Use the newer macros defined by meson in all DPDK source code, to ensure there are no errors when the old non-standard macros are removed. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru> Acked-by: Rosen Xu <rosen.xu@intel.com> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
9 lines
278 B
Meson
9 lines
278 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
# this driver can be built if-and-only-if KNI library is buildable
|
|
build = dpdk_conf.has('RTE_LIB_KNI')
|
|
reason = 'missing dependency, DPDK KNI library'
|
|
sources = files('rte_eth_kni.c')
|
|
deps += 'kni'
|