From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH] test/eventdev: fix compilation with crypto disabled Date: Thu, 6 Apr 2017 20:39:30 +0530 Message-ID: <20170406150928.GA21546@jerin> References: <20170406141337.14167-1-olivier.matz@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Olivier Matz Return-path: Received: from NAM02-SN1-obe.outbound.protection.outlook.com (mail-sn1nam02on0048.outbound.protection.outlook.com [104.47.36.48]) by dpdk.org (Postfix) with ESMTP id 25042108D for ; Thu, 6 Apr 2017 17:09:52 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20170406141337.14167-1-olivier.matz@6wind.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Thu, 6 Apr 2017 16:13:37 +0200 > From: Olivier Matz > To: dev@dpdk.org > CC: jerin.jacob@caviumnetworks.com > Subject: [PATCH] test/eventdev: fix compilation with crypto disabled > X-Mailer: git-send-email 2.11.0 > > There is a compilation error in the following case: > > make config T=x86_64-native-linuxapp-gcc > sed -i 's,CONFIG_RTE_LIBRTE_CRYPTODEV=y,CONFIG_RTE_LIBRTE_CRYPTODEV=n,' \ > build/.config > sed -i 's,CONFIG_RTE_APP_CRYPTO_PERF=y,CONFIG_RTE_APP_CRYPTO_PERF=n,' \ > build/.config > make -j4 > make -j4 test-build > > test_eventdev.c:39:27: fatal error: > rte_cryptodev.h: No such file or directory > #include > ^ > > Removing the include induces a new error, (missing declaration of > rte_eal_vdev_init()), which is fixed by including rte_dev.h. > > Fixes: f8f9d233ea0e ("test/eventdev: add unit tests") > > Signed-off-by: Olivier Matz Acked-by: Jerin Jacob > --- > test/test/test_eventdev.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/test/test/test_eventdev.c b/test/test/test_eventdev.c > index b568470a2..5bd46346d 100644 > --- a/test/test/test_eventdev.c > +++ b/test/test/test_eventdev.c > @@ -36,7 +36,7 @@ > #include > #include > #include > -#include > +#include > > #include "test.h" > > -- > 2.11.0 >