# HG changeset patch # User pl # Date 1006969945 0 # Node ID 217f564f29ffcf17fe4afa1352e012934ea3604c # Parent 6c4a6616855707785a1b14b7fcc12090d9c9dcf1 summary handling was not correct (bugs found by Nilmoni Deb and Tibcu) DGA detection changed since it did not detect (patch by tibcu) changed vo_vesa building to behave as the other vo_* diff -r 6c4a66168557 -r 217f564f29ff configure --- a/configure Wed Nov 28 17:41:23 2001 +0000 +++ b/configure Wed Nov 28 17:52:25 2001 +0000 @@ -964,12 +964,20 @@ ###################### -echocheck "Extra headers" -echores "$_extraincdir" - - -echocheck "Extra libs" -echores "$_extralibdir" +echocheck "extra headers" +if test "$_extraincdir" ; then + echores "$_extraincdir" +else + echores "none" +fi + + +echocheck "extra libs" +if test "$_extralibdir" ; then + echores "$_extralibdir" +else + echores "none" +fi echocheck "kstat" @@ -1274,7 +1282,7 @@ for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do if test -d "$I/X11" ; then _x11incdir="$I" - echores "found $I" + echores "yes (found: $I)" break fi done @@ -1292,7 +1300,7 @@ for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do if test -d "$I" ; then _x11libdir="$I" - echores "found $I" + echores "yes (found: $I)" break; fi done @@ -1445,7 +1453,7 @@ cat > $TMPC << EOF #include #include -int main (void) { (void) XDGAQueryExtension(0, 0, 0); return 0; } +int main (void) { return 0; } EOF _dga=no cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga=yes @@ -1671,6 +1679,16 @@ fi +echocheck "VESA support" +if x86 && linux ; then + _vosrc="$_vosrc vo_vesa.c vesa_lvo.c" + _vomodules="vesa $_vomodules" + echores "ok" +else + echores "not supported on this OS/architecture" +fi + + ################# # VIDEO + AUDIO # ################# @@ -1713,6 +1731,7 @@ _ld_sdl=`$_sdlconfig --libs` _inc_sdl=`$_sdlconfig --cflags` _vosrc="$_vosrc vo_sdl.c" + _vomodules="sdl $_vomodules" _aosrc="$_aosrc ao_sdl.c" _aomodules="sdl $_aomodules" else @@ -2032,10 +2051,11 @@ _ld_win32='-Lloader -lloader' _dep_win32='loader/libloader.a' _codecmodules="win32 $_codecmodules" + echores "$_win32 (found: $_win32libdir)" else _def_win32='#undef USE_WIN32DLL' + echores "$_win32" fi -echores "$_win32" echocheck "DirectShow" @@ -2101,7 +2121,7 @@ done fi test "$_xanimlibdir" && _xanim=yes - echores "yes" + echores "yes (found: $_xanimlibdir)" else echores "not supported on non x86" fi @@ -2860,8 +2880,8 @@ Data directory: $_datadir Input: $_inputmodules Codecs: $_codecmodules - Audio output drivers: null $_aomodules - Video output drivers: null $_vomodules + Audio output drivers: null pcm $_aomodules + Video output drivers: null pgm md5 mpegpes $_vomodules 'config.h' and 'config.mak' contain your configuration options. Note: if you alter theses files (for instance CFLAGS) MPlayer may no longer @@ -2905,7 +2925,8 @@ fi else if test "$_win32libdir" ; then - echo "Ok, found Win32 codecs directory at $_win32libdir." +# echo "Ok, found Win32 codecs directory at $_win32libdir." + : else cat <