remove unneeded vgagl

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16115 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
iive 2005-07-26 22:39:08 +00:00
parent 775c4db7f4
commit b921b034bc
1 changed files with 2 additions and 3 deletions

5
configure vendored
View File

@ -3960,15 +3960,14 @@ echocheck "SVGAlib"
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