net/mlx5: fix delay drop bit set overflow
[dpdk.git] / drivers / crypto / mvsam / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Marvell International Ltd.
3 # Copyright(c) 2018 Semihalf.
4 # All rights reserved.
5
6 if is_windows
7     build = false
8     reason = 'not supported on Windows'
9     subdir_done()
10 endif
11
12 dep = dependency('libmusdk', required: false, method: 'pkg-config')
13 if not dep.found()
14     build = false
15     reason = 'missing dependency, "libmusdk"'
16     subdir_done()
17 endif
18
19 ext_deps += dep
20
21 sources = files('rte_mrvl_pmd.c', 'rte_mrvl_pmd_ops.c')
22
23 deps += ['bus_vdev', 'common_mvep', 'security']