1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

-lm needed for svgalib

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9344 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gabucino 2003-02-08 13:47:19 +00:00
parent b4cff5a177
commit dde865f3a8

4
configure vendored
View File

@ -2701,11 +2701,11 @@ if test "$_svga" = auto ; then
int main(void) { return 0; }
EOF
_svga=no
cc_check -lvgagl -lvga && _svga=yes
cc_check -lvgagl -lvga -lm && _svga=yes
fi
if test "$_svga" = yes ; then
_def_svga='#define HAVE_SVGALIB 1'
_ld_svga='-lvgagl -lvga'
_ld_svga='-lvgagl -lvga -lm'
_vosrc="$_vosrc vo_svga.c"
_vomodules="svga $_vomodules"
else