From: Fan Zhang Date: Mon, 15 Oct 2018 11:28:16 +0000 (+0100) Subject: cryptodev: fix library version X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=3f1d382ca3b73623dfa5c3d44bd4251b67d92a91;p=dpdk.git cryptodev: fix library version This patch fixes the cryptodev library version number that was missed updating in DPDK 18.08. Fixes: a4493be5bdfa ("cryptodev: replace bus specific struct with generic dev") Cc: stable@dpdk.org Signed-off-by: Fan Zhang Reviewed-by: Ferruh Yigit --- diff --git a/lib/librte_cryptodev/Makefile b/lib/librte_cryptodev/Makefile index c114888775..a8f94c097e 100644 --- a/lib/librte_cryptodev/Makefile +++ b/lib/librte_cryptodev/Makefile @@ -7,7 +7,7 @@ include $(RTE_SDK)/mk/rte.vars.mk LIB = librte_cryptodev.a # library version -LIBABIVER := 4 +LIBABIVER := 5 # build flags CFLAGS += -O3 diff --git a/lib/librte_cryptodev/meson.build b/lib/librte_cryptodev/meson.build index 295f509ec3..990dd3d444 100644 --- a/lib/librte_cryptodev/meson.build +++ b/lib/librte_cryptodev/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -version = 4 +version = 5 sources = files('rte_cryptodev.c', 'rte_cryptodev_pmd.c') headers = files('rte_cryptodev.h', 'rte_cryptodev_pmd.h',