1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
4 # override default name to drop the hyphen
6 cflags += '-Wno-deprecated-declarations'
30 deps += ['ethdev', 'gro', 'gso', 'cmdline', 'metrics', 'meter', 'bus_pci']
31 if dpdk_conf.has('RTE_LIB_BITRATESTATS')
32 deps += 'bitratestats'
34 if dpdk_conf.has('RTE_LIB_PDUMP')
37 if dpdk_conf.has('RTE_LIB_BITRATESTATS')
38 deps += 'bitratestats'
40 if dpdk_conf.has('RTE_LIB_LATENCYSTATS')
41 deps += 'latencystats'
43 if dpdk_conf.has('RTE_CRYPTO_SCHEDULER')
44 deps += 'crypto_scheduler'
46 if dpdk_conf.has('RTE_NET_BOND')
49 if dpdk_conf.has('RTE_NET_BNXT')
52 if dpdk_conf.has('RTE_NET_I40E')
55 if dpdk_conf.has('RTE_NET_IXGBE')
58 if dpdk_conf.has('RTE_NET_DPAA')
59 deps += ['bus_dpaa', 'mempool_dpaa', 'net_dpaa']
61 if dpdk_conf.has('RTE_LIB_BPF')
62 sources += files('bpf_cmd.c')
65 jansson_dep = dependency('jansson', required: false, method: 'pkg-config')
66 if jansson_dep.found()
67 dpdk_conf.set('RTE_HAS_JANSSON', 1)
68 ext_deps += jansson_dep