MPlayer only supports latest libavutil.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28339 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2009-01-17 11:31:12 +00:00
parent 83c523f9ea
commit 84784a5094
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -6633,7 +6633,7 @@ elif test "$_libavutil_so" = auto ; then
_libavutil_so=no
cat > $TMPC << EOF
#include <libavutil/common.h>
int main(void) { ff_gcd(1,1); return 0; }
int main(void) { av_gcd(1,1); return 0; }
EOF
if $_pkg_config --exists libavutil ; then
_inc_libavutil=`$_pkg_config --cflags libavutil`