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 5CA4CA051A; Wed, 10 Jun 2020 13:23:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 04F982BF7; Wed, 10 Jun 2020 13:23:39 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 589F02BE2 for ; Wed, 10 Jun 2020 13:23:37 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from fady@mellanox.com) with SMTP; 10 Jun 2020 14:23:33 +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 05ABNXC9022477; Wed, 10 Jun 2020 14:23:33 +0300 From: Fady Bader To: dev@dpdk.org Cc: fady@mellanox.com, thomasm@mellanox.com, 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 14:23:23 +0300 Message-Id: <20200610112326.18576-1-fady@mellanox.com> X-Mailer: git-send-email 2.16.1.windows.4 Subject: [dpdk-dev] [PATCH 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. 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 | 23 +++++++++++++++++++++++ lib/librte_eal/windows/include/netinet/ip.h | 9 +++++++++ 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, 50 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