Check for proper Vorbis version.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5356 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-03-26 12:43:01 +00:00
parent 51a0ad68d1
commit 9ef25a9736
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -2493,7 +2493,7 @@ if test "$_vorbis" = auto ; then
_vorbis=no
cat > $TMPC << EOF
#include <vorbis/codec.h>
int main(void) { return 0; }
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
EOF
cc_check -lvorbis -logg -lm && _vorbis=yes
fi