changeset 31308:793f985a762c

Extend libvpx configure check to reject too old versions.
author reimar
date Sun, 13 Jun 2010 08:19:12 +0000
parents dc6a2cb5e0b4
children 1a35ec7c45e0
files configure
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 <vpx/vpx_decoder.h>
 #include <vpx/vp8dx.h>
+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"