[Ffmpeg-cvslog] CVS: ffmpeg configure,1.242,1.243

Diego Biurrun CVS diego
Sun Feb 5 16:19:06 CET 2006


Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv12436

Modified Files:
	configure 
Log Message:
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


Index: configure
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/configure,v
retrieving revision 1.242
retrieving revision 1.243
diff -u -d -r1.242 -r1.243
--- configure	2 Feb 2006 13:07:29 -0000	1.242
+++ configure	5 Feb 2006 15:19:04 -0000	1.243
@@ -1234,7 +1234,7 @@
   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
 





More information about the ffmpeg-cvslog mailing list