*** empty log message ***
[coreutils.git] / m4 / ftw.m4
blob4b5b0960047a293f2e48a571ecd93f93aefcd945
1 #serial 1
2 # Use the replacement ftw.c if the one in the C library is inadequate or buggy.
3 # For now, we always use the code in lib/ because libc doesn't have the FTW_DCH
4 # or FTW_DCHP that we need.  Arrange to use lib/ftw.h.  And since that
5 # implementation uses tsearch.c/tdestroy, add tsearch.o to the list of
6 # objects and arrange to use lib/search.h if necessary.
7 # From Jim Meyering
9 AC_DEFUN([AC_FUNC_FTW],
11   # prerequisites
12   AC_REQUIRE([jm_FUNC_LSTAT])
13   AC_REQUIRE([AC_HEADER_DIRENT])
14   AC_CHECK_HEADERS(sys/param.h)
15   AC_CHECK_DECLS([stpcpy])
17   # In the event that we have to use the replacement ftw.c,
18   # see if we'll also need the replacement tsearch.c.
19   AC_CHECK_FUNC([tdestroy], , [need_tdestroy=1])
21   AC_CACHE_CHECK([for ftw/FTW_CHDIR that informs callback of failed chdir],
22                  ac_cv_func_ftw_working,
23   [
24   # The following test would fail prior to glibc-2.3.2, because `depth'
25   # would be 2 rather than 4.  Of course, now that we require FTW_DCH
26   # and FTW_DCHP, this test fails even with GNU libc's fixed ftw.
27   mkdir -p conftest.dir/a/b/c
28   AC_RUN_IFELSE([AC_LANG_SOURCE([[
29 #include <string.h>
30 #include <stdlib.h>
31 #include <ftw.h>
33 static char *_f[] = { "conftest.dir", "conftest.dir/a",
34                       "conftest.dir/a/b", "conftest.dir/a/b/c" };
35 static char **p = _f;
36 static int depth;
38 static int
39 cb (const char *file, const struct stat *sb, int file_type, struct FTW *info)
41   if (strcmp (file, *p++) != 0)
42     exit (1);
43   ++depth;
44   return 0;
47 int
48 main ()
50   /* Require these symbols, too.  */
51   int d1 = FTW_DCH;
52   int d2 = FTW_DCHP;
54   int err = nftw ("conftest.dir", cb, 30, FTW_PHYS | FTW_MOUNT | FTW_CHDIR);
55   exit ((err == 0 && depth == 4) ? 0 : 1);
57 ]])],
58                [ac_cv_func_ftw_working=yes],
59                [ac_cv_func_ftw_working=no],
60                [ac_cv_func_ftw_working=no])])
61   rm -rf conftest.dir
62   if test $ac_cv_func_ftw_working = no; then
63     AC_LIBOBJ([ftw])
64     AC_CONFIG_LINKS([$ac_config_libobj_dir/ftw.h:$ac_config_libobj_dir/ftw_.h])
65     # Add tsearch.o IFF we have to use the replacement ftw.c.
66     if test -n "$need_tdestroy"; then
67       AC_LIBOBJ([tsearch])
68       # Link search.h to search_.h if we use the replacement tsearch.c.
69       AC_CONFIG_LINKS(
70         [$ac_config_libobj_dir/search.h:$ac_config_libobj_dir/search_.h])
71     fi
72   fi
73 ])# AC_FUNC_FTW