1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
Description:
Traverse a file hierarchy.
Files:
lib/fts.in.h
lib/fts.c
lib/fts-cycle.c
m4/fts.m4
m4/sys_cdefs_h.m4
Depends-on:
gen-header
alignasof
attribute
c99
calloc-posix
close
closedir
cycle-check
d-ino
d-type
dirfd
fchdir
fcntl
fcntl-h
fcntl-safer
flexmember
free-posix
fstat
fstatat
hash
i-ring
malloc-posix
memmove
openat
openat-h
opendirat
readdir
realloc-posix
bool
stddef-h
stdint-h
configure.ac:
gl_FUNC_FTS
dnl Use this version of fts unconditionally, since the GNU libc and
dnl NetBSD versions have bugs and/or unnecessary limitations.
gl_CONDITIONAL([GL_COND_OBJ_FTS], [true])
Makefile.am:
BUILT_SOURCES += fts_.h
if GL_COND_OBJ_FTS
lib_SOURCES += fts.c
endif
fts_.h: fts.in.h
@NMD@ $(AM_V_GEN)$(MKDIR_P) '%reldir%'
$(gl_V_at)$(SED_HEADER_STDOUT) \
-e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \
$(srcdir)/fts.in.h > $@-t
$(AM_V_at)mv $@-t $@
MOSTLYCLEANFILES += fts_.h fts_.h-t
Include:
"fts_.h"
License:
GPL
Maintainer:
Jim Meyering
|