changeset 12601:c858b5287964

dirent: Document the last fix.
author Bruno Haible <bruno@clisp.org>
date Thu, 07 Jan 2010 23:19:38 +0100
parents 742a202062e7
children e6c17971ef92
files ChangeLog doc/posix-headers/dirent.texi lib/dirent.in.h
diffstat 3 files changed, 9 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-07  Bruno Haible  <bruno@clisp.org>
+
+	dirent: Document the last fix.
+	* doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
+
 2010-01-07  Bruno Haible  <bruno@clisp.org>
 
 	stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
--- a/doc/posix-headers/dirent.texi
+++ b/doc/posix-headers/dirent.texi
@@ -7,6 +7,9 @@
 
 Portability problems fixed by Gnulib:
 @itemize
+@item
+The type @code{ino_t} is missing on some platforms:
+glibc 2.8 and others.
 @end itemize
 
 Portability problems not fixed by Gnulib:
--- a/lib/dirent.in.h
+++ b/lib/dirent.in.h
@@ -26,7 +26,7 @@
 #ifndef _GL_DIRENT_H
 #define _GL_DIRENT_H
 
-/* Grab ino_t.  */
+/* Get ino_t.  Needed on some systems, including glibc 2.8.  */
 #include <sys/types.h>
 
 /* The definition of GL_LINK_WARNING is copied here.  */