diff options
author | Ingela Anderton Andin <[email protected]> | 2010-11-01 14:50:56 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2010-11-01 14:50:56 +0100 |
commit | a77d2b315600bbc851d3ab6d8d70c62715d5ce7c (patch) | |
tree | 70eb5efd79873e714e59d3847b8f126d86cb45dd /lib/odbc/c_src | |
parent | ff182ad7f0b4422f961b4b5336b747cc9f3b2cdf (diff) | |
parent | 626d906d3ad46d46a6c90cf3239fd60bad5dc318 (diff) | |
download | otp-a77d2b315600bbc851d3ab6d8d70c62715d5ce7c.tar.gz otp-a77d2b315600bbc851d3ab6d8d70c62715d5ce7c.tar.bz2 otp-a77d2b315600bbc851d3ab6d8d70c62715d5ce7c.zip |
Merge branch 'ia/odbc/windows_fix' into dev
* ia/odbc/windows_fix:
Better configure test that also works on windows.
Diffstat (limited to 'lib/odbc/c_src')
-rw-r--r-- | lib/odbc/c_src/odbcserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/odbc/c_src/odbcserver.c b/lib/odbc/c_src/odbcserver.c index 78a6fc41a8..84b9a99192 100644 --- a/lib/odbc/c_src/odbcserver.c +++ b/lib/odbc/c_src/odbcserver.c @@ -1741,7 +1741,7 @@ static int connect_to_erlang(const char *port) #endif struct sockaddr_in sin; -#if defined(AF_INET6) +#if defined(HAVE_STRUCT_SOCKADDR_IN6_SIN6_ADDR) && defined(AF_INET6) struct sockaddr_in6 sin6; sock = socket(AF_INET6, SOCK_STREAM, 0); |