From 9ef25a9736dacc702a4db9e7ea7035bf526c1515 Mon Sep 17 00:00:00 2001 From: atmos4 Date: Tue, 26 Mar 2002 12:43:01 +0000 Subject: [PATCH] Check for proper Vorbis version. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5356 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 617e38daac..131c18ef48 100755 --- a/configure +++ b/configure @@ -2493,7 +2493,7 @@ if test "$_vorbis" = auto ; then _vorbis=no cat > $TMPC << EOF #include -int main(void) { return 0; } +int main(void) { vorbis_packet_blocksize(0,0); return 0; } EOF cc_check -lvorbis -logg -lm && _vorbis=yes fi