view doc/windows-sockets.texi @ 40193:5fd32d128129

relocatable-prog: Use wrapper-free installation also on Mac OS X. Reported by Paul Smith <psmith@gnu.org>. * build-aux/install-reloc: Accept a 'mode' argument as first argument. (func_relativize): New function, from gnulib-tool. Handle mode 'macosx' through invocations of 'otool' and 'install_name_tool'. * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Determine use_macos_tools. If use_macos_tools is true, set INSTALL_PROGRAM_ENV to an 'install-reloc' invocation with mode 'macosx'.
author Bruno Haible <bruno@clisp.org>
date Sat, 23 Feb 2019 22:42:54 +0100
parents a64fce491bb5
children
line wrap: on
line source

@node Windows sockets
@section Windows sockets

One of the portability problems for native Windows are sockets and
networking functions.

@subsection Getaddrinfo and WINVER

This was written for the @code{getaddrinfo} module, but may be applicable to
other functions too.

The @code{getaddrinfo} function exists in @code{ws2tcpip.h} and @code{-lws2_32}
on Windows XP.  The function declaration is present if @code{WINVER >= 0x0501}.
Windows 2000 does not have @code{getaddrinfo} in its @file{WS2_32.DLL}.

Thus, if you want to assume Windows XP or later, you can add
@code{AC_DEFINE([WINVER], [0x0501])} to avoid compiling the (partial)
@code{getaddrinfo} implementation.

If you want to support Windows 2000, don't do anything.  The
replacement function will open @file{WS2_32.DLL} during run-time to
see if there is a @code{getaddrinfo} function available, and use it when
available.