Reorder ChangeLog entries to match the order in which the changes went
[gnulib.git] / ChangeLog
index 31c8948..4aaa4e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,87 @@
+2011-07-24  Bruno Haible  <bruno@clisp.org>
+
+       doc: Mention new glibc headers and functions.
+       * doc/glibc-headers/gshadow.texi: New file.
+       * doc/glibc-functions/endsgent.texi: New file.
+       * doc/glibc-functions/fgetsgent.texi: New file.
+       * doc/glibc-functions/fgetsgent_r.texi: New file.
+       * doc/glibc-functions/getsgent.texi: New file.
+       * doc/glibc-functions/getsgent_r.texi: New file.
+       * doc/glibc-functions/getsgnam.texi: New file.
+       * doc/glibc-functions/getsgnam_r.texi: New file.
+       * doc/glibc-functions/putsgent.texi: New file.
+       * doc/glibc-functions/setsgent.texi: New file.
+       * doc/glibc-functions/sgetsgent.texi: New file.
+       * doc/glibc-functions/sgetsgent_r.texi: New file.
+       * doc/glibc-functions/malloc_info.texi: New file.
+       * doc/glibc-functions/preadv.texi: New file.
+       * doc/glibc-functions/pwritev.texi: New file.
+       * doc/glibc-functions/register_printf_modifier.texi: New file.
+       * doc/glibc-functions/register_printf_specifier.texi: New file.
+       * doc/glibc-functions/register_printf_type.texi: New file.
+       * doc/glibc-functions/pthread_attr_getaffinity_np.texi: New file.
+       * doc/glibc-functions/pthread_attr_setaffinity_np.texi: New file.
+       * doc/glibc-functions/pthread_getaffinity_np.texi: New file.
+       * doc/glibc-functions/pthread_getname_np.texi: New file.
+       * doc/glibc-functions/pthread_mutex_consistent_np.texi: New file.
+       * doc/glibc-functions/pthread_mutexattr_getrobust_np.texi: New file.
+       * doc/glibc-functions/pthread_mutexattr_setrobust_np.texi: New file.
+       * doc/glibc-functions/pthread_setaffinity_np.texi: New file.
+       * doc/glibc-functions/pthread_setname_np.texi: New file.
+       * doc/glibc-functions/pthread_sigqueue.texi: New file.
+       * doc/glibc-functions/pthread_timedjoin_np.texi: New file.
+       * doc/glibc-functions/pthread_tryjoin_np.texi: New file.
+       * doc/glibc-functions/qsort_r.texi: New file.
+       * doc/glibc-functions/quick_exit.texi: New file.
+       * doc/glibc-functions/syncfs.texi: New file.
+       * doc/gnulib.texi: Include them.
+       (Glibc gshadow.h, Glibc sys/uio.h): New sections.
+       * doc/posix-functions/psiginfo.texi: Fix info about glibc version.
+       * doc/posix-functions/pthread_mutex_consistent.texi: Likewise.
+       * doc/posix-functions/pthread_mutexattr_getrobust.texi: Likewise.
+       * doc/posix-functions/pthread_mutexattr_setrobust.texi: Likewise.
+       * doc/glibc-functions/execvpe.texi: Likewise.
+
+2011-07-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       ftell: don't include <unistd.h>
+       * lib/ftell.c: Don't include <unistd.h>.  <stdio.h> is now
+       guaranteed to define off_t, and the ftell module depends on the
+       stdio module.
+
+       ftell: do not assume wraparound signed arithmetic
+       * lib/ftell.c: Include <limits.h>.
+       (ftell): Don't assume wraparound signed arithmetic.
+
+2011-07-24  Bruno Haible  <bruno@clisp.org>
+
+       close: No longer depend on module 'fclose'.
+       * modules/close (Depends-on): Remove fclose.
+       * NEWS: Mention the change.
+       Suggested by Sam Steingold <sds@gnu.org>.
+
+2011-07-24  Bruno Haible  <bruno@clisp.org>
+
+       fsusage: Enable large volume support on AIX >= 5.2.
+       * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): If 'struct statvfs64' has a
+       larger f_blocks field than 'struct statvfs', define STAT_STATVFS64
+       instead of STAT_STATVFS.
+       * lib/fsusage.c (get_fs_usage) [STAT_STATVFS64]: Use statvfs64.
+
+       fsusage: Restore previous behaviour on AIX, Cygwin, Interix.
+       * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Enforce a 64-bit struct statvfs
+       f_blocks field only on MacOS X.
+
+       fsusage: Support large volumes on glibc/Hurd, HP-UX, Solaris, MacOS X.
+       * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Require AC_SYS_LARGEFILE.
+       * modules/fsusage (Depends-on): Add largefile.
+
+2011-07-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * README: Modernize discussion of signed integers.
+       Assuming overflow wraparound is no longer safe.
+       Mention ones' complement and signed magnitude.
+
 2011-07-22  Bruno Haible  <bruno@clisp.org>
 
        select tests, pselect tests: Refactor.