diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-07-10 19:20:06 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-07-10 19:20:06 +0000 |
commit | 291fd18a6ede0fc6a6d35c9a98af6ae7fd6d6117 (patch) | |
tree | c850a66c9a9c6109680c6f14582963c7c6cbe5e8 /configure | |
parent | 451ae257242c4e10b6f1e816e14638bb45ad762b (diff) | |
download | ffmpeg-291fd18a6ede0fc6a6d35c9a98af6ae7fd6d6117.tar.gz |
Add a log2 replacement for systems that haven't quite caught up with the C99
standard library.
Originally committed as revision 19395 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -911,6 +911,7 @@ HAVE_LIST=" libdc1394_1 libdc1394_2 llrint + log2 loongson lrint lrintf @@ -2078,7 +2079,7 @@ check_lib math.h sin -lm check_lib va/va.h vaInitialize -lva # test for C99 functions in math.h -for func in llrint lrint lrintf round roundf truncf; do +for func in llrint log2 lrint lrintf round roundf truncf; do check_exec <<EOF && enable $func || disable $func #include <math.h> int main(void) { return ($func(3.999f) > 0)?0:1; } |