diff options
author | Dan Villiom Podlaski Christiansen <danchr@daimi.au.dk> | 2006-02-05 15:19:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-05 15:19:04 +0000 |
commit | 12fe88b460d28a226c629614358cd2e9bf757c0d (patch) | |
tree | be6b7b4f243e34d0fc78a4c85be8b2f5aa8d2ad8 | |
parent | 68b51e58ce73d99d2cd9bfa14cb7daaf4a74047e (diff) | |
download | ffmpeg-12fe88b460d28a226c629614358cd2e9bf757c0d.tar.gz |
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
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |