# HG changeset patch # User Bruno Haible # Date 1333301461 -7200 # Node ID 2c1499f688aaebfb678d82fcd49a3dce84452fef # Parent c023d893c23f89cd702b772ceac8e66c83b1523c logf-ieee: Fix test whether logf works. * m4/logf.m4 (gl_FUNC_LOGF): Fix typo in test program. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-04-01 Bruno Haible + + logf-ieee: Fix test whether logf works. + * m4/logf.m4 (gl_FUNC_LOGF): Fix typo in test program. + 2012-04-01 Bruno Haible log10l: Work around log10l-ieee test failure on IRIX 6.5. diff --git a/m4/logf.m4 b/m4/logf.m4 --- a/m4/logf.m4 +++ b/m4/logf.m4 @@ -1,4 +1,4 @@ -# logf.m4 serial 4 +# logf.m4 serial 5 dnl Copyright (C) 2011-2012 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -55,7 +55,7 @@ static float dummy (float x) { return 0; } int main (int argc, char *argv[]) { - float (*my_log) (float) = argc ? logf : dummy; + float (*my_logf) (float) = argc ? logf : dummy; /* Test logf(negative). This test fails on NetBSD 5.1. */ float y = my_logf (-1.0f);