Mercurial > mplayer.hg
changeset 16114:ab6119582b54
remove unneeded vgagl
author | iive |
---|---|
date | Tue, 26 Jul 2005 22:39:08 +0000 |
parents | c81b7c1c14cb |
children | 69eadbd92faa |
files | configure |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Jul 26 20:36:34 2005 +0000 +++ b/configure Tue Jul 26 22:39:08 2005 +0000 @@ -3960,15 +3960,14 @@ if test "$_svga" = auto ; then cat > $TMPC << EOF #include <vga.h> -#include <vgagl.h> int main(void) { return 0; } EOF _svga=no - cc_check -lvgagl -lvga $_ld_lm && _svga=yes + cc_check -lvga $_ld_lm && _svga=yes fi if test "$_svga" = yes ; then _def_svga='#define HAVE_SVGALIB 1' - _ld_svga="-lvgagl -lvga $_ld_lm" + _ld_svga="-lvga $_ld_lm" _vosrc="$_vosrc vo_svga.c" _vomodules="svga $_vomodules" else