diff options
author | Dariusz Kazimierski <dariuszx.kazimierski@intel.com> | 2020-11-23 09:27:55 +0100 |
---|---|---|
committer | Dariusz Kazimierski <dariuszx.kazimierski@intel.com> | 2020-11-23 09:27:55 +0100 |
commit | b5df85e2436b3a71d1771f1c66485d80d57e4c44 (patch) | |
tree | 04feaa0fe03667be71b9043ad5de7dc2c344ee4a /build/external/patches | |
parent | 9046e44c8493354d51237a92706a830a9db1872e (diff) |
crypto-ipsecmb: bump to intel-ipsec-mb version 0.55
Type: feature
This patch bumps the intel-ipsec-mb engine version from 0.54 to 0.55,
to avail performance improvement brought by the library.
Signed-off-by: DariuszX Kazimierski <dariuszx.kazimierski@intel.com>
Signed-off-by: PiotrX Kleski <piotrx.kleski@intel.com>
Reviewed-by: Fan Zhang <roy.fan.zhang@intel.com>
Change-Id: Iea114acc6e8e55020e7409ab2d1d00f4c2081e9c
Diffstat (limited to 'build/external/patches')
-rw-r--r-- | build/external/patches/ipsec-mb_0.55/0001-nasm-ver-check-fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/external/patches/ipsec-mb_0.55/0001-nasm-ver-check-fix.patch b/build/external/patches/ipsec-mb_0.55/0001-nasm-ver-check-fix.patch new file mode 100644 index 00000000000..7c2e9477ada --- /dev/null +++ b/build/external/patches/ipsec-mb_0.55/0001-nasm-ver-check-fix.patch @@ -0,0 +1,13 @@ +diff --git a/lib/Makefile b/lib/Makefile +index 3831172..9ce6f4c 100644 +--- a/lib/Makefile ++++ b/lib/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 |