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 7EBDBA051B; Wed, 10 Jun 2020 14:01:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8E0471BF90; Wed, 10 Jun 2020 14:01:24 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 8C0A51BEDF for ; Wed, 10 Jun 2020 14:01:20 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from fady@mellanox.com) with SMTP; 10 Jun 2020 15:00:46 +0300 Received: from l-wincomp04-vm.labs.mlnx (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 05AC0iZC006240; Wed, 10 Jun 2020 15:00:44 +0300 From: Fady Bader To: dev@dpdk.org Cc: fady@mellanox.com, thomas@monjalon.net, tbashar@mellanox.com, talshn@mellanox.com, yohadt@mellanox.com, dmitry.kozliuk@gmail.com, harini.ramakrishnan@microsoft.com, ocardona@microsoft.com, anand.rawat@intel.com, ranjit.menon@intel.com, olivier.matz@6wind.com Date: Wed, 10 Jun 2020 15:00:37 +0300 Message-Id: <20200610120040.17968-1-fady@mellanox.com> X-Mailer: git-send-email 2.16.1.windows.4 In-Reply-To: <'20200610112326.18576-1-fady@mellanox.com'> References: <'20200610112326.18576-1-fady@mellanox.com'> Subject: [dpdk-dev] [PATCH v2 0/3] compile librte_net 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" Addded needed files and fixes for windows in order to get librte_net compiling under Windows. Depends-on: series-10282 ("build mempool on Windows") Fady Bader (3): net: fix s_addr redefinition in Windows net: add htons to minGW for Windows eal/windows: librte_net build on Windows lib/librte_eal/common/meson.build | 1 + lib/librte_eal/rte_eal_exports.def | 1 + lib/librte_eal/windows/include/netinet/in.h | 25 +++++++++++++++++++++++++ lib/librte_eal/windows/include/netinet/ip.h | 11 +++++++++++ lib/librte_eal/windows/include/rte_os.h | 4 ++++ lib/librte_net/rte_arp.c | 2 ++ lib/librte_net/rte_ether.h | 9 +++++++++ lib/meson.build | 2 +- 8 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 lib/librte_eal/windows/include/netinet/in.h create mode 100644 lib/librte_eal/windows/include/netinet/ip.h -- 2.16.1.windows.4