From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by dpdk.space (Postfix) with ESMTP id 05F68A05D3
	for <public@inbox.dpdk.org>; Wed, 24 Apr 2019 09:53:29 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id BF4D21B13C;
	Wed, 24 Apr 2019 09:53:28 +0200 (CEST)
Received: from mga01.intel.com (mga01.intel.com [192.55.52.88])
 by dpdk.org (Postfix) with ESMTP id 7CB851B120
 for <dev@dpdk.org>; Wed, 24 Apr 2019 09:53:26 +0200 (CEST)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from fmsmga006.fm.intel.com ([10.253.24.20])
 by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 24 Apr 2019 00:53:25 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.60,389,1549958400"; d="scan'208";a="340304370"
Received: from irsmsx107.ger.corp.intel.com ([163.33.3.99])
 by fmsmga006.fm.intel.com with ESMTP; 24 Apr 2019 00:53:24 -0700
Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by
 IRSMSX107.ger.corp.intel.com (163.33.3.99) with Microsoft SMTP Server (TLS)
 id 14.3.408.0; Wed, 24 Apr 2019 08:53:24 +0100
Received: from irsmsx112.ger.corp.intel.com ([169.254.1.101]) by
 irsmsx155.ger.corp.intel.com ([169.254.14.186]) with mapi id 14.03.0415.000;
 Wed, 24 Apr 2019 08:53:23 +0100
From: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>
To: "Richardson, Bruce" <bruce.richardson@intel.com>, "dev@dpdk.org"
 <dev@dpdk.org>
Thread-Topic: [PATCH v2 1/3] crypto/aesni_gcm: add dependency version check
Thread-Index: AQHU+ettWijmhjWlX0mcxmCVYMZcQ6ZK8bXA
Date: Wed, 24 Apr 2019 07:53:23 +0000
Message-ID:
 <E115CCD9D858EF4F90C690B0DCB4D897803BBA4A@irsmsx112.ger.corp.intel.com>
References: <20190423154357.29877-1-bruce.richardson@intel.com>
 <20190423154357.29877-2-bruce.richardson@intel.com>
In-Reply-To: <20190423154357.29877-2-bruce.richardson@intel.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiM2IwNTljN2EtZDliNS00Y2Y0LTlmZjgtZGMxMTk5NWNlMGQ5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiYmQ5cjJwXC9icksrZkhZY1FXY1hCVlpnczJETk1IN0RVWHlXSkhSZkV6Wis4aUtDemNYMHFpZkkwVE5RdVhvMlcifQ==
x-ctpclassification: CTP_NT
dlp-product: dlpe-windows
dlp-version: 11.0.600.7
dlp-reaction: no-action
x-originating-ip: [163.33.239.181]
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: Re: [dpdk-dev] [PATCH v2 1/3] crypto/aesni_gcm: add dependency
	version check
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>
Message-ID: <20190424075323.vUEJjmb9SU_80nbp0UOPC6G72HWrVBE75fGz-IVlp4Y@z>



> -----Original Message-----
> From: Richardson, Bruce
> Sent: Tuesday, April 23, 2019 4:44 PM
> To: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; dev@dpdk.org
> Cc: Richardson, Bruce <bruce.richardson@intel.com>
> Subject: [PATCH v2 1/3] crypto/aesni_gcm: add dependency version check
>=20
> The aesni_mb driver and the aesni_gcm driver both require the same versio=
n
> of the IPSec_MB library, but only the former has a check of the library f=
ound
> by meson to see if it's the correct version. Add a similar check to the
> aesni_gcm library's meson.build file, so that the auto-detection of
> dependencies works correctly.
>=20
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>