]> git.droids-corp.org - dpdk.git/commitdiff
drivers/crypto: fix build with make 4.3
authorThomas Monjalon <thomas@monjalon.net>
Thu, 27 Feb 2020 22:20:28 +0000 (23:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 12 Mar 2020 08:07:12 +0000 (09:07 +0100)
In the check for the version of intel-ipsec-mb library,
there is a backslash in front of the #include.
This backslash is for escaping the hash sign parsed as
a number sign in make.

Since make-4.3, escaping is not required for the number sign.
As a consequence, it resolves now to '\#':

syntax error near unexpected token `|'
`grep -e "IMB_VERSION_STR" \#include <intel-ipsec-mb.h> | cut -d'"' -f2'
syntax error near unexpected token `|'
`grep -e "IMB_VERSION_NUM" \#include <intel-ipsec-mb.h> | cut -d' ' -f3'

The makefiles are fixed by using a variable for the hash sign,
as recommended in make-4.3 changelog:
https://lists.gnu.org/archive/html/info-gnu/2020-01/msg00004.html

Fixes: 3067c8ce77ac ("crypto/aesni_mb: fix build with custom dependency path")
Fixes: 457b8e372975 ("crypto/aesni_gcm: check dependency version with make")
Fixes: bf6eb2c22fd1 ("crypto/kasumi: use IPsec library")
Fixes: 7c87e2d7b359 ("crypto/snow3g: use IPsec library")
Fixes: 61f7c988e39e ("crypto/zuc: use IPsec library")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
drivers/crypto/aesni_gcm/Makefile
drivers/crypto/aesni_mb/Makefile
drivers/crypto/kasumi/Makefile
drivers/crypto/snow3g/Makefile
drivers/crypto/zuc/Makefile

index d8190a2ff4cd97afe0801648b01496ea230f1caa..b443167d51e936d1092431e999174338fcec85e9 100644 (file)
@@ -20,7 +20,8 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_cryptodev
 LDLIBS += -lrte_bus_vdev
 
-IMB_HDR = $(shell echo '\#include <intel-ipsec-mb.h>' | \
+H := \#
+IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
        $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
        head -n1 | cut -d'"' -f2)
 
index f1530e74c47f35a6a654b3965741236ce3c97441..aa2e428106e9ff8240782b283826f935edf8f6b0 100644 (file)
@@ -20,7 +20,8 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_cryptodev
 LDLIBS += -lrte_bus_vdev
 
-IMB_HDR = $(shell echo '\#include <intel-ipsec-mb.h>' | \
+H := \#
+IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
        $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
        head -n1 | cut -d'"' -f2)
 
index c94d6bdcf9f98aecc4e64d22454b633a854d7776..ad19aad11c4e1a6f3d7ae5691026eb01ba2d4b87 100644 (file)
@@ -20,7 +20,8 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_cryptodev
 LDLIBS += -lrte_bus_vdev
 
-IMB_HDR = $(shell echo '\#include <intel-ipsec-mb.h>' | \
+H := \#
+IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
        $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
        head -n1 | cut -d'"' -f2)
 
index 438119c3d517a53c3f593a3c626b7d3524a1d0fb..cbf1a77904b5de0a74e9261d2ab1122b41c5df8b 100644 (file)
@@ -20,7 +20,8 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_cryptodev
 LDLIBS += -lrte_bus_vdev
 
-IMB_HDR = $(shell echo '\#include <intel-ipsec-mb.h>' | \
+H := \#
+IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
        $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
        head -n1 | cut -d'"' -f2)
 
index b50883b2a7915b8f39d291c5770a1c6dd436c772..1875344472fcb8d70f28513e320b3466aec6f4d1 100644 (file)
@@ -20,7 +20,8 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_cryptodev
 LDLIBS += -lrte_bus_vdev
 
-IMB_HDR = $(shell echo '\#include <intel-ipsec-mb.h>' | \
+H := \#
+IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
        $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
        head -n1 | cut -d'"' -f2)