* lib/fts.c: Remove unnecessary "defined" in cpp directive.
Include <sys/vfs.h>, not <sys/statfs.h>.
* m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
Include <sys/vfs.h>, not <sys/statfs.h>.
+2008-10-02 Jim Meyering <meyering@redhat.com>
+
+ fts: bug fixes
+ * lib/fts.c: Remove unnecessary "defined" in cpp directive.
+ Include <sys/vfs.h>, not <sys/statfs.h>.
+ * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
+ Include <sys/vfs.h>, not <sys/statfs.h>.
+
2008-10-01 Bruno Haible <bruno@clisp.org>
Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
return (sp->fts_child);
}
-#if defined HAVE_SYS_VFS_H && HAVE_FSTATFS && HAVE_STRUCT_STATFS_F_TYPE
-# include <sys/statfs.h>
+#if HAVE_SYS_VFS_H && HAVE_FSTATFS && HAVE_STRUCT_STATFS_F_TYPE
+# include <sys/vfs.h>
/* FIXME: what about when f_type is not an integral type?
deal with that if/when it's encountered. */
static bool
-#serial 15
+#serial 16
dnl Copyright (C) 2005-2008 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
gl_FUNC_OPENAT
AC_CHECK_FUNCS_ONCE([fstatfs])
- AC_CHECK_HEADERS_ONCE([sys/param.h sys/vfs])dnl
+ AC_CHECK_HEADERS_ONCE([sys/param.h sys/vfs.h])dnl
AC_CHECK_MEMBERS([struct statfs.f_type],,,
[$ac_includes_default
- #include <sys/statfs.h>])
+ #include <sys/vfs.h>])
])