From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id A7D28239 for ; Thu, 17 Jan 2019 13:20:10 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jan 2019 04:20:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,488,1539673200"; d="scan'208";a="139068453" Received: from irsmsx104.ger.corp.intel.com ([163.33.3.159]) by fmsmga001.fm.intel.com with ESMTP; 17 Jan 2019 04:20:08 -0800 Received: from irsmsx156.ger.corp.intel.com (10.108.20.68) by IRSMSX104.ger.corp.intel.com (163.33.3.159) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 17 Jan 2019 12:20:07 +0000 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.116]) by IRSMSX156.ger.corp.intel.com ([169.254.3.156]) with mapi id 14.03.0415.000; Thu, 17 Jan 2019 12:20:07 +0000 From: "Ananyev, Konstantin" To: David Marchand , "dev@dpdk.org" CC: "Awal, Mohammad Abdul" , "Iremonger, Bernard" , "Doherty, Declan" , "akhil.goyal@nxp.com" Thread-Topic: [PATCH] test: fix build when disabling ipsec library Thread-Index: AQHUrk2aYi8s4qj8QUG2XFTpGUUB/aWzYQ3g Date: Thu, 17 Jan 2019 12:20:06 +0000 Message-ID: <2601191342CEEE43887BDE71AB977258010D90500E@irsmsx105.ger.corp.intel.com> References: <1547720122-5835-1-git-send-email-david.marchand@redhat.com> In-Reply-To: <1547720122-5835-1-git-send-email-david.marchand@redhat.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNTQ3MDU3NzQtZjc1Ni00NzczLTkyNmEtYjAzMzE4ZmI5MjI4IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiQUt6bXN6WWY2djZoNkw2Q2lRYUYyc0I3TWtiUXpwc1wvU2NUb1JrSU5oUTFLVG9HY0tKZGZYU1RGR1hZc0d4c24ifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] test: fix build when disabling ipsec library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2019 12:20:11 -0000 > -----Original Message----- > From: David Marchand [mailto:david.marchand@redhat.com] > Sent: Thursday, January 17, 2019 10:15 AM > To: dev@dpdk.org > Cc: Awal, Mohammad Abdul ; Iremonger, Bern= ard ; Ananyev, > Konstantin ; Doherty, Declan ; akhil.goyal@nxp.com > Subject: [PATCH] test: fix build when disabling ipsec library >=20 > Caught after pulling ipsec then compile in an existing build directory. >=20 > Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test") > Signed-off-by: David Marchand > --- > Did a simple fix, we might want to have something like a _LDLIBS-y > variable but that's just cosmetic. >=20 > --- > test/test/Makefile | 2 ++ > 1 file changed, 2 insertions(+) >=20 > diff --git a/test/test/Makefile b/test/test/Makefile > index e7c8108..5641a59 100644 > --- a/test/test/Makefile > +++ b/test/test/Makefile > @@ -208,7 +208,9 @@ SRCS-$(CONFIG_RTE_LIBRTE_KVARGS) +=3D test_kvargs.c > SRCS-$(CONFIG_RTE_LIBRTE_BPF) +=3D test_bpf.c >=20 > SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) +=3D test_ipsec.c > +ifeq ($(CONFIG_RTE_LIBRTE_IPSEC),y) > LDLIBS +=3D -lrte_ipsec > +endif >=20 > CFLAGS +=3D -DALLOW_EXPERIMENTAL_API >=20 > -- Acked-by: Konstantin Ananyev > 1.8.3.1