diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-08 11:17:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-08 11:17:29 +0000 |
commit | 7802d373b739075dae5c3c3add63daa9b24cab9a (patch) | |
tree | b9dc7260d2fef0ecb2563b042a6db88834b25a2e | |
parent | 2a0dbb1efc1f019560ef72406771fd38962c3408 (diff) | |
download | ffmpeg-7802d373b739075dae5c3c3add63daa9b24cab9a.tar.gz |
imlib2 needs -lm
Originally committed as revision 3118 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |