Commit 66d75fd1 authored by diego's avatar diego

Fix detection of IPv6 support on Darwin by ensuring that

IN6_IS_ADDR_MULTICAST gets an argument of type (const struct in6_addr *).
patch by Dan Villiom Podlaski Christiansen, danchr.at.daimi.dot.au.dot.dk


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4943 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 80b8632e
...@@ -1234,7 +1234,7 @@ int main( void ) { ...@@ -1234,7 +1234,7 @@ int main( void ) {
struct ipv6_mreq mreq6; struct ipv6_mreq mreq6;
getaddrinfo(0,0,0,0); getaddrinfo(0,0,0,0);
getnameinfo(0,0,0,0,0,0,0); getnameinfo(0,0,0,0,0,0,0);
IN6_IS_ADDR_MULTICAST(0); IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
} }
EOF EOF
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment