diff options
author | Raimo Niskanen <[email protected]> | 2010-10-14 16:56:43 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-11-09 12:14:57 +0100 |
commit | ce4c78512fccda58e75c4846ced1c3a4e10d7454 (patch) | |
tree | 91249b26f7b2c6e2d3962a019e2d74a9d9451c89 /erts/etc | |
parent | ff7a4dbd6881e2434ed2619df541c113281cf0a0 (diff) | |
download | otp-ce4c78512fccda58e75c4846ced1c3a4e10d7454.tar.gz otp-ce4c78512fccda58e75c4846ced1c3a4e10d7454.tar.bz2 otp-ce4c78512fccda58e75c4846ced1c3a4e10d7454.zip |
Implement inet:getifaddrs/0 on Windows
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/common/inet_gethost.c | 1 | ||||
-rwxr-xr-x | erts/etc/win32/cygwin_tools/vc/ld.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/erts/etc/common/inet_gethost.c b/erts/etc/common/inet_gethost.c index d3ff4874ac..e095836258 100644 --- a/erts/etc/common/inet_gethost.c +++ b/erts/etc/common/inet_gethost.c @@ -59,6 +59,7 @@ #define WIN32_LEAN_AND_MEAN #include <winsock2.h> #include <windows.h> +#include <ws2tcpip.h> #include <process.h> #include <stdio.h> #include <stdlib.h> diff --git a/erts/etc/win32/cygwin_tools/vc/ld.sh b/erts/etc/win32/cygwin_tools/vc/ld.sh index b04935ed9b..d3b53eb5bc 100755 --- a/erts/etc/win32/cygwin_tools/vc/ld.sh +++ b/erts/etc/win32/cygwin_tools/vc/ld.sh @@ -53,7 +53,7 @@ while test -n "$1" ; do STDLIB_FORCED=true; STDLIB=LIBCMTD.LIB;; -lsocket) - DEFAULT_LIBRARIES="$DEFAULT_LIBRARIES WS2_32.LIB";; + DEFAULT_LIBRARIES="$DEFAULT_LIBRARIES WS2_32.LIB IPHLPAPI.LIB";; -l*) y=`echo $x | sed 's,^-l\(.*\),\1,g'`; MPATH=`cygpath -m $y`; |