diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-01-12 02:19:51 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-01-12 02:19:51 +0000 |
commit | 6b7c7703f4c762d0419dfb0e186fa21cec78e4bc (patch) | |
tree | c6d588c65fc717ee3b29265359ccee892a1f82e4 /configure | |
parent | 0941ee0fa656eb3abc2bdf8abd57fa0eb8dd8bac (diff) | |
download | ffmpeg-6b7c7703f4c762d0419dfb0e186fa21cec78e4bc.tar.gz |
Add replacements for log2f(), exp2() and exp2f() for platforms that lacks it.
Should fix build breakage on some platforms introduced in r21125.
Originally committed as revision 21155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -954,6 +954,8 @@ HAVE_LIST=" dos_paths ebp_available ebx_available + exp2 + exp2f fast_64bit fast_cmov fast_unaligned @@ -970,6 +972,7 @@ HAVE_LIST=" libdc1394_2 llrint log2 + log2f loongson lrint lrintf @@ -2379,8 +2382,11 @@ done check_lib math.h sin -lm check_lib va/va.h vaInitialize -lva +check_func exp2 +check_func exp2f check_func llrint check_func log2 +check_func log2f check_func lrint check_func lrintf check_func round |