From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 99151A009E for ; Sun, 27 Oct 2019 12:57:56 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5F06F1BED1; Sun, 27 Oct 2019 12:57:56 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 7D7F41BED1; Sun, 27 Oct 2019 12:57:55 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id DEB9321B2B; Sun, 27 Oct 2019 07:57:54 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 27 Oct 2019 07:57:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=aeJ9JdkcuDPm0DAekD6Sfr13wbRfQPYN7lGE67gUa7E=; b=Gbie4DPACJN/ N+9fHtJd4iegmgqwVoo2NOeW+W9hU6yNUEp6O+8Ju96rP1Ga9ro40TzrVDc7bCtm bXZIha1G6F7qyHopBXctx0CymXn1lA6WXUjKhK7M3mfLmotaul92D+tdQIWjwd0r dAY0XL6FNLKy3lkPy4M0t+0NY3kL9co= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=aeJ9JdkcuDPm0DAekD6Sfr13wbRfQPYN7lGE67gUa 7E=; b=uaghhtJemX4xph8/EEz64xLW3HdEynUclP8Sapv4xn9whpAO2KzC7ng1d nUB0dco+UER3BLmDe/vHLB2a0ShnoN+V6p6fTurVhapbNIDqNQ3T44xpFRTOe0aQ 4bdlv/34FrNEZEq5wwkFhBvH6axPDEtbHZXkyGODDKqIdU6VbIkuBFiQT5sFllh5 GJLtKoRCovKHxvsHZiF57u2QggE2lUSKwHnEA8bF2VTDPLBcgmClvzL0QW/eo5Te YQB/0WWFZD/jErIEcA3ap8RPvQ4klAl/Zrp/pQIg8BEoruwu7eKuN4SGDVEPWs5x N/WI32UaNgcJY2r5nhqvvxy4iMBDQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrleejgdefjecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucffoh hmrghinhepughpughkrdhorhhgnecukfhppeejjedrudefgedrvddtfedrudekgeenucfr rghrrghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvthenuc evlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id B82638005C; Sun, 27 Oct 2019 07:57:53 -0400 (EDT) From: Thomas Monjalon To: Bruce Richardson Cc: stable@dpdk.org, dev@dpdk.org, Cristian Bidea Date: Sun, 27 Oct 2019 12:57:52 +0100 Message-ID: <2336890.iKZqY4Gabh@xps> In-Reply-To: <20190924151955.GA880@bricha3-MOBL.ger.corp.intel.com> References: <20190924120414.67793-1-bruce.richardson@intel.com> <20190924151955.GA880@bricha3-MOBL.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-stable] [PATCH] port: fix missing pcap support with meson X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 24/09/2019 17:19, Bruce Richardson: > On Tue, Sep 24, 2019 at 01:04:14PM +0100, Bruce Richardson wrote: > > The meson build was missing the define to enable pcap port support if > > libpcap (development) package was found on the build platform. Rather than > > duplicating the checks for libpcap found in the pcap net PMD build file, we > > can move the checks to the top-level config directory and reference the > > RTE_PCAP_PORT setting elsewhere in the build. > > > > Bugzilla ID: 351 > > Fixes: 5b9656b157d3 ("lib: build with meson") > > > > Cc: stable@dpdk.org > > Reported-by: Cristian Bidea > > Signed-off-by: Bruce Richardson > > Based on response given in bugzilla > [https://bugs.dpdk.org/show_bug.cgi?id=351] > > Tested-by: Cristian Bidea > > Just adding here so it shows up in patchwork. Applied, thanks