diff options
author | Jim Meyering <jim@meyering.net> | 2005-12-15 14:47:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-12-15 14:47:36 +0000 |
commit | 049a807bc692a69f0501aa6bc75ed8d01d336220 (patch) | |
tree | 638ad5efc4c97376b4edb73c1482be75e33108b0 | |
parent | 6e7efd30f0ca69c0c62e6f1b0fba04ac1dceeb4a (diff) | |
download | coreutils-049a807bc692a69f0501aa6bc75ed8d01d336220.tar.xz |
.
52 files changed, 302 insertions, 181 deletions
diff --git a/Makefile.in b/Makefile.in index 8c02817e0..299672996 100644 --- a/Makefile.in +++ b/Makefile.in @@ -70,9 +70,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -225,6 +226,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -333,6 +335,7 @@ EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \ .x-sc_no_if_have_config_h \ .x-sc_require_config_h \ announce-gen \ + build-aux/cvsu \ m4/ChangeLog \ old/fileutils/ChangeLog \ old/fileutils/ChangeLog-1997 \ diff --git a/aclocal.m4 b/aclocal.m4 index 7ed69af92..1d415e7ed 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -948,6 +948,7 @@ m4_include([m4/filemode.m4]) m4_include([m4/filenamecat.m4]) m4_include([m4/fnmatch.m4]) m4_include([m4/fpending.m4]) +m4_include([m4/fprintftime.m4]) m4_include([m4/free.m4]) m4_include([m4/fstypename.m4]) m4_include([m4/fsusage.m4]) diff --git a/config.hin b/config.hin index 6af379903..5ec487426 100644 --- a/config.hin +++ b/config.hin @@ -1469,6 +1469,10 @@ /* Define to 1 if your <sys/time.h> declares `struct tm'. */ #undef TM_IN_SYS_TIME +/* Define to 1 if the type of the st_atim member of a struct stat is struct + timespec. */ +#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC + /* Define if tzset clobbers localtime's static buffer. */ #undef TZSET_CLOBBERS_LOCALTIME_BUFFER diff --git a/doc/Makefile.in b/doc/Makefile.in index cfb6c413d..8c35f4035 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -212,6 +213,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/lib/Makefile.in b/lib/Makefile.in index 8f5dba3e4..3823b4e6f 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -54,16 +54,17 @@ DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ exclude.h exitfail.c exitfail.h fchdir-stub.c fchown-stub.c \ fcntl--.h fcntl-safer.h fd-reopen.c fd-reopen.h fd-safer.c \ file-type.c file-type.h fileblocks.c filemode.c filemode.h \ - filenamecat.c filenamecat.h fnmatch.c fopen-safer.c free.c \ - fsusage.c fsusage.h ftruncate.c fts-cycle.c fts.c fts_.h \ - gai_strerror.c getaddrinfo.c getcwd.c getcwd.h getdate.h \ - getdate.y getdelim.c getdelim.h getgroups.c gethostname.c \ - gethrxtime.c gethrxtime.h getline.c getline.h getloadavg.c \ - getndelim2.c getopt.c getopt1.c getpagesize.h getpass.c \ - getpass.h gettime.c gettimeofday.c getugroups.c getusershell.c \ - group-member.c group-member.h hard-locale.c hard-locale.h \ - hash-pjw.c hash-pjw.h hash.c hash.h human.c human.h idcache.c \ - imaxtostr.c intprops.h inttostr.c inttostr.h lchown.c lchown.h \ + filenamecat.c filenamecat.h fnmatch.c fopen-safer.c \ + fprintftime.c fprintftime.h free.c fsusage.c fsusage.h \ + ftruncate.c fts-cycle.c fts.c fts_.h gai_strerror.c \ + getaddrinfo.c getcwd.c getcwd.h getdate.h getdate.y getdelim.c \ + getdelim.h getgroups.c gethostname.c gethrxtime.c gethrxtime.h \ + getline.c getline.h getloadavg.c getndelim2.c getopt.c \ + getopt1.c getpagesize.h getpass.c getpass.h gettime.c \ + gettimeofday.c getugroups.c getusershell.c group-member.c \ + group-member.h hard-locale.c hard-locale.h hash-pjw.c \ + hash-pjw.h hash.c hash.h human.c human.h idcache.c imaxtostr.c \ + intprops.h inttostr.c inttostr.h lchown.c lchown.h \ linebuffer.c linebuffer.h long-options.c long-options.h \ lstat.c lstat.h malloc.c mbchar.c md5.c md5.h memcasecmp.c \ memcasecmp.h memchr.c memcmp.c memcoll.c memcoll.h memcpy.c \ @@ -122,9 +123,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -229,7 +231,7 @@ am__DEPENDENCIES_2 = @ALLOCA@ libcoreutils_a_DEPENDENCIES = $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_2) am_libcoreutils_a_OBJECTS = allocsa.$(OBJEXT) buffer-lcm.$(OBJEXT) \ - fprintftime.$(OBJEXT) full-read.$(OBJEXT) full-write.$(OBJEXT) \ + full-read.$(OBJEXT) full-write.$(OBJEXT) \ localcharset.$(OBJEXT) mbswidth.$(OBJEXT) \ readtokens0.$(OBJEXT) strnlen1.$(OBJEXT) time_r.$(OBJEXT) \ unicodeio.$(OBJEXT) xalloc-die.$(OBJEXT) \ @@ -288,6 +290,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -386,16 +389,17 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ +AM_CFLAGS = $(WARNING_CFLAGS) $(WERROR_CFLAGS) noinst_LIBRARIES = libcoreutils.a LDADD = $(noinst_LIBRARIES) AM_CPPFLAGS = -I.. -I$(srcdir) libcoreutils_a_SOURCES = allocsa.c allocsa.h buffer-lcm.c buffer-lcm.h \ - euidaccess.h exit.h fprintftime.c fprintftime.h full-read.c \ - full-read.h full-write.c full-write.h getaddrinfo.h gettext.h \ - localcharset.c localcharset.h mbchar.h mbswidth.c mbswidth.h \ - mbuiter.h readtokens0.c readtokens0.h strcase.h strnlen1.c \ - strnlen1.h strstr.h time_r.c time_r.h unicodeio.c unicodeio.h \ - verify.h xalloc-die.c xgethostname.c xgethostname.h xmemcoll.c \ + euidaccess.h exit.h full-read.c full-read.h full-write.c \ + full-write.h getaddrinfo.h gettext.h localcharset.c \ + localcharset.h mbchar.h mbswidth.c mbswidth.h mbuiter.h \ + readtokens0.c readtokens0.h strcase.h strnlen1.c strnlen1.h \ + strstr.h time_r.c time_r.h unicodeio.c unicodeio.h verify.h \ + xalloc-die.c xgethostname.c xgethostname.h xmemcoll.c \ xmemcoll.h xstrndup.c xstrndup.h xstrtoimax.c xstrtoumax.c \ printf-args.h printf-parse.h vasprintf.h vasnprintf.h libcoreutils_a_LIBADD = $(LIBOBJS) $(ALLOCA) @@ -506,6 +510,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/filenamecat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fnmatch.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fopen-safer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fprintftime.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/free.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fsusage.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ftruncate.Po@am__quote@ @@ -645,7 +650,6 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/yesno.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allocsa.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffer-lcm.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fprintftime.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-read.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-write.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/localcharset.Po@am__quote@ @@ -912,7 +916,7 @@ charset.alias: config.charset mv t-$@ $@ # Create stdbool.h on systems that lack a working one. stdbool.h: stdbool_.h - cp $(srcdir)/stdbool_.h $@-t + sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > $@-t mv $@-t $@ # We need the following in order to create an <alloca.h> when the system diff --git a/man/Makefile.in b/man/Makefile.in index 1733b422b..38d4b9509 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -202,6 +203,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/src/Makefile.in b/src/Makefile.in index 103c1eeb9..506bd136f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -92,9 +92,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -512,7 +513,8 @@ am__DEPENDENCIES_3 = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ sleep_DEPENDENCIES = $(am__DEPENDENCIES_3) sort_SOURCES = sort.c sort_OBJECTS = sort.$(OBJEXT) -sort_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) +sort_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) split_SOURCES = split.c split_OBJECTS = split.$(OBJEXT) split_LDADD = $(LDADD) @@ -712,6 +714,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -812,11 +815,18 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ bin_SCRIPTS = groups noinst_HEADERS = \ - system.h copy.h cp-hash.h ls.h dircolors.h remove.h \ - chown-core.h fs.h \ - wheel.h wheel-size.h - -EXTRA_DIST = dcgen dircolors.hin tac-pipe.c \ + chown-core.h \ + copy.h \ + cp-hash.h \ + dircolors.h \ + fs.h \ + ls.h \ + remove.h \ + system.h \ + wheel-size.h \ + wheel.h + +EXTRA_DIST = dcgen dircolors.hin rand-isaac.c tac-pipe.c \ groups.sh wheel-gen.pl extract-magic CLEANFILES = $(SCRIPTS) su @@ -846,7 +856,7 @@ ls_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) pr_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) shred_LDADD = $(LDADD) $(LIB_GETHRXTIME) $(LIB_FDATASYNC) vdir_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) -sort_LDADD = $(LDADD) $(POW_LIB) +sort_LDADD = $(LDADD) $(POW_LIB) $(LIB_GETHRXTIME) # for get_date and gettime date_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @@ -991,7 +1001,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 73b58355e..dd4048ac5 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -206,6 +207,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/basename/Makefile.in b/tests/basename/Makefile.in index 16a1e38a3..34c484f75 100644 --- a/tests/basename/Makefile.in +++ b/tests/basename/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/chgrp/Makefile.in b/tests/chgrp/Makefile.in index abbd701bd..26839cef3 100644 --- a/tests/chgrp/Makefile.in +++ b/tests/chgrp/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/chmod/Makefile.in b/tests/chmod/Makefile.in index 523d61a4e..a264a8fd1 100644 --- a/tests/chmod/Makefile.in +++ b/tests/chmod/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/chown/Makefile.in b/tests/chown/Makefile.in index 353cafdee..c60fe39e7 100644 --- a/tests/chown/Makefile.in +++ b/tests/chown/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/cp/Makefile.in b/tests/cp/Makefile.in index 3b424029c..8c8045598 100644 --- a/tests/cp/Makefile.in +++ b/tests/cp/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/cut/Makefile.in b/tests/cut/Makefile.in index 8c31fbf97..734032716 100644 --- a/tests/cut/Makefile.in +++ b/tests/cut/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/dd/Makefile.in b/tests/dd/Makefile.in index 549f86a1a..487d71cfa 100644 --- a/tests/dd/Makefile.in +++ b/tests/dd/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/dircolors/Makefile.in b/tests/dircolors/Makefile.in index 6a4c67595..aae2b39f1 100644 --- a/tests/dircolors/Makefile.in +++ b/tests/dircolors/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/du/Makefile.in b/tests/du/Makefile.in index cb6baebf4..5cf1995d0 100644 --- a/tests/du/Makefile.in +++ b/tests/du/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/expr/Makefile.in b/tests/expr/Makefile.in index 426ac92b3..952b8849b 100644 --- a/tests/expr/Makefile.in +++ b/tests/expr/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/factor/Makefile.in b/tests/factor/Makefile.in index bb92efa93..18608bba9 100644 --- a/tests/factor/Makefile.in +++ b/tests/factor/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/fmt/Makefile.in b/tests/fmt/Makefile.in index 9fab4a02f..d772b0869 100644 --- a/tests/fmt/Makefile.in +++ b/tests/fmt/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/head/Makefile.in b/tests/head/Makefile.in index e90f86e49..e6e66fae1 100644 --- a/tests/head/Makefile.in +++ b/tests/head/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/install/Makefile.in b/tests/install/Makefile.in index e78bea050..6e60a2826 100644 --- a/tests/install/Makefile.in +++ b/tests/install/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/join/Makefile.in b/tests/join/Makefile.in index fe826228b..6d8097790 100644 --- a/tests/join/Makefile.in +++ b/tests/join/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/ln/Makefile.in b/tests/ln/Makefile.in index 5a77c86aa..2c19a3a46 100644 --- a/tests/ln/Makefile.in +++ b/tests/ln/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/ls-2/Makefile.in b/tests/ls-2/Makefile.in index 9863b7ed6..6e2edb8ec 100644 --- a/tests/ls-2/Makefile.in +++ b/tests/ls-2/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/ls/Makefile.in b/tests/ls/Makefile.in index 64001dc16..f645c61af 100644 --- a/tests/ls/Makefile.in +++ b/tests/ls/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/md5sum/Makefile.in b/tests/md5sum/Makefile.in index 4fd288695..b29925efb 100644 --- a/tests/md5sum/Makefile.in +++ b/tests/md5sum/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/misc/Makefile.in b/tests/misc/Makefile.in index 90af7c50c..2ee3bfcd9 100644 --- a/tests/misc/Makefile.in +++ b/tests/misc/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -306,6 +308,9 @@ TESTS_ENVIRONMENT = \ PROG=$$tst TESTS = \ + stat-printf \ + stat-fmt \ + sort-rand \ sha224sum \ sha256sum \ sha384sum \ @@ -316,7 +321,6 @@ TESTS = \ pwd \ date-sec \ paste-no-nl \ - stat-fmt \ expand \ fold \ nohup \ diff --git a/tests/mkdir/Makefile.in b/tests/mkdir/Makefile.in index 01fc36ea3..4407e278a 100644 --- a/tests/mkdir/Makefile.in +++ b/tests/mkdir/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/mv/Makefile.in b/tests/mv/Makefile.in index 6f79312c0..a914f8f0e 100644 --- a/tests/mv/Makefile.in +++ b/tests/mv/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/od/Makefile.in b/tests/od/Makefile.in index eb5c04dc7..c6f65b448 100644 --- a/tests/od/Makefile.in +++ b/tests/od/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/pr/Makefile.in b/tests/pr/Makefile.in index 9d0f36cf9..231400ebe 100644 --- a/tests/pr/Makefile.in +++ b/tests/pr/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/readlink/Makefile.in b/tests/readlink/Makefile.in index 7afc980be..a4d62fe67 100644 --- a/tests/readlink/Makefile.in +++ b/tests/readlink/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/rm/Makefile.in b/tests/rm/Makefile.in index 2f8d392bb..48a3f5487 100644 --- a/tests/rm/Makefile.in +++ b/tests/rm/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/rmdir/Makefile.in b/tests/rmdir/Makefile.in index 07bf5885f..5deef30dc 100644 --- a/tests/rmdir/Makefile.in +++ b/tests/rmdir/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/seq/Makefile.in b/tests/seq/Makefile.in index 6399b2867..510f244df 100644 --- a/tests/seq/Makefile.in +++ b/tests/seq/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/sha1sum/Makefile.in b/tests/sha1sum/Makefile.in index 2438f258f..98ccdc1c8 100644 --- a/tests/sha1sum/Makefile.in +++ b/tests/sha1sum/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/shred/Makefile.in b/tests/shred/Makefile.in index 3c8defd47..639747087 100644 --- a/tests/shred/Makefile.in +++ b/tests/shred/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/sort/Makefile.in b/tests/sort/Makefile.in index b58fbd7a0..7aad29f00 100644 --- a/tests/sort/Makefile.in +++ b/tests/sort/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -316,8 +318,9 @@ n10b.X n11a.I n11a.X n11b.I n11b.X 01a.I 01a.X 02a.I 02a.X 02b.I 02b.X 02c.I \ 18b.I 18b.X 18c.I 18c.X 18d.I 18d.X 18e.I 18e.X 19a.I 19a.X 19b.I 19b.X 20a.I \ 20a.X 21a.I 21a.X 21b.I 21b.X 21c.I 21c.X 21d.I 21d.X 21e.I 21e.X 21f.I 21f.X \ 21g.I 21g.X 22a.I 22a.X 22b.I 22b.X no-file1.X o-no-file1.X create-empty.X \ -neg-nls.I neg-nls.X nul-nls.I nul-nls.X use-nl.I use-nl.X o2.I o2.X nul-tab.I \ -nul-tab.X +neg-nls.I neg-nls.X nul-nls.I nul-nls.X use-nl.I use-nl.X o2.I o2.X \ +incompat1.I incompat1.X incompat2.I incompat2.X incompat3.I incompat3.X \ +incompat4.I incompat4.X nul-tab.I nul-tab.X run_gen = n1.O n1.E n2.O n2.E n3.O n3.E n4.O n4.E n5.O n5.E n6.O n6.E n7.O \ n7.E n8a.O n8a.E n8b.O n8b.E n9a.O n9a.E n9b.O n9b.E n10a.O n10a.E n10b.O \ @@ -337,7 +340,9 @@ n10b.E n11a.O n11a.E n11b.O n11b.E 01a.O 01a.E 02a.O 02a.E 02b.O 02b.E 02c.O \ 20a.E 21a.O 21a.E 21b.O 21b.E 21c.O 21c.E 21d.O 21d.E 21e.O 21e.E 21f.O 21f.E \ 21g.O 21g.E 22a.O 22a.E 22b.O 22b.E no-file1.O no-file1.E o-no-file1.O \ o-no-file1.E create-empty.O create-empty.E neg-nls.O neg-nls.E nul-nls.O \ -nul-nls.E use-nl.O use-nl.E o2.O o2.E nul-tab.O nul-tab.E +nul-nls.E use-nl.O use-nl.E o2.O o2.E incompat1.O incompat1.E incompat2.O \ +incompat2.E incompat3.O incompat3.E incompat4.O incompat4.E nul-tab.O \ +nul-tab.E EXTRA_DIST = Test.pm $x-tests $(explicit) $(maint_gen) noinst_SCRIPTS = $x-tests diff --git a/tests/stty/Makefile.in b/tests/stty/Makefile.in index 96820762b..b51c04fd3 100644 --- a/tests/stty/Makefile.in +++ b/tests/stty/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/sum/Makefile.in b/tests/sum/Makefile.in index c5901516e..5a10d807e 100644 --- a/tests/sum/Makefile.in +++ b/tests/sum/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tac/Makefile.in b/tests/tac/Makefile.in index 5ef2ba65a..493d181f6 100644 --- a/tests/tac/Makefile.in +++ b/tests/tac/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tail-2/Makefile.in b/tests/tail-2/Makefile.in index c1065474d..e3e499180 100644 --- a/tests/tail-2/Makefile.in +++ b/tests/tail-2/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tail/Makefile.in b/tests/tail/Makefile.in index 90c5da8e2..8e6312595 100644 --- a/tests/tail/Makefile.in +++ b/tests/tail/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tee/Makefile.in b/tests/tee/Makefile.in index 81d2c8f91..cfeba7a26 100644 --- a/tests/tee/Makefile.in +++ b/tests/tee/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/test/Makefile.in b/tests/test/Makefile.in index 3d24f7cbd..54a32e91e 100644 --- a/tests/test/Makefile.in +++ b/tests/test/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/touch/Makefile.in b/tests/touch/Makefile.in index c76d5974d..c232ac1ea 100644 --- a/tests/touch/Makefile.in +++ b/tests/touch/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tr/Makefile.in b/tests/tr/Makefile.in index 4c79ca1c1..92e173675 100644 --- a/tests/tr/Makefile.in +++ b/tests/tr/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/tsort/Makefile.in b/tests/tsort/Makefile.in index 39a21f913..bdb2495e9 100644 --- a/tests/tsort/Makefile.in +++ b/tests/tsort/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/unexpand/Makefile.in b/tests/unexpand/Makefile.in index 4f66b0b54..8da644bbd 100644 --- a/tests/unexpand/Makefile.in +++ b/tests/unexpand/Makefile.in @@ -63,9 +63,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -197,6 +198,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/uniq/Makefile.in b/tests/uniq/Makefile.in index 03785e0df..77f501a88 100644 --- a/tests/uniq/Makefile.in +++ b/tests/uniq/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/tests/wc/Makefile.in b/tests/wc/Makefile.in index 195ed5a5c..f915e9577 100644 --- a/tests/wc/Makefile.in +++ b/tests/wc/Makefile.in @@ -64,9 +64,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/file-type.m4 $(top_srcdir)/m4/fileblocks.m4 \ $(top_srcdir)/m4/filemode.m4 $(top_srcdir)/m4/filenamecat.m4 \ $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/fstypename.m4 \ - $(top_srcdir)/m4/fsusage.m4 $(top_srcdir)/m4/ftruncate.m4 \ - $(top_srcdir)/m4/fts.m4 $(top_srcdir)/m4/getaddrinfo.m4 \ + $(top_srcdir)/m4/fprintftime.m4 $(top_srcdir)/m4/free.m4 \ + $(top_srcdir)/m4/fstypename.m4 $(top_srcdir)/m4/fsusage.m4 \ + $(top_srcdir)/m4/ftruncate.m4 $(top_srcdir)/m4/fts.m4 \ + $(top_srcdir)/m4/getaddrinfo.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getgroups.m4 $(top_srcdir)/m4/gethostname.m4 \ @@ -199,6 +200,7 @@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GNU_PACKAGE = @GNU_PACKAGE@ GREP = @GREP@ +HAVE__BOOL = @HAVE__BOOL@ HELP2MAN = @HELP2MAN@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ |