Fix documentation about math functions on MacOS X.
[gnulib.git] / ChangeLog
index a6d363a..96d9393 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,279 @@
+2011-10-07  Bruno Haible  <bruno@clisp.org>
+
+       Fix documentation about math functions on MacOS X.
+       * doc/posix-functions/exp2.texi: Don't say the function is missing on
+       MacOS X 10.5.
+       * doc/posix-functions/fdim.texi: Likewise.
+       * doc/posix-functions/feclearexcept.texi: Likewise.
+       * doc/posix-functions/fegetenv.texi: Likewise.
+       * doc/posix-functions/fegetround.texi: Likewise.
+       * doc/posix-functions/feholdexcept.texi: Likewise.
+       * doc/posix-functions/feraiseexcept.texi: Likewise.
+       * doc/posix-functions/fesetenv.texi: Likewise.
+       * doc/posix-functions/fesetround.texi: Likewise.
+       * doc/posix-functions/fetestexcept.texi: Likewise.
+       * doc/posix-functions/feupdateenv.texi: Likewise.
+       * doc/posix-functions/fmax.texi: Likewise.
+       * doc/posix-functions/fmin.texi: Likewise.
+       * doc/posix-functions/log2.texi: Likewise.
+       * doc/posix-functions/modff.texi: Likewise.
+       * doc/posix-functions/nan.texi: Likewise.
+       * doc/posix-functions/nanf.texi: Likewise.
+       * doc/posix-functions/nextafterf.texi: Likewise.
+       * doc/posix-functions/remquo.texi: Likewise.
+
+2011-10-07  Bruno Haible  <bruno@clisp.org>
+
+       modff: Drop assumption about library that defines modff.
+       * m4/modff.m4 (gl_FUNC_MODFF): Use gl_MATHFUNC macro instead of
+       AC_CHECK_FUNCS.
+       * modules/modff (Files): Add m4/mathfunc.m4.
+
+2011-10-07  Bernhard Voelker  <mail@bernhard-voelker.de>
+
+       raise tests: Avoid a GCC warning.
+       * tests/test-raise.c (handler): Use _Noreturn.
+
+2011-10-07  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'ldexpf'.
+       * modules/ldexpf-tests: New file.
+       * tests/test-ldexpf.c: New file.
+
+       New module 'ldexpf'.
+       * lib/math.in.h (ldexpf): New declaration.
+       * lib/ldexpf.c: New file.
+       * m4/ldexpf.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether ldexpf is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_LDEXPF, HAVE_LDEXPF.
+       * modules/math (Makefile.am): Substitute GNULIB_LDEXPF, HAVE_LDEXPF.
+       * modules/ldexpf: New file.
+       * tests/test-math-c++.cc: Check the declaration of ldexpf.
+       * doc/posix-functions/ldexpf.texi: Mention the new module.
+
+2011-10-06  Bruno Haible  <bruno@clisp.org>
+
+       frexpf: Work around problems on IRIX and mingw.
+       * lib/math.in.h (frexpf): Consider also REPLACE_FREXPF.
+       * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPF.
+       * m4/frexpf.m4 (gl_FUNC_FREXPF_WORKS): New macro.
+       (gl_FUNC_FREXPF): Invoke it. Set REPLACE_FREXPF.
+       * modules/frexpf (Depends-on, configure.ac): Consider REPLACE_FREXPF.
+       * modules/math (Makefile.am): Substitute REPLACE_FREXPF.
+       * doc/posix-functions/frexpf.texi: Mention the IRIX and mingw problems.
+
+2011-10-06  Bruno Haible  <bruno@clisp.org>
+
+       fabsf: Drop assumption about library that defines fabsf.
+       * m4/fabsf.m4 (gl_FUNC_FABSF): Use gl_MATHFUNC macro instead of
+       AC_CHECK_FUNCS.
+       * modules/fabsf (Files): Add m4/mathfunc.m4.
+
+2011-10-06  Bruno Haible  <bruno@clisp.org>
+
+       frexpf: Drop assumption about library that defines frexpf.
+       * m4/mathfunc.m4 (gl_MATHFUNC): Support also the argument types
+       'int *', 'float *', 'long double *', 'float', 'long double'.
+       * m4/frexpf.m4 (gl_FUNC_FREXPF): Use gl_MATHFUNC macro instead of
+       AC_CHECK_FUNCS.
+       * modules/frexpf (Files): Add m4/mathfunc.m4.
+
+       Tests for module 'frexpf'.
+       * modules/frexpf-tests: New file.
+       * tests/test-frexpf.c: New file.
+
+       New module 'frexpf'.
+       * lib/math.in.h (frexpf): New declaration.
+       * lib/frexpf.c: New file.
+       * m4/frexpf.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether frexpf is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPF, HAVE_FREXPF.
+       * modules/math (Makefile.am): Substitute GNULIB_FREXPF, HAVE_FREXPF.
+       * modules/frexpf: New file.
+       * tests/test-math-c++.cc: Check the declaration of frexpf.
+       * doc/posix-functions/frexpf.texi: Mention the new module.
+
+2011-10-06  Bruno Haible  <bruno@clisp.org>
+
+       math: Sort function declarations of math.in.h.
+       * lib/math.in.h (frexp, logb): Move declarations.
+
+2011-10-05  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'modff'.
+       * modules/modff-tests: New file.
+       * tests/test-modff.c: New file.
+
+       New module 'modff'.
+       * lib/math.in.h (modff): New declaration.
+       * lib/modff.c: New file.
+       * m4/modff.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether modff is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_MODFF, HAVE_MODFF.
+       * modules/math (Makefile.am): Substitute GNULIB_MODFF, HAVE_MODFF.
+       * modules/modff: New file.
+       * tests/test-math-c++.cc: Check the declaration of modff.
+       * doc/posix-functions/modff.texi: Mention the new module.
+
+       modf tests: Make test sharper.
+       * tests/test-modf.c (main): Strengthen upper bound.
+
+       modf: Use a .m4 file.
+       * m4/modf.m4: New file.
+       * modules/modf (Files): Add it.
+       (configure.ac): Just invoke gl_FUNC_MODF.
+
+2011-10-05  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'fmodf'.
+       * modules/fmodf-tests: New file.
+       * tests/test-fmodf.c: New file.
+
+       New module 'fmodf'.
+       * lib/math.in.h (fmodf): New declaration.
+       * lib/fmodf.c: New file.
+       * m4/fmodf.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether fmodf is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_FMODF, HAVE_FMODF.
+       * modules/math (Makefile.am): Substitute GNULIB_FMODF, HAVE_FMODF.
+       * modules/fmodf: New file.
+       * tests/test-math-c++.cc: Check the declaration of fmodf.
+       * doc/posix-functions/fmodf.texi: Mention the new module.
+
+       fmod: Use a .m4 file.
+       * m4/fmod.m4: New file.
+       * modules/fmod (Files): Add it.
+       (configure.ac): Just invoke gl_FUNC_FMOD.
+
+2011-10-05  Bruno Haible  <bruno@clisp.org>
+
+       Tests for module 'fabsf'.
+       * modules/fabsf-tests: New file.
+       * tests/test-fabsf.c: New file.
+
+       New module 'fabsf'.
+       * lib/math.in.h (fabsf): New declaration.
+       * lib/fabsf.c: New file.
+       * m4/fabsf.m4: New file.
+       * m4/math_h.m4 (gl_MATH_H): Test whether fabsf is declared.
+       (gl_MATH_H_DEFAULTS): Initialize GNULIB_FABSF, HAVE_FABSF.
+       * modules/math (Makefile.am): Substitute GNULIB_FABSF, HAVE_FABSF.
+       * modules/fabsf: New file.
+       * tests/test-math-c++.cc: Check the declaration of fabsf.
+       * doc/posix-functions/fabsf.texi: Mention the new module.
+
+       fabs: Use a .m4 file.
+       * m4/fabs.m4: New file.
+       * modules/fabs (Files): Add it.
+       (configure.ac): Just invoke gl_FUNC_FABS.
+
+2011-10-05  Jim Meyering  <meyering@redhat.com>
+
+       file-has-acl: revert both recent changes, 80af92af and 95f7c57f
+       * lib/file-has-acl.c: While the 2011-10-03 change does fix the
+       ls -lL regression introduced in coreutils-8.12, it does so at the
+       cost of an additional stat call in the common case.  Besides, now
+       that the kernel change that prompted commit 95f7c57f has been reverted
+       (see https://bugzilla.redhat.com/show_bug.cgi?id=720325#c24)
+       we have no use for commit 95f7c57f, "file-has-acl: use
+       acl_extended_file_nofollow if available".
+
+2011-10-03  Kamil Dudka  <kdudka@redhat.com>
+
+       file-has-acl: revert unintended change in behavior of ls -L
+       * lib/file-has-acl.c (acl_extended_file_wrap): New function,
+       derived from...
+       (file_has_acl): ...code here.  Call it.
+       This problem was introduced with 2011-07-22 commit 95f7c57f,
+       "file-has-acl: use acl_extended_file_nofollow if available".
+       See http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/28538
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       poll: Avoid link errors on MSVC.
+       * m4/poll.m4 (gl_FUNC_POLL): Determine LIB_POLL.
+       * modules/poll (Depends-on): Add sockets.
+       (Link): New section.
+       * NEWS: Mention the change.
+       * modules/poll-tests (Makefile.am): Link test-poll against $(LIB_POLL).
+       * modules/poll-h-c++-tests (Makefile.am): Link test-poll-h-c++ against
+       $(LIB_POLL) instead of $(LIBSOCKET).
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       sys_select tests: Fix link error on MSVC 9.
+       * modules/sys_select-c++-tests (Makefile.am): Link test-sys_select-c++
+       with $(LIB_SELECT) instead of $(LIBSOCKET).
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       sys_select: Fix compilation error on mingw.
+       * lib/sys_select.in.h: On native Windows, include <io.h>.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       wmemset: Support for MSVC.
+       * m4/wmemset.m4 (gl_FUNC_WMEMSET): Use a small test program to test
+       whether wmemset() exists.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       wmemmove: Support for MSVC.
+       * m4/wmemmove.m4 (gl_FUNC_WMEMMOVE): Use a small test program to test
+       whether wmemmove() exists.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       wmemcpy: Support for MSVC.
+       * m4/wmemcpy.m4 (gl_FUNC_WMEMCPY): Use a small test program to test
+       whether wmemcpy() exists.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       wmemcmp: Support for MSVC.
+       * m4/wmemcmp.m4 (gl_FUNC_WMEMCMP): Use a small test program to test
+       whether wmemcmp() exists.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       wmemchr: Support for MSVC.
+       * m4/wmemchr.m4 (gl_FUNC_WMEMCHR): Use a small test program to test
+       whether wmemchr() exists.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       glthread/*, strsignal: Support for MSVC.
+       * lib/glthread/cond.h: Define WIN32_LEAN_AND_MEAN, so as to avoid
+       including <winsock.h> on MSVC 9.
+       * lib/glthread/lock.h: Likewise.
+       * lib/glthread/thread.h: Likewise.
+       * lib/glthread/tls.h: Likewise.
+       * lib/glthread/yield.h: Likewise.
+       * lib/strsignal.c: Include <string.h> first. Don't include <unistd.h>
+       if HAVE_UNISTD_H is false.
+       * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Test for <unistd.h>.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       nonblocking tests: Fix test failure on OpenBSD/SPARC64.
+       * tests/test-nonblocking-socket.h (SOCKET_DATA_BLOCK_SIZE) [OpenBSD]:
+       Set to 100000.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       acl: Fix specification.
+       * lib/file-has-acl.c (file_has_acl): Fix specification.
+
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+       relocatable-lib[-lgpl]: Avoid expensive /proc access on Linux, Cygwin.
+       * lib/relocatable.c (ENABLE_COSTLY_RELOCATABLE): New macro.
+       (compute_curr_prefix, shared_library_fullname,
+       find_shared_library_fullname, get_shared_library_fullname, relocate):
+       Use it together with PIC && INSTALLDIR.
+       Reported by <jojelino@gmail.com>
+       via Charles Wilson <cygwin@cwilson.fastmail.fm>.
+
 2011-10-01  Jim Meyering  <meyering@redhat.com>
 
        maint.mk: adjust a release-related rule not to require use of gzip