From 12fe88b460d28a226c629614358cd2e9bf757c0d Mon Sep 17 00:00:00 2001 From: Dan Villiom Podlaski Christiansen Date: Sun, 5 Feb 2006 15:19:04 +0000 Subject: 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 8159b0435b..f9c6f71b93 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3