+2011-02-04 Eric Blake <eblake@redhat.com>
+
+ fdopendir: detect FreeBSD bug
+ * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Detect bug.
+ * doc/posix-functions/fdopendir.texi (fdopendir): Document it.
+
2011-02-04 Paul Eggert <eggert@cs.ucla.edu>
stdbool: do not define HAVE_STDBOOL_H
This function does not reject non-directory file descriptors on some
platforms:
GNU/Hurd.
+@item
+This function mistakenly closes non-directory file descriptors on some
+platforms:
+FreeBSD 8.1.
@end itemize
Portability problems not fixed by Gnulib:
-# serial 4
+# serial 5
# See if we need to provide fdopendir.
dnl Copyright (C) 2009-2011 Free Software Foundation, Inc.
[AC_RUN_IFELSE([AC_LANG_PROGRAM([[
#include <dirent.h>
#include <fcntl.h>
+#include <unistd.h>
#if !HAVE_DECL_FDOPENDIR
extern DIR *fdopendir (int);
#endif
-]], [int fd = open ("conftest.c", O_RDONLY);
- if (fd < 0) return 2;
- return !!fdopendir (fd);])],
+]], [int result = 0;
+ int fd = open ("conftest.c", O_RDONLY);
+ if (fd < 0) result |= 1;
+ if (fdopendir (fd)) result |= 2;
+ if (close (fd)) result |= 4;
+ return result;])],
[gl_cv_func_fdopendir_works=yes],
[gl_cv_func_fdopendir_works=no],
[gl_cv_func_fdopendir_works="guessing no"])])