X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftcpip.c;h=6b7ec9ed0bcaeb8f4f6b2be7b089e44efd7f94ab;hb=b5fec6a001dbcd8b303a11cede8b6c55512dbda0;hp=45b2ad129a75350bedec07d682989d2f4365d28b;hpb=2c418266c8feeeb47453d38c8320e6c83d75fd74;p=yaz-moved-to-github.git diff --git a/src/tcpip.c b/src/tcpip.c index 45b2ad1..6b7ec9e 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: tcpip.c,v 1.30 2006-09-15 09:06:28 adam Exp $ + * $Id: tcpip.c,v 1.32 2006-10-13 11:22:26 adam Exp $ */ /** * \file tcpip.c @@ -26,10 +26,17 @@ #endif #ifdef WIN32 + +/* VS 2003 or later has getaddrinfo; older versions do not */ #include +#if _MSC_VER >= 1300 #include #define HAVE_GETADDRINFO 1 #else +#define HAVE_GETADDRINFO 0 +#endif + +#else #include #include #include @@ -565,7 +572,7 @@ static int tcpip_bind(COMSTACK h, void *address, int mode) #ifdef WIN32 BOOL one = 1; #else - unsigned long one = 1; + int one = 1; #endif #if HAVE_GETADDRINFO