[MPlayer-cvslog] r19360 - trunk/configure
    reimar 
    subversion at mplayerhq.hu
       
    Tue Aug  8 13:55:24 CEST 2006
    
    
  
Author: reimar
Date: Tue Aug  8 13:55:23 2006
New Revision: 19360
Modified:
   trunk/configure
Log:
-logg must come before -lvorbisidec since both declare the same symbols.
Otherwise demux_ogg will take have the functions from libogg and the other half
from libvorbisidec, ending in a crash
Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Tue Aug  8 13:55:23 2006
@@ -5565,7 +5565,7 @@
 #include <tremor/ivorbiscodec.h>
 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
 EOF
-  cc_check -lvorbisidec -logg $_ld_lm && _tremor_external=yes && _libvorbis=no
+  cc_check -logg -lvorbisidec $_ld_lm && _tremor_external=yes && _libvorbis=no
 fi
 if test "$_libvorbis" = auto; then
   _libvorbis=no
@@ -5591,7 +5591,7 @@
   _def_tremor='#define TREMOR 1'
   _codecmodules="tremor(external) $_codecmodules"
   _res_comment="external Tremor"
-  _ld_vorbis='-lvorbisidec -logg'
+  _ld_vorbis='-logg -lvorbisidec'
 elif test "$_libvorbis" = yes ; then
   _vorbis=yes
   _def_vorbis='#define HAVE_OGGVORBIS 1'
    
    
More information about the MPlayer-cvslog
mailing list