[MPlayer-dev-eng] [PATCH] isfinite

Stephen Sheldon sfsheldo at gmail.com
Wed Feb 10 17:57:53 CET 2016


I am seeing a lot of warnings about "isfinite".  The attached patch 
makes the warnings go away.
-------------- next part --------------
Index: configure
===================================================================
--- configure	(revision 37655)
+++ configure	(working copy)
@@ -3416,7 +3416,7 @@
 echores "$_kstat"
 
 
-for func in atanf cbrt cbrtf cosf expf exp2 exp2f isnan isinf llrint llrintf log2 log2f log10f lrint lrintf rint round roundf sinf trunc truncf erf; do
+for func in atanf cbrt cbrtf cosf expf exp2 exp2f isnan isfinite isinf llrint llrintf log2 log2f log10f lrint lrintf rint round roundf sinf trunc truncf erf; do
 echocheck $func
 eval _$func=no
 statement_check math.h "${func}(2.0)" && eval _$func=yes
@@ -9194,6 +9194,7 @@
 $def_fminf
 $def_getaddrinfo
 $def_hypot
+$def_isfinite
 $def_isinf
 $def_isnan
 $def_ldexpf


More information about the MPlayer-dev-eng mailing list