0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

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

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