X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fcrypto%2Fmvsam%2Fmeson.build;h=bf3c4323def49484183945f11b1cb71981ea08d3;hb=1d1126ad436e8c7c015fb3f67ad3af05c3b397d5;hp=b4c55b5ff5655a724ee778942d9cb09acec1e6f3;hpb=7be7dc6dea927da7d458cb4172d70338f9eea164;p=dpdk.git diff --git a/drivers/crypto/mvsam/meson.build b/drivers/crypto/mvsam/meson.build index b4c55b5ff5..bf3c4323de 100644 --- a/drivers/crypto/mvsam/meson.build +++ b/drivers/crypto/mvsam/meson.build @@ -3,15 +3,21 @@ # Copyright(c) 2018 Semihalf. # All rights reserved. +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + dep = dependency('libmusdk', required: false, method: 'pkg-config') if not dep.found() - build = false - reason = 'missing dependency, "libmusdk"' - subdir_done() + build = false + reason = 'missing dependency, "libmusdk"' + subdir_done() endif ext_deps += dep sources = files('rte_mrvl_pmd.c', 'rte_mrvl_pmd_ops.c') -deps += ['bus_vdev', 'common_mvep'] +deps += ['bus_vdev', 'common_mvep', 'security']