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 E3434A2EEB for ; Fri, 13 Sep 2019 19:23:55 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B49D51F021; Fri, 13 Sep 2019 19:23:54 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id CB1E81F01D for ; Fri, 13 Sep 2019 19:23:52 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Sep 2019 10:23:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,492,1559545200"; d="scan'208";a="197624681" Received: from unknown (HELO [10.241.224.220]) ([10.241.224.220]) by orsmga002.jf.intel.com with ESMTP; 13 Sep 2019 10:23:51 -0700 To: Bruce Richardson , Stephen Hemminger Cc: dev@dpdk.org References: <20190906220957.7892-1-pallavi.kadam@intel.com> <20190909195404.4760-1-pallavi.kadam@intel.com> <20190909195404.4760-7-pallavi.kadam@intel.com> <20190912234043.7da06fdb@xps13> <20190913094621.GA1921@bricha3-MOBL.ger.corp.intel.com> From: Pallavi Kadam Message-ID: <28de6c72-252a-53a1-68b1-79a1d93d5e91@intel.com> Date: Fri, 13 Sep 2019 10:23:51 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: <20190913094621.GA1921@bricha3-MOBL.ger.corp.intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH 6/9] eal: getopt implementation for windows 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Stephen On 9/13/2019 2:46 AM, Bruce Richardson wrote: > On Thu, Sep 12, 2019 at 11:40:43PM +0200, Stephen Hemminger wrote: >> On Mon, 9 Sep 2019 12:54:01 -0700 >> Pallavi Kadam wrote: >> >>> Adding getopt_long.c and getopt.c files to support parsing >>> option on Windows. >>> The original contribution is under MIT license. >>> >>> Signed-off-by: Antara Ganesh Kolar >>> Signed-off-by: Pallavi Kadam >>> Reviewed-by: Ranjit Menon >>> Reviewed-by: Keith Wiles >> \ ) >> >> Is this the same as BSD? >> >> https://github.com/freebsd/freebsd/blob/master/lib/libc/stdlib/getopt_long.c > I'm not sure it matters even if it is. That code is not under a > BSD-3-Clause license either, so still would require the same exceptions. > > /Bruce I don't think these are the same files. We tried one similar BSD-2-Clause implementation which also builds cleanly on Windows. So, between BSD-2 and MIT License we decided to opt for MIT License implementation. As Bruce mentioned, BSD-2-CLasue implementation is also not acceptable, am I correct?