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

Originally committed as revision 4943 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Dan Villiom Podlaski Christiansen 2006-02-05 15:19:04 +00:00 committed by Diego Biurrun
parent 68b51e58ce
commit 12fe88b460
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1234,7 +1234,7 @@ int main( void ) {
struct ipv6_mreq mreq6;
getaddrinfo(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