diff options
author | Måns Rullgård <mans@mansr.com> | 2007-09-29 20:25:06 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-09-29 20:25:06 +0000 |
commit | fdf885983c878e6976a72311c56a0efefa725d11 (patch) | |
tree | ce25cd166cef6c01347ec674f041ca516d42daf3 /configure | |
parent | b6cd8593b35771fd2d47554b52eda891acc6ba03 (diff) | |
download | ffmpeg-fdf885983c878e6976a72311c56a0efefa725d11.tar.gz |
fix -lm check
Originally committed as revision 10620 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1217,8 +1217,6 @@ esac add_extralibs $osextralibs -check_ldflags -lm - if ! disabled logging ; then enabled logging || logfile="$logging" echo "# $0 $@" >$logfile @@ -1547,6 +1545,8 @@ for thread in $THREADS_LIST; do fi done +check_lib math.h sin -lm + # test for lrintf in math.h check_exec <<EOF && enable lrintf || disable lrintf #define _ISOC9X_SOURCE 1 |