# HG changeset patch # User Jim Meyering # Date 1222790161 -7200 # Node ID 134a4ebe4407dae4773445aece4943b9853aef56 # Parent 86950e198e320af8252cbff0c2cec81e15e2988f fts.m4: correct the test for statfs.f_type * m4/fts.m4 (gl_FUNC_FTS_CORE): Include when checking for statfs.f_type. diff -r 86950e198e32 -r 134a4ebe4407 ChangeLog --- a/ChangeLog Tue Sep 30 08:34:56 2008 +0200 +++ b/ChangeLog Tue Sep 30 17:56:01 2008 +0200 @@ -1,3 +1,9 @@ +2008-09-30 Jim Meyering + + fts.m4: correct the test for statfs.f_type + * m4/fts.m4 (gl_FUNC_FTS_CORE): Include + when checking for statfs.f_type. + 2008-09-15 Simon Josefsson tests: avoid some compiler warnings diff -r 86950e198e32 -r 134a4ebe4407 m4/fts.m4 --- a/m4/fts.m4 Tue Sep 30 08:34:56 2008 +0200 +++ b/m4/fts.m4 Tue Sep 30 17:56:01 2008 +0200 @@ -1,4 +1,4 @@ -#serial 14 +#serial 15 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, @@ -25,5 +25,7 @@ AC_CHECK_FUNCS_ONCE([fstatfs]) AC_CHECK_HEADERS_ONCE([sys/param.h sys/vfs])dnl - AC_CHECK_MEMBERS([struct statfs.f_type]) + AC_CHECK_MEMBERS([struct statfs.f_type],,, + [$ac_includes_default + #include ]) ])