From patchwork Fri May 5 21:52:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alin Serdean X-Patchwork-Id: 759198 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3wKQbx1HzSz9s7k for ; Sat, 6 May 2017 07:52:29 +1000 (AEST) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id F01F0B8B; Fri, 5 May 2017 21:52:25 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id D3D4BB37 for ; Fri, 5 May 2017 21:52:24 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.cloudbasesolutions.com (mail.cloudbasesolutions.com [91.232.152.5]) by smtp1.linuxfoundation.org (Postfix) with ESMTP id 982FC12E for ; Fri, 5 May 2017 21:52:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.cloudbasesolutions.com (Postfix) with ESMTP id B0E7E41845; Sat, 6 May 2017 00:52:22 +0300 (EEST) X-Virus-Scanned: amavisd-new at cloudbasesolutions.com Received: from mail.cloudbasesolutions.com ([127.0.0.1]) by localhost (mail.cloudbasesolutions.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qb73VkzkAdwK; Sat, 6 May 2017 00:52:22 +0300 (EEST) Received: from mail.cloudbasesolutions.com (unknown [10.77.78.3]) by mail.cloudbasesolutions.com (Postfix) with ESMTP id 48B4E41825; Sat, 6 May 2017 00:52:22 +0300 (EEST) Received: from CBSEX1.cloudbase.local ([10.77.78.3]) by CBSEX1.cloudbase.local ([10.77.78.3]) with mapi id 14.03.0319.002; Fri, 5 May 2017 23:52:22 +0200 From: Alin Serdean To: Guru Shetty Thread-Topic: [ovs-dev] [PATCH] windows: fix broken build Thread-Index: AQHSxd0Qvt2eJvjinEu0BFetwqCIqaHmGzAAgAAsr2A= Date: Fri, 5 May 2017 21:52:20 +0000 Message-ID: <6FDA0CACF4BC624BBE12167875D71C9B409207A0@CBSEX1.cloudbase.local> References: <20170505202027.12668-1-aserdean@cloudbasesolutions.com> In-Reply-To: Accept-Language: en-US, it-IT Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.77.78.1] MIME-Version: 1.0 X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,HTML_MESSAGE, RP_MATCHES_RCVD autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org X-Content-Filtered-By: Mailman/MimeDel 2.1.12 Cc: "dev@openvswitch.org" Subject: Re: [ovs-dev] [PATCH] windows: fix broken build X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org From: Guru Shetty [mailto:guru@ovn.org] Sent: Saturday, May 6, 2017 12:12 AM To: Alin Serdean Cc: dev@openvswitch.org Subject: Re: [ovs-dev] [PATCH] windows: fix broken build On 5 May 2017 at 13:20, Alin Serdean > wrote: The Windows build is failing because EPFNOSUPPORT does not exist. An equivalent is supplied using the WinSock API: WSAEPFNOSUPPORT. Signed-off-by: Alin Gabriel Serdean > I applied this after changing the commit message to something more meaningful. [Alin Serdean] Thanks a lot Guru! --- include/windows/windefs.h | 2 ++ 1 file changed, 2 insertions(+) -- 2.10.2.windows.1 diff --git a/include/windows/windefs.h b/include/windows/windefs.h index 5137f07..6ed8d87 100644 --- a/include/windows/windefs.h +++ b/include/windows/windefs.h @@ -45,4 +45,6 @@ char *strsep(char **stringp, const char *delim); #define srandom srand #define random rand +#define EPFNOSUPPORT WSAEPFNOSUPPORT + #endif /* windefs.h */