summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-08 13:47:19 +0000
committergabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-08 13:47:19 +0000
commitdde865f3a8e7db32fd1b67685a25225009fd875d (patch)
tree7766bbee4df8749d3cc3e2eb8d13beb2e05ec226 /configure
parentb4cff5a177b098685c49889f45589fa11f4bd0f6 (diff)
downloadmpv-dde865f3a8e7db32fd1b67685a25225009fd875d.tar.bz2
mpv-dde865f3a8e7db32fd1b67685a25225009fd875d.tar.xz
-lm needed for svgalib
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9344 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 552794faad..37421fd584 100755
--- a/configure
+++ b/configure
@@ -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