From: Ferruh Yigit Date: Mon, 15 Oct 2018 14:50:55 +0000 (+0100) Subject: mbuf: fix library version on meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=63f54e650a47c2ec8a66e820a1bffd53d6eaa765;p=dpdk.git mbuf: fix library version on meson build Fixes: d27a6261875d ("mbuf: remove control mbuf") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit Acked-by: Luca Boccassi --- diff --git a/lib/librte_mbuf/meson.build b/lib/librte_mbuf/meson.build index 45ffb0db5f..94d9c4c962 100644 --- a/lib/librte_mbuf/meson.build +++ b/lib/librte_mbuf/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -version = 3 +version = 4 sources = files('rte_mbuf.c', 'rte_mbuf_ptype.c', 'rte_mbuf_pool_ops.c') headers = files('rte_mbuf.h', 'rte_mbuf_ptype.h', 'rte_mbuf_pool_ops.h') deps += ['mempool']