# HG changeset patch # User reimar # Date 1276417152 0 # Node ID 793f985a762ca3d74eb6d016ebe0b7cd5fb08380 # Parent dc6a2cb5e0b4e3204355b6c2acd86d63719806c1 Extend libvpx configure check to reject too old versions. diff -r dc6a2cb5e0b4 -r 793f985a762c configure --- a/configure Sun Jun 13 05:32:09 2010 +0000 +++ b/configure Sun Jun 13 08:19:12 2010 +0000 @@ -7688,6 +7688,7 @@ cat > $TMPC << EOF #include #include +struct vpx_codec_ctx decoder; int main(void) { vpx_codec_dec_init(NULL, &vpx_codec_vp8_dx_algo, NULL, 0); return 0; } EOF cc_check -lvpx && _libvpx_lavc=yes && extra_ldflags="$extra_ldflags -lvpx"