X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fmempool%2Fdpaa2%2Fmeson.build;h=3d16d44158f058f466bf387faec9628deab3ad7c;hb=da573c0e4205d818cd602eaa27c720896f3b6f1c;hp=dee3a88aba37245146038b7982db25b7ad0c50f7;hpb=6ec78c2463acdd06560d09e3fb1056d2b1ec0c68;p=dpdk.git diff --git a/drivers/mempool/dpaa2/meson.build b/drivers/mempool/dpaa2/meson.build index dee3a88aba..3d16d44158 100644 --- a/drivers/mempool/dpaa2/meson.build +++ b/drivers/mempool/dpaa2/meson.build @@ -1,9 +1,12 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2018 NXP -if host_machine.system() != 'linux' - build = false +if not is_linux + build = false + reason = 'only supported on Linux' endif -deps += ['mbuf', 'bus_fslmc'] +deps += ['bus_fslmc'] sources = files('dpaa2_hw_mempool.c') + +headers = files('rte_dpaa2_mempool.h')