From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8FDEAC433E0 for ; Thu, 25 Feb 2021 15:02:39 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 0094A64E83 for ; Thu, 25 Feb 2021 15:02:38 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0094A64E83 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 18F0C1608E1; Thu, 25 Feb 2021 16:02:38 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 70DA740692 for ; Thu, 25 Feb 2021 16:02:36 +0100 (CET) IronPort-SDR: UqyKX5qQdc5aD61Zo2ry9uUMcYNn5kp8pgc0O9GMec3c7/qM6evHjz8AI5UnHJ+khXON/tdK8F 5uB2M62FNkoA== X-IronPort-AV: E=McAfee;i="6000,8403,9905"; a="184846176" X-IronPort-AV: E=Sophos;i="5.81,206,1610438400"; d="scan'208";a="184846176" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Feb 2021 07:02:18 -0800 IronPort-SDR: FSE9KL+GsaoQ7PEyTrS0ZlNBj3lKEjROBPGkoartdTnEQm5hPRwjxXYDBmktRrfPVVE7czQE6x bOexaPhbiRCQ== X-IronPort-AV: E=Sophos;i="5.81,206,1610438400"; d="scan'208";a="404329495" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.252.17.100]) ([10.252.17.100]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Feb 2021 07:02:16 -0800 To: Dmitry Kozlyuk , dev@dpdk.org Cc: Tyler Retzlaff , Mike Wells , Bruce Richardson References: <20210214012013.23165-1-dmitry.kozliuk@gmail.com> <20210214021616.26970-1-dmitry.kozliuk@gmail.com> <20210214021616.26970-6-dmitry.kozliuk@gmail.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <3e151d9d-7d80-41c8-8ade-d04aaedff687@intel.com> Date: Thu, 25 Feb 2021 15:02:15 +0000 MIME-Version: 1.0 In-Reply-To: <20210214021616.26970-6-dmitry.kozliuk@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v2 5/6] config: discover libpcap on Windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 2/14/2021 2:16 AM, Dmitry Kozlyuk wrote: > WinPcap or Npcap, can be installed anywhere. > Add a Meson option to specify SDK path. > I am not sure if it is OK to add a meson option for this, can't we use the default path? And does this mean we will need to add an option for each dependent library in Windows? If not, why pcap is special? > Signed-off-by: Dmitry Kozlyuk <...>