[MPlayer-dev-eng] patch to make configure output consistent

Diego Biurrun diego at biurrun.de
Wed Jun 11 04:25:07 CEST 2003


Nilmoni Deb writes:
 > 	./configure script does not output information about various
 > libs/codecs consistently, when the paths to those are supplied explicitly
 > by the user as:
 > 
 > --with-sdl-config=/home/ndeb/opt/sdl/bin/sdl-config
 > --with-win32libdir=/home/ndeb/opt/win32lib/
 > --with-xanimlibdir=/home/ndeb/opt/xanim/lib
 > --with-reallibdir=/home/ndeb/opt/RealPlayer/Codecs
 > 
 > 
 > The output I get is:
 > 
 > Checking for SDL ... yes (using /home/ndeb/opt/sdl/bin/sdl-config)
 > Checking for Win32 codec DLL support ... yes (using 
 > /home/ndeb/opt/win32lib/)
 > Checking for XAnim DLL ... yes
 > Checking for RealPlayer DLL ... yes
 > 
 > The output I should get is:
 > 
 > Checking for SDL ... yes (using /home/ndeb/opt/sdl/bin/sdl-config)
 > Checking for Win32 codec DLL support ... yes (using
 > /home/ndeb/opt/win32lib/)
 > Checking for XAnim DLL ... yes (using /usr/lib/xanim/mods)
 > Checking for RealPlayer DLL ... yes (using
 > /home/ndeb/opt/RealPlayer/Codecs)
 > 
 > Hence the patch:
 > 
 > --- /home/ndeb/tmp/configure    Thu May 29 22:49:27 2003
 > +++ ./configure Thu May 29 22:53:50 2003
 > @@ -4275,7 +4275,7 @@
 >      echores "no (dynamic loader support needed)"
 >    fi
 >  else
 > -  echores "$_xanim"
 > +  echores "$_xanim (using $_xanimlibdir)"
 >  fi
 >  if test "$_xanim" = yes ; then
 >    _def_xanim='#define USE_XANIM 1'
 > @@ -4319,7 +4319,7 @@
 >      echores "no (dynamic loader support needed)"
 >    fi
 >  else
 > -  echores "$_real"
 > +  echores "$_real (using $_reallibdir)"
 >  fi
 >  if test "$_real" = yes ; then
 >    _def_real='#define USE_REALCODECS 1'

Thanks, applied.

If nobody objects, I will apply this to 0_90 in a few days.

 > The same is true for these imcomplete info entries:
 > 
 > Checking for gtk version ... 1.2.8 (using gtk-config)
 > Checking for glib version ... 1.2.8 (using glib-config)

Awaiting patches ;-)

Diego



More information about the MPlayer-dev-eng mailing list