From 883d93c5bc5287fe287a6a57478fc3d435fce8d3 Mon Sep 17 00:00:00 2001 From: navarrop Date: Fri, 4 Jun 2010 16:04:32 +0000 Subject: [PATCH] Protect EWOULDBLOCK, EINPROGRESS, ETIMEDOUT macro definitions since Visual C already defines them. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7833 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/win32/config.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/win32/config.h b/src/win32/config.h index f80fd224f1..fa25dbc6dd 100644 --- a/src/win32/config.h +++ b/src/win32/config.h @@ -43,17 +43,19 @@ typedef int socklen_t; #define tcp_close( s ) closesocket( s ) #endif -#ifndef EWOULDBLOCK - #define EWOULDBLOCK WSAEWOULDBLOCK +#ifndef _XBT_VISUALC_COMPILER + #ifndef EWOULDBLOCK + #define EWOULDBLOCK WSAEWOULDBLOCK + #endif + #ifndef EINPROGRESS + #define EINPROGRESS WSAEINPROGRESS + #endif + #ifndef ETIMEDOUT + #define ETIMEDOUT WSAETIMEDOUT + #endif #endif -#ifndef EINPROGRESS - #define EINPROGRESS WSAEINPROGRESS -#endif -#ifndef ETIMEDOUT - #define ETIMEDOUT WSAETIMEDOUT -#endif #ifdef sock_errno #undef sock_errno -- 2.20.1