summaryrefslogtreecommitdiffstats
path: root/contrib/libreadline/posixdir.h
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2004-10-18 07:02:42 +0000
committerache <ache@FreeBSD.org>2004-10-18 07:02:42 +0000
commit0a8076ac56fc245cdfb48a1ac83798a3d6086c30 (patch)
treef78c1227a8143a263e4974d6bf25cf0ccde0e716 /contrib/libreadline/posixdir.h
parent001407b3a64c7fac1489a2ad6eeb2d23254b3e19 (diff)
downloadFreeBSD-src-0a8076ac56fc245cdfb48a1ac83798a3d6086c30.zip
FreeBSD-src-0a8076ac56fc245cdfb48a1ac83798a3d6086c30.tar.gz
Virgin import of GNU Readline 5.0
Diffstat (limited to 'contrib/libreadline/posixdir.h')
-rw-r--r--contrib/libreadline/posixdir.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/contrib/libreadline/posixdir.h b/contrib/libreadline/posixdir.h
index 505e279..91f6d96 100644
--- a/contrib/libreadline/posixdir.h
+++ b/contrib/libreadline/posixdir.h
@@ -25,7 +25,11 @@
#if defined (HAVE_DIRENT_H)
# include <dirent.h>
-# define D_NAMLEN(d) (strlen ((d)->d_name))
+# if defined (HAVE_STRUCT_DIRENT_D_NAMLEN)
+# define D_NAMLEN(d) ((d)->d_namlen)
+# else
+# define D_NAMLEN(d) (strlen ((d)->d_name))
+# endif /* !HAVE_STRUCT_DIRENT_D_NAMLEN */
#else
# if defined (HAVE_SYS_NDIR_H)
# include <sys/ndir.h>
@@ -42,11 +46,11 @@
# define D_NAMLEN(d) ((d)->d_namlen)
#endif /* !HAVE_DIRENT_H */
-#if defined (STRUCT_DIRENT_HAS_D_INO) && !defined (STRUCT_DIRENT_HAS_D_FILENO)
+#if defined (HAVE_STRUCT_DIRENT_D_INO) && !defined (HAVE_STRUCT_DIRENT_D_FILENO)
# define d_fileno d_ino
#endif
-#if defined (_POSIX_SOURCE) && (!defined (STRUCT_DIRENT_HAS_D_INO) || defined (BROKEN_DIRENT_D_INO))
+#if defined (_POSIX_SOURCE) && (!defined (HAVE_STRUCT_DIRENT_D_INO) || defined (BROKEN_DIRENT_D_INO))
/* Posix does not require that the d_ino field be present, and some
systems do not provide it. */
# define REAL_DIR_ENTRY(dp) 1
OpenPOWER on IntegriCloud