[Ffmpeg-cvslog] CVS: ffmpeg configure,1.242,1.243
Diego Biurrun CVS
diego
Sun Feb 5 16:19:06 CET 2006
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec 4xm.c, 1.19, 1.20 asv1.c, 1.21, 1.22 dsputil.c, 1.132, 1.133 dsputil.h, 1.126, 1.127 dv.c, 1.70, 1.71 h264.c, 1.184, 1.185 imgresample.c, 1.29, 1.30 mdec.c, 1.18, 1.19 mjpeg.c, 1.121, 1.122 mpegvideo.c, 1.508, 1.509 mpegvideo.h, 1.236, 1.237 vp3.c, 1.77, 1.78 wmadec.c, 1.29, 1.30 wmv2.c, 1.38, 1.39
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec motion_est.c, 1.113, 1.114 avcodec.h, 1.434, 1.435 utils.c, 1.165, 1.166
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec 4xm.c, 1.19, 1.20 asv1.c, 1.21, 1.22 dsputil.c, 1.132, 1.133 dsputil.h, 1.126, 1.127 dv.c, 1.70, 1.71 h264.c, 1.184, 1.185 imgresample.c, 1.29, 1.30 mdec.c, 1.18, 1.19 mjpeg.c, 1.121, 1.122 mpegvideo.c, 1.508, 1.509 mpegvideo.h, 1.236, 1.237 vp3.c, 1.77, 1.78 wmadec.c, 1.29, 1.30 wmv2.c, 1.38, 1.39
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec motion_est.c, 1.113, 1.114 avcodec.h, 1.434, 1.435 utils.c, 1.165, 1.166
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list