]> git.droids-corp.org - dpdk.git/commitdiff
build: fix meson build on FreeBSD
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 20 Jul 2018 13:53:36 +0000 (14:53 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 26 Jul 2018 07:58:19 +0000 (09:58 +0200)
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: 50385c106021 ("net/ifc: add to meson build")
Fixes: 4e9c73e96e83 ("net/netvsc: add Hyper-V network device")
Fixes: 5936aa3a39b9 ("net/vhost: add to meson build")
Fixes: 3298fa4853b8 ("raw/dpaa2_cmdif: introduce DPAA2 command interface driver")
Fixes: b1ee472fed58 ("raw/dpaa2_qdma: introduce the DPAA2 QDMA driver")
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/net/ifc/meson.build
drivers/net/netvsc/meson.build
drivers/net/vhost/meson.build
drivers/raw/dpaa2_cmdif/meson.build
drivers/raw/dpaa2_qdma/meson.build

index a30aa09e6655160671076005f789a1e62c8ec4f2..72df070acbdb432684f8f4e370855a90d5fcf9d1 100644 (file)
@@ -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')
index a15b50487097956497ad4a4a048df9c30dd4bb6b..a717cdd48365704507f8abbb32f0603a38126421 100644 (file)
@@ -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')
 
index a8f77e1abf25b39c6edc5eac0ad4fc4812565cdd..9b067c35eb251147524467f6b5fa7bc4dc776b07 100644 (file)
@@ -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')
index 8c90943826b1bd54435d9b3a279e19f2e2366bdd..1d146872edbfbde5e807769d093a4320b63ccc64 100644 (file)
@@ -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')
 
index a2eb1d2f42e22bbe7b7f642142f58164441d7b11..b6a081f117843a54affb50836b7149e158b892af 100644 (file)
@@ -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')