Tests for module 'log1p-ieee'.
[gnulib.git] / ChangeLog
index c704591..3b11254 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,140 @@
 2012-03-10  Bruno Haible  <bruno@clisp.org>
 
+       Tests for module 'log1p-ieee'.
+       * modules/log1p-ieee-tests: New file.
+       * tests/test-log1p-ieee.c: New file.
+
+       New module 'log1p-ieee'.
+       * modules/log1p-ieee: New file.
+
+       Tests for module 'log1pf-ieee'.
+       * modules/log1pf-ieee-tests: New file.
+       * tests/test-log1pf-ieee.c: New file.
+       * tests/test-log1p-ieee.h: New file.
+
+       New module 'log1pf-ieee'.
+       * modules/log1pf-ieee: New file.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'log1pl'.
+       * modules/log1pl-tests: New file.
+       * tests/test-log1pl.c: New file.
+
+       New module 'log1pl'.
+       * lib/math.in.h (log1pl): New declaration.
+       * lib/log1pl.c: New file.
+       * m4/log1pl.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether log1pl is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOG1PL, HAVE_LOG1PL.
+       * modules/math (Makefile.am): Substitute GNULIB_LOG1PL, HAVE_LOG1PL.
+       * modules/log1pl: New file.
+       * tests/test-math-c++.cc: Check the declaration of log1pl.
+       * doc/posix-functions/log1pl.texi: Mention the new module.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'log1pf'.
+       * modules/log1pf-tests: New file.
+       * tests/test-log1pf.c: New file.
+
+       New module 'log1pf'.
+       * lib/math.in.h (log1pf): New declaration.
+       * lib/log1pf.c: New file.
+       * m4/log1pf.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether log1pf is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOG1PF, HAVE_LOG1PF,
+       REPLACE_LOG1PF.
+       * modules/math (Makefile.am): Substitute GNULIB_LOG1PF, HAVE_LOG1PF,
+       REPLACE_LOG1PF.
+       * modules/log1pf: New file.
+       * tests/test-math-c++.cc: Check the declaration of log1pf.
+       * doc/posix-functions/log1pf.texi: Mention the new module.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       log1p tests: More tests.
+       * tests/test-log1p.h: New file.
+       * modules/log1p-tests (Files): Add tests/test-log1p.h, tests/randomd.c.
+       (Makefile.am): Add randomd.c to test_log1p_SOURCES.
+       * tests/test-log1p.c: Include <float.h> and test-log1p.h.
+       (main): Invoke test_function.
+
+       log1p: Provide replacement for Minix and MSVC.
+       * lib/math.in.h (log1p): New declaration.
+       * lib/log1p.c: New file.
+       * m4/log1p.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether log1p is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOG1P, HAVE_LOG1P.
+       * modules/math (Makefile.am): Substitute GNULIB_LOG1P, HAVE_LOG1P.
+       * modules/log1p (Files): Add lib/log1p.c, m4/log1p.m4.
+       (Depends-on): Add math, isnand, log, round.
+       (configure.ac): Invoke gl_FUNC_LOG1P. Arrange to compile replacement if
+       HAVE_LOG1P is 0.
+       * tests/test-math-c++.cc: Check the declaration of log1p.
+       * doc/posix-functions/log1p.texi: Mention the replacement.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       math tests: Small simplification.
+       * tests/test-exp.h (test_function): Use the same err_bound for
+       'double' on platforms with sizeof (long double) == sizeof (double)
+       than on platforms with sizeof (long double) > sizeof (double).
+       * tests/test-exp2.h (test_function): Likewise.
+       * tests/test-expm1.h (test_function): Likewise.
+       * tests/test-log.h (test_function): Likewise.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       Fix some comments.
+       * lib/expl.c: Fix an ambiguous comment.
+       * lib/expm1.c: Likewise.
+       * lib/expm1l.c: Likewise.
+       * lib/exp2.c: Likewise.
+       * lib/exp2l.c: Likewise.
+
+2012-03-10  Paul Eggert  <eggert@cs.ucla.edu>
+
+       regex: allow inclusion of <regex.h> before <limits.h>
+       Without this patch, portable programs had to include <limits.h> before
+       <regex.h> if they wanted a consistent value for RE_DUP_MAX.
+       I ran into this problem with a test version of GNU grep on Solaris 8.
+       * lib/regex.h: Include <limits.h> if _REGEX_INCLUDE_LIMITS_H.
+       This is done conditionally so that this change can be merged
+       back to glibc.
+       * m4/regex.m4 (gl_REGEX): Define _REGEX_INCLUDE_LIMITS_H if
+       using the included regex.
+
+       fts: depend on fdopendir
+       * modules/fts (Depends-on): Depend on fdopendir.  This is needed
+       on Solaris 8, at least, since it lacks fdopendir.  Evidently the
+       problem was introduced when fdopendir was split out.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       Remove unused variables.
+       * m4/fmodf.m4 (gl_FUNC_FMODF): Remove unused variable 'i'.
+       * m4/remainderf.m4 (gl_FUNC_REMAINDERF): Likewise.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       isnanf-nolibm: Fix last commit.
+       * lib/isnanf-nolibm.h [IRIX]: Don't include <ieeefp.h>. Declare isnanf.
+
+       isnanf-nolibm: Make it work on IRIX 6.5 with cc.
+       * lib/isnanf-nolibm.h [IRIX]: Include <ieeefp.h>.
+
+2012-03-10  Bruno Haible  <bruno@clisp.org>
+
+       logf-ieee: Work around test failure on NetBSD 5.1.
+       * m4/logf-ieee.m4: New file.
+       * m4/logf.m4 (gl_FUNC_LOGF): If gl_FUNC_LOGF_IEEE is present, test
+       whether logf works with a negative argument. Replace it if not.
+       * lib/logf.c (logf): For negative arguments, return NaN.
+       * modules/logf-ieee (Files): Add m4/logf-ieee.m4.
+       (configure.ac): Invoke gl_FUNC_LOGF_IEEE.
+       * doc/posix-functions/logf.texi: Mention the logf-ieee module.
+
        logf-ieee: Work around test failure on Solaris 9.
        * modules/logf-ieee (Depends-on): Add log-ieee.
        (configure.ac): Require gl_FUNC_LOGF.