From: Bruno Haible Date: Sat, 1 Oct 2011 09:50:52 +0000 (+0200) Subject: isfinite: Fix typo. X-Git-Tag: v0.1~1720 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f28e09dc6fe392da97c03a371faaa3676b6e41b2;p=thirdparty%2Fgnulib.git isfinite: Fix typo. * m4/isfinite.m4 (gl_ISFINITEL_WORKS): When cross-compiling, set gl_cv_func_isfinitel_works, not gl_cv_func_isnanl_works. --- diff --git a/ChangeLog b/ChangeLog index 5c31c251a8..6486bac5b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-10-01 Bruno Haible + + isfinite: Fix typo. + * m4/isfinite.m4 (gl_ISFINITEL_WORKS): When cross-compiling, set + gl_cv_func_isfinitel_works, not gl_cv_func_isnanl_works. + 2011-10-01 Bruno Haible nonblocking tests: Fix test failure on Linux/IA-64. diff --git a/m4/isfinite.m4 b/m4/isfinite.m4 index 44cfcd44c5..1fca56abf3 100644 --- a/m4/isfinite.m4 +++ b/m4/isfinite.m4 @@ -1,4 +1,4 @@ -# isfinite.m4 serial 11 +# isfinite.m4 serial 12 dnl Copyright (C) 2007-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -156,8 +156,8 @@ int main () }]])], [gl_cv_func_isfinitel_works=yes], [gl_cv_func_isfinitel_works=no], [case "$host_cpu" in # Guess no on ia64, x86_64, i386. - ia64 | x86_64 | i*86) gl_cv_func_isnanl_works="guessing no";; - *) gl_cv_func_isnanl_works="guessing yes";; + ia64 | x86_64 | i*86) gl_cv_func_isfinitel_works="guessing no";; + *) gl_cv_func_isfinitel_works="guessing yes";; esac ]) ])