git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b028d5
)
crypto/dpaa2_sec: forbid build without security lib
author
Radu Nicolau
<radu.nicolau@intel.com>
Thu, 26 Oct 2017 14:15:14 +0000
(15:15 +0100)
committer
Thomas Monjalon
<thomas@monjalon.net>
Thu, 26 Oct 2017 20:46:58 +0000
(22:46 +0200)
Build fails when rte_security is disabled; make rte_security mandatory
Fixes:
0a23d4b6f4c2
("crypto/dpaa2_sec: support protocol offload IPsec")
Signed-off-by: Radu Nicolau <radu.nicolau@intel.com>
drivers/crypto/dpaa2_sec/Makefile
patch
|
blob
|
history
diff --git
a/drivers/crypto/dpaa2_sec/Makefile
b/drivers/crypto/dpaa2_sec/Makefile
index
3f0eade
..
a08f271
100644
(file)
--- a/
drivers/crypto/dpaa2_sec/Makefile
+++ b/
drivers/crypto/dpaa2_sec/Makefile
@@
-31,6
+31,12
@@
include $(RTE_SDK)/mk/rte.vars.mk
+ifneq ($(MAKECMDGOALS),clean)
+ifneq ($(CONFIG_RTE_LIBRTE_SECURITY),y)
+$(error "RTE_LIBRTE_SECURITY is required to build RTE_LIBRTE_PMD_DPAA2_SEC")
+endif
+endif
+
#
# library name
#