summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-05-08 11:17:29 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-05-08 11:17:29 +0000
commit7802d373b739075dae5c3c3add63daa9b24cab9a (patch)
treeb9dc7260d2fef0ecb2563b042a6db88834b25a2e
parent2a0dbb1efc1f019560ef72406771fd38962c3408 (diff)
imlib2 needs -lm
Originally committed as revision 3118 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 2c237210d6..238aa3c43c 100755
--- a/configure
+++ b/configure
@@ -853,7 +853,7 @@ int main( void ) { return (int) imlib_load_font("foo"); }
EOF
imlib2=no
-if $cc -o $TMPE $TMPC -lImlib2 > /dev/null 2>&1 ; then
+if $cc -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1 ; then
imlib2=yes
fi