diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-11-05 00:07:05 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-05 00:07:05 +0000 |
commit | 95e2ce4aa05d0bd24c5620937b47e21125532df1 (patch) | |
tree | 4e85a98671e209a846e4bc07b32a12abfb21215d /configure | |
parent | 70d4f2da7f2747423213a980ad6fff6ffd53211b (diff) | |
download | ffmpeg-95e2ce4aa05d0bd24c5620937b47e21125532df1.tar.gz |
lrintf detection (based upon a patch by François Revol <revol at free dot fr>)
Originally committed as revision 1162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -360,6 +360,19 @@ if test "$zlib" = "yes"; then extralibs="$extralibs -lz" fi +# test for lrintf in math.h +cat > $TMPC << EOF +#define _ISOC9X_SOURCE 1 +#include <math.h> +int main( void ) { return (lrintf(3.999f) > 0)?0:1; } +EOF + +have_lrintf="no" +if $cc $extralibs -o $TMPO $TMPC 2> /dev/null ; then + have_lrintf="yes" + $TMPO 2> /dev/null > /dev/null || have_lrintf="no" +fi + _restrict= for restrict_keyword in restrict __restrict__ __restrict; do echo "void foo(char * $restrict_keyword p);" > $TMPC @@ -496,6 +509,9 @@ fi if test "$imlib2" = "yes" ; then echo "HAVE_IMLIB2=yes" >> config.mak fi +if test "$have_lrintf" = "yes" ; then + echo "#define HAVE_LRINTF 1" >> $TMPH +fi if test "$vhook" = "yes" ; then echo "BUILD_VHOOK=yes" >> config.mak echo "#define HAVE_VHOOK 1" >> $TMPH |