X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Ftcpip.c;h=6b7ec9ed0bcaeb8f4f6b2be7b089e44efd7f94ab;hp=a16fe5eb202c58d9edaf00a45c5f67a4ec29fb1d;hb=8df7d26b7379039b47e57c29712d21ac278f0745;hpb=63ed4a2c42b0a5786e375be40947294f4ac1cf16 diff --git a/src/tcpip.c b/src/tcpip.c index a16fe5e..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.31 2006-09-21 15:55:25 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