For each driver where we optionally disable it, add in the reason why it's being disabled, so the user knows how to fix it. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
13 lines
338 B
Meson
13 lines
338 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
dep = dependency('libcrypto', required: false)
|
|
if not dep.found()
|
|
build = false
|
|
reason = 'missing dependency, "libcrypto"'
|
|
endif
|
|
allow_experimental_apis = true
|
|
deps += 'bus_vdev'
|
|
sources = files('rte_openssl_pmd.c', 'rte_openssl_pmd_ops.c')
|
|
ext_deps += dep
|