From: Hari Kumar Vemula Date: Fri, 5 Oct 2018 10:59:14 +0000 (+0100) Subject: crypto/aesni_gcm: enable meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1a9f0a97282e69d6a6f8f38140f239fd573c110f;p=dpdk.git crypto/aesni_gcm: enable meson build Added new meson.build files for aesni_gcm Signed-off-by: Hari Kumar Vemula Acked-by: Luca Boccassi --- diff --git a/drivers/crypto/aesni_gcm/meson.build b/drivers/crypto/aesni_gcm/meson.build new file mode 100644 index 0000000000..a02da1ef58 --- /dev/null +++ b/drivers/crypto/aesni_gcm/meson.build @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +lib = cc.find_library('IPSec_MB', required: false) +if not lib.found() + build = false +else + ext_deps += lib +endif + +sources = files('aesni_gcm_pmd.c', 'aesni_gcm_pmd_ops.c') +deps += ['bus_vdev'] diff --git a/drivers/crypto/meson.build b/drivers/crypto/meson.build index b09fe1b396..367d0ea541 100644 --- a/drivers/crypto/meson.build +++ b/drivers/crypto/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['ccp', 'dpaa_sec', 'dpaa2_sec', 'mvsam', +drivers = ['aesni_gcm', 'ccp', 'dpaa_sec', 'dpaa2_sec', 'mvsam', 'null', 'octeontx', 'openssl', 'qat', 'scheduler', 'virtio'] std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps