build: fix meson build on FreeBSD
A number of drivers have dependencies on libraries which are only built on Linux, and so they need to be disabled on FreeBSD. Rather than basing the disabling on OS, in each case we base the building of the library on the presence of the required dependency. Fixes:50385c1060
("net/ifc: add to meson build") Fixes:4e9c73e96e
("net/netvsc: add Hyper-V network device") Fixes:5936aa3a39
("net/vhost: add to meson build") Fixes:3298fa4853
("raw/dpaa2_cmdif: introduce DPAA2 command interface driver") Fixes:b1ee472fed
("raw/dpaa2_qdma: introduce the DPAA2 QDMA driver") Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
parent
9d35895e51
commit
c49825f895
@ -1,6 +1,7 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2018 Intel Corporation
|
||||
|
||||
build = dpdk_conf.has('RTE_LIBRTE_VHOST')
|
||||
allow_experimental_apis = true
|
||||
sources = files('ifcvf_vdpa.c', 'base/ifcvf.c')
|
||||
includes += include_directories('base')
|
||||
|
@ -1,6 +1,7 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2018 Microsoft Corporation
|
||||
|
||||
build = dpdk_conf.has('RTE_LIBRTE_VMBUS_BUS')
|
||||
version = 2
|
||||
sources = files('hn_ethdev.c', 'hn_rxtx.c', 'hn_rndis.c', 'hn_nvs.c')
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2018 Intel Corporation
|
||||
|
||||
build = dpdk_conf.has('RTE_LIBRTE_VHOST')
|
||||
version = 2
|
||||
sources = files('rte_eth_vhost.c')
|
||||
install_headers('rte_eth_vhost.h')
|
||||
|
@ -1,6 +1,7 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright 2018 NXP
|
||||
|
||||
build = dpdk_conf.has('RTE_LIBRTE_DPAA2_MEMPOOL')
|
||||
deps += ['rawdev', 'mempool_dpaa2', 'bus_vdev']
|
||||
sources = files('dpaa2_cmdif.c')
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright 2018 NXP
|
||||
|
||||
build = dpdk_conf.has('RTE_LIBRTE_DPAA2_MEMPOOL')
|
||||
deps += ['rawdev', 'mempool_dpaa2', 'ring']
|
||||
sources = files('dpaa2_qdma.c')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user