From: Andrew Rybchenko Date: Tue, 20 Mar 2018 11:26:23 +0000 (+0000) Subject: mempool: fix library version in meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4119163cd24ba9304d3370f10f36b88022974e6f;p=dpdk.git mempool: fix library version in meson build Fixes: 5b9656b157d3 ("lib: build with meson") Cc: stable@dpdk.org Signed-off-by: Andrew Rybchenko Acked-by: Bruce Richardson --- diff --git a/lib/librte_mempool/meson.build b/lib/librte_mempool/meson.build index 7a4f3daee7..712720ff93 100644 --- a/lib/librte_mempool/meson.build +++ b/lib/librte_mempool/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -version = 2 +version = 3 sources = files('rte_mempool.c', 'rte_mempool_ops.c') headers = files('rte_mempool.h') deps += ['ring']