From 9235d43d231b103285be539ebe64d37620fe9930 Mon Sep 17 00:00:00 2001 From: PiotrX Kleski Date: Mon, 12 Oct 2020 15:33:11 +0200 Subject: crypto: fixed ipsec_mb lib dependencies Type: fix This patch re-enables libIPSec_MB build for the ipsecmb crypto engine plugin. Also since DPDK meson build relies on system installed libIPSec_MB.so that may be inconsistent with VPP compiled one (system installed version vs VPP locally compiled version for example), this patch also disables all libIPSec_MB dependant PMDs from DPDK build. Also ipsec-mb version is incresed to 0.54. Signed-off-by: PiotrX Kleski Reviewed-by: Fan Zhang Change-Id: I2ff9e7cd0c35cff9fa642895301a26a5350ea94e --- .../patches/ipsec-mb_0.54/0001-nasm-ver-check.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 build/external/patches/ipsec-mb_0.54/0001-nasm-ver-check.patch (limited to 'build/external/patches') diff --git a/build/external/patches/ipsec-mb_0.54/0001-nasm-ver-check.patch b/build/external/patches/ipsec-mb_0.54/0001-nasm-ver-check.patch new file mode 100644 index 00000000000..d4023916d46 --- /dev/null +++ b/build/external/patches/ipsec-mb_0.54/0001-nasm-ver-check.patch @@ -0,0 +1,13 @@ +diff --git a/Makefile b/Makefile +index 329da9f..c7fa8ad 100644 +--- a/Makefile ++++ b/Makefile +@@ -51,7 +51,7 @@ YASM ?= yasm + NASM ?= nasm + + # Detect NASM version (minimum version required: 2.14) +-NASM_VERSION = $(shell nasm -v | cut -d " " -f 3) ++NASM_VERSION = $(shell $(NASM) -v | cut -d " " -f 3) + + NASM_MAJOR_REQ = 2 + NASM_MINOR_REQ = 14 -- cgit 1.2.3-korg