'cvs status' should ignore Makefile.in
[findutils.git] / ChangeLog
blob9fff185268f8bc8f888099b372d93015ba443058
1 2004-10-17  James Youngman <jay@gnu.org>
3         * NEWS: Brought up to date.
5         * import-gnulib.sh:
6         Use xalloc-die module from gnulib, since that has now been split out
8         * find/parser.c:
9         Check fnmatch() when other predicates that rely on fnmatch() are used.
11         * find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup
13 2004-10-16  James Youngman <jay@gnu.org>
15         * import-gnulib.sh:
16         Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.
18         * locate/updatedb.sh:
19         Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
20         names instead.  See
21         http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
22         which indicates that support for signal numbers is optional, while
23         support for signal names is mandatory.
25         * configure.in:
26         Indicate that this is the CVS version (once again) now that findutils
27         4.2.0 has been released.
29         * ChangeLog, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
30         findutils 4.1.20 check-in for tagging
32 2004-10-02  James Youngman <jay@gnu.org>
34         * po/Makefile.in.in:
35         Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.
37         * NEWS: Brought up to date, organised more clearly, and tidied up.
39         * NEWS: brought up to date with recent changes
41         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
42         Added new option --changecwd to updatedb so that the 'cd /' which it does can be compatible with the requirements of the test suite.  Specifically, the test suite relies on being able to use relative pathnames
44         * find/pred.c:
45         Fixed usage of human_readable() in '%k' format specifier to fix a bug
46         reported by Dmitry V. Levin (arguments to human_readable() were
47         specified in the wrong order, which resulted in a floating-point
48         error).
50 2004-08-08  James Youngman <jay@gnu.org>
52         * locate/updatedb.sh:
53         cd to / to avoid inability to examine the current directory if we're
54         invoked via cron (and hence in root's home directory for example).
56         * doc/find.texi, find/find.1:
57         Deprecate -path and -ipath in favour of -wholename and -iwholename
59         * find/parser.c:
60         As per RMS's suggestion, deprecate -path and -ipath in favour of
61         -wholename and -iwholename.
63         * locate/locate.c:
64         Fixed Savannah bug #9923, in which get_short() returns large positive
65         ints when it should be returning negative shorts.
67         * xargs/xargs.1:
68         Applied documentation improvements suggested by Dan Jacobson
69         <jidanni@jidanni.org>.
71         * xargs/xargs.c:
72         Don't check size_of_environment against arg_max since that causes the
73         test suite to fail.
75         * xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option
77 2004-05-03  James Youngman <jay@gnu.org>
79         * find/find.1:
80         document the various suffixes for -size and also the new 
81         option -ignore_readdir_race
83         * locate/locate.c:
84         Fixes Savannah bug #8623 (failure to check consistency of data 
85         read from locate database)
87         * locate/updatedb.sh:
88         Resolves Savannah bug 4380, that updatedb generates an empty
89         database if one of the commands fails
91         * NEWS: Talk about -ignore_readdir_race
93         * doc/find.texi:
94         Documented -ignore_readdir_race and -noignore_readdir_race
96         * find/find.c:
97         -ignore_readdir_race should have no effect if the reason for the
98          failure of stat(2) was anything other than ENOENT.
100         * find/defs.h, find/find.c, find/parser.c:
101         Fixed Savannah bug 4391 (readdir race condition leading to 
102         spurious error messages)
104 2004-04-24  James Youngman <jay@gnu.org>
106         * README-CVS: Corrected the instructions for getting gnulib via CVS.
108 2004-04-13  James Youngman <jay@gnu.org>
110         * doc/find.texi:
111         Actioned Savannah bug #8558 (find complains when it tries to recurse
112         into directories that it had removed).
114 2004-03-13  James Youngman <jay@gnu.org>
116         * ChangeLog: Updated from checkin comments.
118         * find/find.c:
119         Oops, there is no access to the predicate name table if DEBUG is 
120         not #defined.
122         * find/parser.c:
123         Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
124         the failure to handle large arguments to -mtime.  The existing code
125         does careful computation and then bungs the value into a time_t, which
126         ruins all our careful effort.  The new code is not a great
127         improvement.  We just check the result to detect overflow, rather than
128         actually avoiding the overflow.
130         * find/find.c:
131         Fixed Debian bug #185202 by checking for any trailing predicates after
132         the top-level invocation of get_expr() has done its work.
134         * locate/locate.1, xargs/xargs.1:
135         Fixed Debian bug 175372, inappropriate 'L' suffixes on manual 
136         page section indicators
138         * find/find.1:
139         Removed "L" suffixes from manual page section indicators, to fix
140         Debian bug 175372.
142         * debian/updatedb.conf:
143         Updated with list of filesystems from current Debian release.  This
144         includes devfs, for example.
146         * xargs/xargs.1:
147         Modified documentation of "-s" option to take into account the fix for
148         Debian bug #176201.
150         * xargs/xargs.c:
151         Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
152         reading a patch offered by Bob Prolux and implementing something
153         substantially similar myself.
155 2004-01-03  James Youngman  <jay@gnu.org>
157         * xargs/xargs.c:
158         Indicate that prep_child_for_exec() fixes Savannah bug #3992.
160         * xargs/xargs.c:
161         Attach the stdin of xargs' child process to /dev/null so that if it
162         tries to read from its stdin it doesn't consume any of the list of
163         files that xargs is trying to use.
165         * find/find.1:
166         Documented that the -regex option follows Gnulib's re_match() 
167         implementation.
169         * NEWS, locate/locate.c: Applied Savannah patch 2108
171         * xargs/xargs.c: Applied Savannah patch 1500
173         * find/find.1, doc/find.texi:
174         Improved the documentation for the %k and %b format specifiers to
175         -printf (Savannah bug #5034).  Also pointed out that this handling is
176         different to that used by the "b" and "k" suffixes with "-size".
178         * find/find.1: Improved the documentation for %k (Savannah bug #5034).
180         * find/find.1:
181         Improved the documentation for -print0 in the manpage, fixing Debian
182         bug 111143.
184         * README-CVS, find/pred.c, lib/listfile.c:
185         Brought up-to-date with change in gnulib's human.c - we no longer 
186         use human_readable_inexact(), because it is no longer provided.
188 2003-08-08  James Youngman  <jay@gnu.org>
190         * find/find.1:
191         Documented the fact that -printf also supports the '\0' escape code.
192         Added "STANDARDS CONFORMANCE" section.
194 2003-08-02  James Youngman  <jay@gnu.org>
196         * find/find.1:
197         Explain that braces are not special when performing filename matching
198         with -name.
200         * find/find.1:
201         added example of the use of -exec to the EXAMPLES section
203         * find/fstype.c, locate/locate.c:
204         Savannah bug #4295 - implicit declarations of ctype.h functions
206         * locate/locate.c:
207         Savannah bug #4279 - missing newline on locate help message
209         * find/find.1, xargs/xargs.1:
210         Improved discussion of the -print0 option of find and the -0 option of xargs
212 2003-06-26  James Youngman  <jay@gnu.org>
214         * import-gnulib.sh:
215         Remove reference to nonexistent module "basename" ("dirname" exists
216         and we already use that).
218 2003-06-21  James Youngman  <jay@gnu.org>
220         * doc/find.texi:
221         Indicate that xargs stops immediately if a command exits with status 255
223         * xargs/xargs.1:
224         Document the fact that xargs exits immediately with an error message
225         if the command it executes exits with a status of 255.
227 2003-06-18  James Youngman  <jay@gnu.org>
229         * find/find.1:
230         Indicate that -fls and friends always create their output file
232 2003-06-16  James Youngman  <jay@gnu.org>
234         * ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
235         Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.
237         * AUTHORS: Identify the current maintainer.
239         * TODO: Removed the TODO items which have now been done.
241         * THANKS: Added Bruno Haible and Bob Prolux.
243         * xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
244         (mbstrstr): New function.
245         (do_insert): Use it instead of strstr.
247         * config.guess, config.sub:
248         Use config.guess and config.sub from automake
250         * find/fstype.c:
251         Bruno Haible: (fstype_to_string) Don't define this function if
252         HAVE_F_FSTYPENAME_IN_STATFS is defined.
254         * configure.in:
255         Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
256         because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.
258         * doc/find.texi, find/find.1:
259         Applied patch 1498 (documenting the backslash escape sequence)
261         * locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.
263         * doc/find.texi:
264         Applied Savannah patch #1547 (document the fact that printf
265         field-width specifiers are supported).
267         * xargs/xargs.c:
268         Applied Savannah patch #1499 (adds final newline to usage message).
270 2003-06-14  James Youngman  <jay@gnu.org>
272         * NEWS, configure.in:
273         Updated version number to 4.2.0-CVS [not ready for release yet]
275         * configure.in, doc/.cvsignore, doc/Makefile.in, find/.cvsignore, find/Makefile.am, find/Makefile.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/.cvsignore, find/testsuite/Makefile.in, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/.cvsignore, lib/Makefile.am, lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c, lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h, lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h, lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c, lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c, lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h, lib/idcache.c, lib/listfile.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c, lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h, lib/modetype.h, lib/nextelem.c, lib/pathmax.h, lib/posix/.cvsignore, lib/posix/Makefile.am, lib/posix/Makefile.in, lib/posix/regex.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c, lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c, lib/strftime.c, lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c, lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c, lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c, locate/.cvsignore, locate/Makefile.am, locate/Makefile.in, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/.cvsignore, locate/testsuite/Makefile.in, locate/testsuite/config/unix.exp, locate/updatedb.sh, m4/.cvsignore, m4/ChangeLog, m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README, m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4, m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4, m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4, m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4, m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4, m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4, m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4, m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4, m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4, m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/xstrtoumax.m4, po/POTFILES.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po, xargs/.cvsignore, xargs/Makefile.am, xargs/Makefile.in, xargs/testsuite/.cvsignore, xargs/testsuite/Makefile.in, xargs/testsuite/config/unix.exp, xargs/xargs.c, .cvsignore, Makefile.am, Makefile.in, NEWS, README-CVS, aclocal.m4, config.h.in, configure:
276         Merged changes made for version 4.1.20 onto the trunk
278         * README-CVS, find/defs.h, find/find.c, find/pred.c, lib/listfile.c:
279         Update code to reflect gnulib's changes to the arguments of human_readable().   Drop support for "FIND_BLOCK_SIZE" environment variable
281 2003-05-26  James Youngman  <jay@gnu.org>
283         * lib/wait.h: re-added wiat.h.
285         * configure.in, lib/Makefile.am:
286         Corrections to allow compilation on MacOS X
288         * po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po, xargs/.cvsignore, xargs/Makefile.am, xargs/testsuite/.cvsignore, xargs/xargs.c, .cvsignore, doc/.cvsignore, find/.cvsignore, find/Makefile.am, find/defs.h, find/testsuite/.cvsignore, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/.cvsignore, lib/listfile.c, lib/nextelem.c, locate/.cvsignore, locate/Makefile.am, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/testsuite/.cvsignore, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po:
289         Changes to allow compilation on non-GNU systems (i.e. for the macros that gnulib decides to #define to be effective)
291 2003-05-24  James Youngman  <jay@gnu.org>
293         * import-gnulib.sh, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
294         also need stpcpy (e.g. for Solaris)
296         * intl/dcigettext.c:
297         plural_lookup: don't use a variable called "index", because we may
298         have done "#define strchr index", in which case using a variable
299         called index will prevent us calling strchr(p, ch) in the same scope.
301         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, lib/Makefile.am, lib/listfile.c, lib/modetype.h, lib/nextelem.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/config/unix.exp, locate/updatedb.sh, xargs/testsuite/config/unix.exp, xargs/xargs.c:
302         Updated copyright years and the address of the FSF
304         * aclocal.m4, config.h.in, configure:
305         Removed files that are generated from other files (e.g. configure)
307         * NEWS: Updated NEWS file for 4.1.20.
309         * configure.in, lib/Makefile.am, po/POTFILES.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
310         Updates to the i18n files to ensure that 'make dist' succeeds
312         * lib/posix/.cvsignore, lib/posix/Makefile.am,
313         lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
314         lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
315         lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
316         lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
317         lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
318         lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
319         locate/Makefile.am, locate/Makefile.in, locate/locate.c,
320         locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
321         m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
322         m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
323         m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
324         m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
325         m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
326         m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
327         m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
328         m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
329         m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
330         m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
331         m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
332         m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
333         m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
334         xargs/Makefile.in, xargs/testsuite/Makefile.in,
335         find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
336         lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
337         lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
338         lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
339         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
340         lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
341         lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
342         lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
343         lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
344         lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
345         lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
346         lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
347         find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
348         Updated to work with current version of gnulib
350         * import-gnulib.sh: New file.
352         * config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
353         Updated to work with current version of gnulib
355         * README-CVS: New file.
357         * Makefile.am, Makefile.in, README-CVS, aclocal.m4:
358         Updated to work with current version of gnulib
360 2001-06-09  kevin  <kevin@excession.spiral-arm.org>
362         * intl/plural.c:
363         Changes the location of bison.simple after running bison on local
364         machine
366         * ChangeLog: *** empty log message ***
368         * Makefile.in, aclocal.m4, config.h.in, configure,
369         doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
370         lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
371         locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
372         xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38
374         * ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.
376         * configure.in: * configure.in: add tr to ALL_LINGUAS.
378         * intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
379         intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
380         intl/locale.alias, intl/ngettext.c, intl/plural.y,
381         intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38
383         * intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
384         intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***
386         * m4/jm-macros.m4:
387         * jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
388         AM_ICONV, which is imported from gettext-0.10.38.  removed
389         jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
390         imported from gettext-0.10.38.
392         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
394         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
396         * po/ChangeLog:         * cat-id-tbl.c: Remove file.
398         * po/de.po, po/es.po, po/et.po, po/fr.po:
399         * fr.po, et.po, es.po, de.po: updated translations to
400         findutils-4.1.7.
402         * po/tr.po: * tr.po:  New Turkish translation.
404         * m4/ChangeLog: *** empty log message ***
406         * intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
407         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
408         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
409         intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
410         intl/localealias.c, intl/plural.c, intl/textdomain.c,
411         intl/ChangeLog, intl/Makefile.in, intl/VERSION,
412         intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38
414         * m4/Makefile.am:
415         reflects addition of codeset.m4 from gettext-0.10.38, automatically
416         generated.
418         * m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
419                 m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
420                 progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
421                 glibc21.m4, gettext.m4, codeset.m4: updated from
422                 gettext-0.10.38.
424         * ChangeLog: *** empty log message ***
426         * THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>
428         * m4/ChangeLog, locate/testsuite/.cvsignore,
429         xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
430         doc/.cvsignore: *** empty log message ***
432         * m4/jm-macros.m4:      * jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME
434         * doc/Makefile.in: *** empty log message ***
436         * doc/Makefile.am:
437         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
438         created by dvips.  This should be taken care of by automake, but
439         the code is commented out.
441 2001-06-09  Kevin Dalley  <kevin@seti.org>
443         * ABOUT-NLS: updated from gettext-0.10.38.
445         * configure.in: add tr to ALL_LINGUAS.
447         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
448         created by dvips.  This should be taken care of by automake, but
449         the code is commented out.
451 2001-06-05  Kevin Dalley  <kevin@seti.org>
453         * locate/updatedb.sh: replace "whoami" with "id -u" when testing
454         for root.
456 2001-06-04  Kevin Dalley  <kevin@seti.org>
458         * locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
459         instance of DIST_SUBDIRS.
461         * locate/Makefile.am (install-data-hook): changed install target
462         to install-data-hook, which still installs other files.
464         * doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
465         probably be handled by automake.
467         * doc/mdate-sh: removed file in doc directory.  It now exists only
468         in top_srcdir, but this changed required a patch to automake.
470 2001-05-20  Kevin Dalley  <kevin@seti.org>
472         * Version 4.1.7
473         
474         * lib/Makefile.am (EXTRA_DIST): add strcasecmp.c
476         * find/testsuite/Makefile.am (EXTRA_DIST): new tests:
477         find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
478         find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo
480         * configure.in: update to 4.1.7
482         * config.sub, config.guess: upgraded to recent versions of
483         config.sub and config.guess.
485         * locate/updatedb.sh: Add space to "#! /bin/sh"
487         * configure.in: Add id to ALL_LINGUAS
489         * lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
490         (libfind_a_SOURCES): getline.[ch] removed since getline.c is not
491         always needed.
493 2001-05-20  Lionel CONS <lionel.cons@cern.ch>
495         * find/find.c: Fixed security holes.  1.  There is a race
496         condition between the lstat() to detect a symbolic link and the
497         actual chdir().  2.  An attacker can move directories while find
498         is _inside_ so that chdir(..) goes out of the intended file tree.
500         * lib/modetype.h: support for Solaris door files is added.
502         * lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN
504         * find/pred.c (pred_type): -D option (for Solaris door files) is
505         added.
507         * find/parser.c (insert_type):  -D option (for Solaris door files)
508         is added. 
510         * find/find.1: -D option (for Solaris door files) is documented
512         * doc/find.texi (Type): -D option (for Solaris door files) is
513         documented
515 2001-05-02  Kevin Dalley  <kevin@seti.org>
517         * configure.in: Change AC_CHECK_MEMBERS to conform to new
518         autoconf.  Add Danish.
520 2001-01-20  Kevin Dalley  <kevin@seti.org>
522         * doc/find.texi (Adding Tests): Place space in "#! /bin/sh".
524         * find/testsuite/find.gnu/prune-default-print.xo,
525         find/testsuite/find.gnu/prune-default-print.exp: test for "find
526         . -prune" which passes after changes.  Also see name-opt.exp.
528         * find/util.c (get_new_pred):
529         * find/tree.c (set_new_parent):
530         * find/parser.c (various parse functions):
531         * find/find.c (main): 
532         (default_prints): new function 
533         * find/defs.h (struct predicate): added no_default_print
534         side_effects are no separated from no_default_print.  predicates
535         which cause side effects should not be reordered (optimized).
536         predicates which cause printing should have printing turned off.
537         Printing statements also cause side effects.
539 2000-10-29  Bruno Haible <haible@ilog.fr>
541         * locate/code.c (main), doc/find.texi: improve handling of
542         non-ASCII characters used old format.
544 2000-10-21  Paul Eggert  <eggert@twinsun.com>
546         If open + fchdir fails, fall back on xgetcwd + chdir.
547         The old code tested for this at compile-time,
548         but SunOS 4.1.4 fchdir can fail at run-time.
550         * find/defs.h (fchdir): Define to -1 if not available.
551         * find/defs.h (starting_dir, starting_desc):
552         Always declare.  starting_dir now points to const.
553         * find/find.c (starting_dir, starting_desc): Likewise.
554         * find/find.c (starting_dir):
555         Now "." if starting_desc is nonnegative, for benefit of diagnostics.
556         (main, process_top_path, process_dir):
557         If open + fchdir fails, fall back on xgetcwd + chdir.
558         * find/pred.c (launch): Likewise.
560 2000-10-20  Kevin Dalley  <kevin@seti.org>
562         * xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
563         find/parser.c (parse_help): add bug reporting address to help
565 2000-10-13  Kevin Dalley  <kevin@seti.org>
567         * depcomp, lib/depcomp: depcomp moved from lib to .
569 2000-10-11  Kevin Dalley  <kevind@rahul.net>
571         * Version 4.1.6
572         
573         * locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
574         testsuite. 
576 2000-10-10  Bruno Haible <haible@ilog.fr>
578         * lib/Makefile.am (libfind_a_SOURCES): added yesno.c
580         * lib/yesno.c, lib/rpmatch.c: new files.
582         * find/pred.c: use function yesno().
584 2000-10-10  Kevin Dalley  <kevind@rahul.net>
585         
586         * locate/testsuite/Makefile.am: Added missing \ at end of
587         EXTRA_DIST lines.
589         * locate/testsuite/locate.gnu/ignore_case3.xo,
590         locate/testsuite/locate.gnu/ignore_case3.exp,
591         locate/testsuite/locate.gnu/ignore_case2.exp,
592         locate/testsuite/locate.gnu/ignore_case1.xo,
593         locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
594         inside tmp directory, add subdir directory under tmp.
596         * locate/testsuite/config/unix.exp: clean up tmp after test is
597         finished. 
599 2000-10-10  Kevin Dalley  <kevind@rahul.net>
601         * locate/testsuite/config/unix.exp (Repository): 
603 2000-10-09  Kevin Dalley  <kevind@rahul.net>
605         * lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
606         fnmatch which works with Solaris.
608         * locate/testsuite/config/unix.exp: dejagnu unix.exp
610         * xargs/testsuite/config/unix.exp: remove temporary file
612         * xargs/xargs.c: spelling correction
614         * m4/prereq.m4: updated and changed some macros
616         * m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
617         kd_FUNC_FNMATCH_CASE_REPL 
619         * m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
620         m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
621         m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.
623         * m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4
625         * locate/testsuite/locate.gnu/ignore_case3.xo,
626         locate/testsuite/locate.gnu/ignore_case3.exp,
627         locate/testsuite/locate.gnu/ignore_case2.xo,
628         locate/testsuite/locate.gnu/ignore_case2.exp,
629         locate/testsuite/locate.gnu/ignore_case1.xo,
630         locate/testsuite/locate.gnu/ignore_case1.exp,
631         locate/testsuite/config/unix.exp: tests related to "--ignore-case"
632         option.
634         * locate/testsuite/locate.gnu: testsuite directory
636         * locate/testsuite/Makefile.am (Repository): 
638         * locate/testsuite: add directory for locate testsuite
640         * po/findutils.pot: updated file
642         * po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
643         po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
644         updated various po files.
646         * locate/updatedb.sh: export TMPDIR, which is used by child
647         processes.
649         * locate/locate.1, locate/locate.c:  add "--ignore-case" option.
651         * locate/Makefile.am: add testsuite subdirectory
653         * find/testsuite/find.gnu/perm.xo,
654         find/testsuite/find.gnu/perm.exp,
655         find/testsuite/find.gnu/name-opt.xo,
656         find/testsuite/find.gnu/name-opt.exp: added test suites
658         * configure.in: add locate/testsuite/Makefile
660         * doc/find.info*: removed from repository
662         * doc/find.texi: add documentation for "-i" option.
664         * aclocal.m4: removed from repository, as it is generated.
666         * find/pred.c: fixes problem with "find -perm -0100".
668         * lib/lstat.c, lib/stat.c: removed from repository.  These files
669         are generated from lib/xstat.in.
671 2000-08-24  Kevin Dalley  <kevind@rahul.net>
673         * doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.
675 2000-05-13  Kevin Dalley  <kevind@rahul.net>
677         * find/tree.c (opt_expr): move iname and ipath to the front of the
678         list of arguments.
680         * doc/find.texi (Directories): changed wording for "-prune".
682         * find/parser.c (parse_prune): set side_effects to true, to
683         prevent prune from being moved in opt_expr.
685 2000-04-12  Kevin Dalley  <kevind@rahul.net>
687         * doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.
689         * lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
690         since getstr is needed.
692         * Version 4.1.5
693         
694         * po/POTFILES.in: updated list of files, updated po files.
697 2000-04-02  Paul Eggert  <eggert@twinsun.com>
699         Add support for large files, and port to Solaris 8 and earlier
700         versions.
702         * lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
703         HAVE_DECL_GETENV.
705         * lib/strftime.c (my_strftime): Make sure we call the system
706         strftime, not ourselves, when invoking the underlying strftime.
707         
708         * m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.
710         * m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
711         require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
712         jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
713         jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
714         jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
715         replace strcasecmp, dup2, gethostname, getusershell, stime,
716         strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
717         strverscmp, memchr, memmove.  Do not check for declaration of
718         lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
719         POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
720         (jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
721         struct stat.st_blksize.
723         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
724         in shell rather than using putenv, which isn't portable.
725         
726         * COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
727         lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
728         m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
729         m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
730         m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
731         to latest version from sh-utils-2.0g.
733         * config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
734         lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
735         lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
736         lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
737         m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
738         m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
739         m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.
741         * lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
742         lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
743         unreleased version of GNU tar (between 1.13.17 and 1.13.18).
745         * lib/basename.h, lib/waitpid.c: New files, taken from same
746         version of GNU tar.
747         
748         * lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.
750         * lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
751         GNU grep 2.4.2.
753         * lib/strftime.c: Sync to textutils 2.0e.
754         
755         * acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
756         m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
757         m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
758         m4/utimes.m4: Remove these files; no longer needed.
760         * configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
761         jm_AC_TYPE_UINTMAX_T): Add.
762         (CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
763         FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
764         we don't need acconfig.h.
765         (AC_CHECK_TYPE): Add ssize_t.
766         (AC_REPLACE_FUNCS): Add waitpid.
767         (AC_CHECK_FUNCS): Remove basename.
768         (AC_FUNC_MKTIME): Remove.
769         (LIBOBJS): Add no-ops to work around automake 1.4 bug.
770         (AC_OUTPUT): Add lib/posix/Makefile.
772         * find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
773         <stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
774         include these files, and to include "defs.h" first (since config.h
775         must be included first).
776         (CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
777         S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
778         MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
779         (enum permissions_type): New enum.
780         (struct long_val.negative): New member.
781         (struct long_val.l_val): Now uintmax_t, not unsigned long.
782         (struct size_val.size): Likewise.
783         (struct perm_val): New type.
784         (struct predicate.perm): Now struct perm_val, not unsigned long.
785         (struct predicate.type): Now mode_t, not unsigned long.
786         (list_file): New parameters current_time, output_block_size.
787         All callers changed.
788         (savedir, basename): Remove decls.
789         (output_block_size, start_time): New extern vars.
791         * find/find.c: Include <human.h>, <savedir.h>.
792         (output_block_size, start_time): New vars.
793         (main): Initialize them.  No need to check for negative st_size,
794         since savedir now does it for us.
796         * find/fstype.c: Include "dirname.h".
797         (xatoi): Remove.
798         (filesystem_type_uncached): Use xstrtoumax instead of xatoi.
799         
800         * find/parser.c: Include "xstrtol.h".
801         (get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
802         parse_size, parse_used, insert_time, insert_num): Compute using
803         uintmax_t, not unsigned long.
804         (parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
805         Keep track of whether time was negative before converting it to an
806         unsigned type.
807         (parse_daystart): Don't assume that localtime succeeds; e.g. it
808         can fail with 64-bit time_t and 32-bit tm_year.
809         (parse_perm, insert_type): Compute using mode_t, not unsigned
810         long.
811         (insert_type): Use symbolic constants like MODE_ALL instead of
812         traditional ones like 07777.  Set new kind member to indicate
813         permissions type, instead of using unportable magic numbers.
814         (make_segment): We will use human_readable to convert most numeric
815         values, so simplify the cases.
816         (get_num_days): Write in terms of get_num, to avoid duplicated
817         code.
818         (insert_time, insert_num): When debugging, convert large values to
819         uintmax_t and output with %ju.
820         (get_num): Use xstrtoumax to do the real work.
822         * find/pred.c: Include "basename.h", "human.h".
823         (DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
824         fileutils.
825         (ST_NBLOCKS): Replace with fileutils defn.
826         (MAX): New macro.
827         (ctime_format): New function.
828         (pred_fprintf, format_date): Use human_readable to output large
829         numbers portably.
830         (pred_fprintf): Use ctime_format to output ctime-style dates.  Use
831         base_name to compute the base name of a path.  With %m, output the
832         mode portably using traditional numbers, even if the host uses
833         some other numbering scheme.
834         (pred_iname, pred_name): basename -> base_name.
835         (pred_perm): Use new kind member to deduce permissions type,
836         instead of relying on magic numbers.
837         (pred_size): Compute using uintmax_t, not unsigned long.  Avoid
838         overflow if file size is near the maximum.
839         (pred_type): Compute using mode_t, not unsigned long.
840         (launch): Use waitpid, not wait.  Check for EINTR.
841         (format_date): Don't assume that localtime succeeds.
843         * find/util.c (basename): Remove; we now use base_name.
845         * lib/Makefile.am (SUBDIRS): New macro.
846         (libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
847         basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
848         Remove error.h, error.c, getline.c.
849         (EXTRA_DIST): Add mktime.c, regex.c.
851         * lib/listfile.c: Include "human.h".
852         (alloca): Declare, or include appropriate files to declare.
853         (DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
854         (convert_blocks): Remove.
855         (list_file): New current_time and output_block_size args.
856         Revamp quite a bit, to handle large numbers correctly
857         and to match GNU ls behavior more closely.
859         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
860         largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
861         strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
862         decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
863         uptime.m4, utimbuf.m4, utime.m4, utimes.m4.
865         * xargs/xargs.c (wait_for_proc): Retry wait if it fails with
866         errno == EINTR.
868 2000-04-05  Kevin Dalley  <kevind@rahul.net>
870         * xargs/Makefile.am:  add ansi2knr
872         * xargs/xargs.c: add macros PARAMS rather than P_.  Add
873         prototypes.
875         * po/POTFILES: new file listing all POFILES.
877         * m4/gl.po, m4/et.po: new files
879         * m4/Makefile.am.in:  updated file
881         * m4: update directory
883         * locate/Makefile.am: create updatedb from updatedb.sh
885         * locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
886         by updatedb.sh
888         * locate/frcode.c, locate/code.c, locate/bigram.c: add macros
889         PARAMS rather than P_.  Add prototypes.
891         * lib/xstat.in: new file
893         * lib/Makefile.am: update to latest versions of library files.
895         * find/testsuite/Makefile.am: add CLEANFILES
897         * find/util.c: remove definition of basename
898         
899         * find/util.c, find/tree.c, find/pred.c, find/parser.c,
900         find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
901         than P_, for consistency, change to prototypes
903         * find/Makefile.am: Add prototypes and ansi2knr
905         * configure.in: add Galition and Estonian languages.
906         Miscellaneous other fixes.
907         
909 2000-03-11  Kevin Dalley  <kevind@rahul.net>
911         * lib/basename.c: Add file from libit.
912         * lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
913         no longer replaceable.
915         * find/util.c: Remove definition of basename, which is now in
916         lib/basename.c (as base_name).
917         * find/pred.c: Use base_name, not basename.
918         * find/defs.h: Likewise.
920         * configure.in : Don't replace basename.  Now we use only
921         base_name.
923 2000-02-26  Kevin Dalley  <kevind@rahul.net>
925         * Version 4.1.4
926         
927         * lib/strtoul.c: added to distribution
928         
929         * configure.in: added strtoul to AC_REPLACE_FUNCS
931         * configure.in: added jm_CHECK_ALL_TYPE
933 2000-02-23  Kevin Dalley  <kevind@rahul.net>
935         * po/ChangeLog: removed, merged with top-level ChangeLog.
936         
937         * po/de.po: new version of German file.
938         
939         * po/gl.po, po/et.po: new languages, Estonian and Galician.
941         * locate/updatedb.sh (PRUNEFS): enclose paths in quotes
943 2000-02-17  Kevin Dalley  <kevind@rahul.net>
945         * po/it.po: new version of Italian file.
946         
947         * locate/updatedb.sh (prunefs_exp): have sed statement use '*'
948         rather than the often unsupported '+'.
950 2000-02-13  Kevin Dalley  <kevind@rahul.net>
952         * configure.in: removed AC_ARG_PROGRAM, which is already in
953         AM_INIT_AUTOMAKE. 
955         * locate/Makefile.am (updatedb), locate/updatedb.sh: add
956         transforms of find, frcode, bigram, and code back into
957         updatedb.sh, which were accidentally removed.
959 2000-02-12  Kevin Dalley  <kevind@rahul.net>
961         * lib/wait.h: updated address.
963 2000-01-26  Kevin Dalley  <kevind@rahul.net>
965         * Version 4.1.3
967         * acconfig.h: added internationalization.
969         * intl/*: copied from tar-1.13.17.
971         * locate/Makefile.am, locate/locate.c, locate/code.c:
972         internationalized file.
974         * locate/frcode.c, locate/bigram.c: include headers from ../lib
975         directory.
977         * xargs/Makefile.am, xargs/xargs.c: internationalized directory.
979 2000-01-26  Kevin Dalley  <kevind@rahul.net>
981         * POTFILES.in: added list of files with translatable strings.
983         * de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
984         ru.po, sv.po: New, slightly out of date, files imported from the
985         Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
986         German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
987         Portuguese.
990 2000-01-24  Kevin Dalley  <kevind@rahul.net>
992         * lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
993         works with current version of gettext.
995         * lib/getline.h : added declaration of getstr.
996         * lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
997         standard compilation. Added internationalization.
998         * find/Makefile.am (INCLUDES): corrected -I options for building
999         in other directories.
1000         (LDADD): changes for internationalization.
1002         * configure.in (ALL_LINGUAS): added internationalization. 
1003         getline.c is always compiled and linked, because of getstr.
1004         AM_GNU_GETTEXT
1006         * Makefile.am: 
1007         (DISTCLEANFILES): added intl/libintl.h
1008         (AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
1009         (SUBDIRS): added intl and po
1011         * acconfig.h: added internationalization values
1013         * THANKS: added thanks file for gnits compatibility.
1015 2000-01-22  Kevin Dalley  <kevind@rahul.net>
1017         * added intl directory.
1019         * Added internationalization, only with slightly out of date po
1020         files for many locales.
1022 2000-01-18  Kevin Dalley  <kevind@rahul.net>
1024         * Version 4.1.2
1025         
1026         * locate/Makefile.am: remove creation of updatedb, since it is now
1027         made by configure
1029         * configure.in: updatedb is now created by configure.
1031         * xargs/Makefile.am: added testsuite to xargs directory
1033         * locate/updatedb.in: updatedb is now created by configure
1035         * locate/frcode.c, locate/code.c, locate/bigram.c: change return
1036         from main to int.  Replace getstr with getline, where possible.
1038         * locate/Makefile.am: place frcode, code, bigram in
1039         libexec_PROGRAMS
1041         * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
1042         lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
1043         lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
1044         lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
1045         lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
1046         lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
1047         lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
1048         lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
1049         lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
1050         lib/dirname.c, lib/alloca.c: updated to newer version of file from
1051         fileutils.
1053         * find/version.c: version number is now automatically generated by
1054         configure.
1056         * find/fstype.c (filesystem_type_uncached): fixes bug described as
1057         follows:  When 'find' looks for a fstype, it parses the /etc/mtab
1058         until it finds the good line. But, if there is, before the good
1059         line, a line whose mountpoint is unreachable, it fails.
1061         * doc/texinfo.tex: updated to newer version
1063         * doc/find.texi: added version.texi, fixed a few documentation bugs.
1065         * configure.in: new m4 features.
1067         * Makefile.am: moved testsuite to below corresponding directories
1068         find and xargs.
1070         * acconfig.h: updated to match new m4 files.
1072         * m4: added m4 directory, largely borrowed from Jim Meyering's
1073         fileutils.
1075 2000-01-17  Kevin Dalley  <kevind@rahul.net>
1077         * doc/find.texi (Multiple Files): placed missing xargs in examples
1079         * find/testsuite/find.gnu/depth.exp: added find tests to test
1080         "-depth" bug.
1082         * doc/find.texi: include version.texi for automatic determination
1083         of version number, update bug report email address to
1084         bug-findutils@gnu.org.
1085         (Combining Primaries With Operators): add indices for " ,", "()",
1086         "-a", "-o", etc.
1088 2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1090         * find/tree.c (opt_expr): Never rearrange the arguments of the
1091         comma operator, since it is not commutative.  Remove useless
1092         assignment.2
1093         
1094 2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
1095         
1096         * find/find.c (process_path): fix problem with "-depth" which is
1097         tested in depth.exp test.
1099 1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>
1101         * find/fstype.c (filesystem_type_uncached): a stat failure with
1102         EACCESS will ignore this file system keep on looking.  Patch
1103         suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.
1105 1999-08-15  Mark Kettenis  <kettenis@gnu.org>
1107         * xargs/xargs.c (LONG_MAX): Define if necessary.
1108         (main): If ARG_MAX is -1 (that is sysconf
1109         (_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
1110         that case, use LONG_MAX as the limit.
1111         
1112 1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>
1114         * find/version.c: version string is now set by config.h
1116 1999-08-08  Kevin Dalley  <kevin@seti.org>
1118         * Version 4.1.1
1120         * README-alpha: added alpha README file
1122         * find/defs.h: move lstat declarations into defs.h
1124         * xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
1125         lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
1126         Makefile.am: update for automake-1.4
1128 1999-08-02  Kevin Dalley  <kevind@rahul.net>
1130         * AUTHORS: added file listing AUTHORS
1132         * lib/Makefile.am: modified code for EXTRA sources
1133         
1134 1999-01-30  Kevin Dalley  <kevind@rahul.net>
1136         * added const to declaration of basename, which should satisfy
1137         Linux as well as Hurd (fixes bug #31325).
1138         
1139 1998-12-04  Kevin Dalley  <kevind@rahul.net>
1140         
1141         * lib/nextelem.c: removed declaration of strdup and free, which
1142         meets GNU coding standards and allows compilation on more
1143         platforms.
1144         
1145         * find.texi: corrected explanation of -amin option which described
1146         hours instead of minutes
1147         
1148 1998-09-26  Kevin Dalley  <kevind@rahul.net>
1149         
1150         * lib/getline.c: fix getstr so that it correctly handles long file
1151         paths
1152         
1153 1998-09-20  Kevin Dalley  <kevind@rahul.net>
1154         
1155         * removed more function declarations to meet GNU coding standards
1156         
1157 1998-08-30  Kevin Dalley  <kevind@rahul.net>
1158         
1159         * lib/nextelem.c: removed declaration of strdup and free, which
1160         meets GNU coding standards and allow compilation on sparc
1161         
1162         * corrected explanation of -amin option which described hours
1163         instead of minutes
1164         
1165 1998-02-27  Kevin Dalley  <kevind@rahul.net>
1166         
1167         * locate/locate.c: add --existing option to locate, which only
1168         prints the names of files which still exist
1169         
1170 1998-02-08  Kevin Dalley  <kevind@rahul.net>
1171         
1172         * locate/locate.c: corrected get_short so that it correctly
1173         returns negative numbers.
1174         
1175         * remove declarations of various string functions.  Removing the
1176         declarations almost matches the GNU Coding Standards.
1177         
1178 1997-03-03  Kevin Dalley  <kevind@rahul.net>
1179         
1180         * xargs/xargs.c: xargs fixed to prevent occasional core dumping.
1181         
1182 1997-01-11  Kevin Dalley  <kevind@rahul.net>
1183         
1184         * locate/updatedb.sh: add --localuser option to updatedb, which
1185         allows find to be run as nobody, while allowing database file to
1186         be created as root, change suggested by
1187         <Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
1188         
1189 1996-12-28  Kevin Dalley  <kevind@rahul.net>
1190         * added PRUNEFS as variable in updatedb and --prunefs as option to
1191         updatedb
1193 1996-05-27  Kevin Dalley  <kevind@rahul.net>
1194         
1195         * updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
1196         is root
1197 1996-04-27  Kevin Dalley  <kevind@rahul.net>
1199         * lib/getline.c (getstr): verify that nchars_avail is *really*
1200         greater than 0; set *n to a large enough number, stops some core
1201         dumping
1203 Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
1205         * Version 4.1.
1207         * locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.
1209         * Makefile.am (distname): Change distribution name from find to
1210           findutils.
1212         * testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.
1214         * locate/Makefile.am (CLEANFILES): Fix typo.
1216 Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
1218         * The big 4 0.
1220         * lib/listfile.c find/defs.h (list_file): Take a stream arg.
1221         * find/pred.c (pred_ls): pass it.
1222         * find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.
1224 Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
1226         * find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
1227         Flack.
1229         * find/parser.c (insert_fprintf): Warn about unrecognized \ and %
1230         sequences.
1232 Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
1234         * find/defs.h parser.c pred.c tree.c util.c: Globally change
1235         "victim" to "primary".
1237         * find/parser.c (insert_fprintf): For 'c' format, don't lose the
1238         need_stat information.  From Chapman Flack.
1240         * doc/find.texi perm.texi: New files.
1241         * configure.in: Configure the doc directory.
1243         * find/pred.c (pred_regex): Check that the regex matched the whole
1244         file name.
1246 Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
1248         * find/find.c (main): Tell what the invalid arg is.
1249         From Kaveh Ghazi.
1251 Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1253         * find/parser.c: Add -mount as an alias for -xdev.
1254         From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).
1256         * lib/modechange.c: Make umask_value unsigned short.
1258         * xargs/xargs.c: Use symbolic constants in longopts.
1259         From Chapman Flack.
1261 Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1263         * xargs/xargs.c (main, read_line, read_string, do_exec): Pass 
1264           along the lengths of the args.
1265           (main): Calculate length of replace_pat.
1266           (push_arg, do_insert): Use those lengths instead of calculating
1267           them. 
1269 Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
1271         * locate/updatedb.sh Makefile.in: Add substitutions to get
1272           the transformed program names.
1274         * xargs/xargs.c: Put back the global variables for now.
1275         Rename some variables.  Increase default args_per_exec.
1276         Use boolean where applicable.
1277         (main): Reduce default arg_max by 2048 for POSIX.2.
1278         (read_string): Don't check EOF string.
1279         (read_line, read_string): Take initial args size into account.
1281 Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1283         * find/pred.c (launch): Use pid_t.
1285         * xargs/xargs.c (EOF_STR): Define and use.
1286         [__STDC__]: Declare xrealloc and xmalloc using void *.
1287         * find/defs.h: Likewise.
1289         * find/defs.h: Only declare stpcpy if !HAVE_STPCPY.
1291         * xargs/xargs.c: Replace most global variables with structure
1292           pointers passed as arguments.  Use pid_t.
1293         * lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
1294         * configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.
1296         * xargs/xargs.c: Improve paging performance and memory
1297           fragmentation by building command arguments in a pre-allocated
1298           buffer and re-implementing the child pid list as an expandable
1299           array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
1301 Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
1303         * xargs/xargs.c [__STDC__]: Prototype declarations.
1305 Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
1307         * find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.
1309 Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
1311         * find/fstype.c (fstype_to_string): Add more cases.  Use
1312           INITMOUNTNAMES if defined.
1313         * find/defs.h: Change boolean typedef from char to int.
1314         * configure.in: Check for mktime.
1316 Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)
1318         * configure.in: Add AC_HEADER_STAT.
1319         * lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.
1321         * find/pred.c: Move the inclusion of defs.h ahead of the first
1322           test of _POSIX_VERSION.
1324         * lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.
1326 Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1328         * configure.in: Add AC_CONFIG_HEADER.
1329         * find/*.c locate/*.c xargs/*.c: Include config.h.
1330         * locate/updatedb.sh: Add --version; --old -> --old-format.
1332 Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1334         * find/* [__STDC__]: Prototype declarations.
1336         * locate/updatedb.sh: Account for renaming code and frcode.
1338         * find/find.c (process_path): Store dev and ino of directories in
1339           current branch to avoid symlink loops.  From DJ Delorie
1340           <dj@ctron.com>.
1341           (process_dir): If following symlinks, don't cd to ..; instead,
1342           cd to the starting directory and then to the parent directory.
1343           (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
1344           (process_top_path) [HAVE_FCHDIR]: Use it.
1345         * find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
1346         * defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
1347         * configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.
1349 Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1351         * lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
1352         From Andreas Luik <luik@isa.de>.
1354 Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1356         * locate/locate.c (last_literal_end): Dynamically allocate enough
1357           memory for the subpattern.
1359 Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1361         * locate/locate.c (locate): Warn if database is >8 days old.
1362         From Ian Lance Taylor.
1364         * xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
1365           default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
1366         * find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
1367           calls before error.  error does it, and doesn't trash errno.
1368           From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
1370         * find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
1371           number on HPUX.  From Andreas Luik <luik@isa.de>.
1372           (filesystem_type_uncached): Don't cache unknown file system
1373           types.  From casper@fwi.uva.nl (Casper Dik).
1375         * locate/updatedb.sh: Collect results in temp file and rename it
1376           atomically.  From Andreas Luik <luik@isa.de>.
1378         * xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
1379           Meyering.
1381         * find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
1382           Emulate strchr and strrchr with index and rindex, not vice versa.
1384         Remove man directory; move man pages to the directories of the
1385         programs they document.
1387         * locate/frcode.c: Renamed from code.c.
1388         * locate/frcode.c (put_short): Renamed from puthalfword.
1389         * locate/locate.c (get_short): Renamed from gethalfword.
1390         (last_literal_end): Renamed from patprep.
1391         (locate): Recognize old-format databases too.
1392         * locate/locatedb.h: Add defines for old-format databases.
1393         * locate/bigram.c locate/code.c: Put back programs to create
1394         old-format databases.
1395         * locate/updatedb.sh: Take --old option to use them.
1397 Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
1399         * configure.in: Update for Autoconf v2.
1400         * find/pred.c lib/savedir.c: Use new symbols for dir header.
1401         * locate/updatedb.sh: Add --help option.
1403 Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)
1405         * man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.
1407 Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1409         * bigram.c: File removed.
1410         * getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
1411         * updatedb.sh: Take command line options.
1412         Don't do bigram compression.
1413         * code.c, locate.c: Don't do bigram compression.
1414         Write and read counts in network byte order.
1415         Handle arbitrarily long paths.
1416         Use a magic number at the start of the databases.
1418 Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1420         * Makefile.in (config.status): Run config.status --recheck, not
1421         configure, to get the right args passed.
1423 Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1425         * listfile.c (list_file): Print inode as a long.
1427 Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1429         * fstype.c [STDC_HEADERS]: Include stdlib.h.
1431         * Move unistd.h include from parser.c and pred.c to defs.h.
1433 Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1435         * updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
1436         Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.
1438 Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1440         * pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.
1442 Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1444         * fstype.c (in_afs) [AFS]: New function, derived from code by
1445         Sanjay Ramamurthy <ramams@rpi.edu>.
1446         (filesystem_type_uncached) [AFS]: Call it if the fs type is
1447         otherwise unknown.
1449         * parser.c (parse_size): Recognize b and w suffixes for dd
1450         compatibility. 
1452         * code.c (puthalfword): New function.
1453         (main): Call it.
1454         * locate.c (gethalfword): New function.
1455         (locate): Call it.
1456         From ifado!wb@germany.eu.net (Wilhelm B. Kloke).
1458         * listfile.c: Include pathmax.h.
1459         (get_link_name): Always allocate PATH_MAX + 1 bytes for
1460         readlink buffers.
1461         * pred.c (pred_fprintf, insert_lname): Call get_link_name.
1463         * fstype.c (filesystem_type, filesystem_type_uncached),
1464         listfile.c (list_file): Take an arg for the path to access.
1465         * pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.
1467         * find.c (process_dir): Renamed from scan_directory.
1469         Changes from jrs@world.std.com (Rick Sladkey) to chdir into
1470         subdirectories instead of using string concatenation, for speed:
1471         * find.c (process_top_path): New function.
1472         (main): Call it, and xgetcwd.
1473         (process_path, scan_directory): Take new arg, the pathname
1474         relative to ".".  Use it and pass it on.
1475         * pred.c (pred_and, pred_comma, pred_negate, pred_or,
1476         pred_xtype, pred_fprintf, pred_empty, insert_lname):
1477         access rel_pathname instead of pathname.
1478         (launch): chdir to starting_dir.
1479         * defs.h: Declare rel_pathname and starting_dir.
1480         * find.c: Define them.
1482         * xgetcwd.c: New file.
1484         * updatedb.sh: Recognize -fstype NFS as well as nfs.
1485         * locate.c (patprep): Skip trailing character classes correctly.
1486         From luik@pharao.stgt.sub.org (Andreas Luik).
1488         * parser.c (parse_group): Make gid a gid_t, not short or int.
1489         (parse_nogroup): Cast gid to unsigned when using it as an array index.
1490         (parse_user, parse_nouser): Similar changes for uid.
1491         * defs.h: Use uid_t and gid_t.
1493         * parser.c (parse_help): New function.
1494         (parse_table):  Add --version, -help, and --help options.
1495         Rename struct parser_table_t to struct parser_table.
1496         (parse_version): Exit after printing message, on
1497         stdout not stderr.
1499         * xargs.c, locate.c (main, usage): Add --version and --help
1500         options.
1502 Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)
1504         * parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
1505         * xargs.c: Ditto.
1507 Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
1509         * pred.c (pred_fprintf): If curdepth is 0, don't nuke
1510         segment->text; nuke cp.
1512 Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
1514         * Version 3.8.
1516 Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)
1518         * pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
1519         (pred_table): Add them.
1520         (insert_lname): New function.
1521         (pred_lname): Call it.
1522         * parser.c (parse_ilname, parse_iname, parse_ipath,
1523         parse_iregex): New functions.
1524         (parse_table): Add them.
1525         (insert_regex): New function.
1526         (parse_regex): Call it.
1528         * fstype.c (filesystem_type): Cache previous result.
1529         (filesystem_type_uncached): New function.
1530         pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.
1532         * parser.c: Don't define const.
1534         * fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
1535         MOUNT_PC for 386bsd.
1537 Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1539         * parser.c (parse_regex): If ignore_case, set up a translate
1540         table for the regex.
1542         * defs.h: Include string.h or strings.h.
1543         * find.c fstype.c parser.c pred.c util.c: Don't.
1545         * nextelem.c [index]: Don't redefine.
1547 Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
1549         * xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
1550         status, not the wait status value.  From
1551         Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.
1553         * parser.c (make_segment, insert_fprintf), pred.c
1554         (pred_fprintf): Add '%F' to print filesystem type.
1556         * parser.c (parse_fprintf): Check if second arg is missing.
1558 Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
1560         * pred.c (pred_fprintf): For %P, don't move past an assumed
1561         slash if the ARGV element ends with one, because in that case
1562         we didn't add one.
1564         * parser.c (parse_printf): Check for missing arg.
1565         From smj@cats.com (Steve James).
1567         * parser.c: Add #ifdef around atol decl for Linux.
1569 Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)
1571         * defs.h: Remove dcl of process_path.
1572         * find.c: Put dcl of process_path here.  Make a few functions
1573         and file-scope variables static.
1574         * parser.c, tree.c: Declare most functions static.
1576         * locate.c: Use `required_argument' macro in dcl of longopts.
1577         * bigram.c, code.c, locate.c, xargs.c: Make most functions and
1578         file-scope variables static.
1580         * parser.c, xargs.c: Guard ctype.h macros with isascii.
1582         * find.c: Add declarations for opt_expr and mark_stat.
1583         * tree.c (set_new_parent): Add empty default clause to enum swicth.
1584         * locate.c (main): Parenthesize for gcc -Wall.
1585         * xargs.c (push_arg): Parenthesize for gcc -Wall.
1587 Tue Nov 24 08:04:36 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
1589         * find.c, fstype.c, parser.c, pred.c, util.c, listfile.c,
1590         nextelem.c, xargs.c, bigram.c, code.c, locate.c: Use
1591         HAVE_STRING_H, not USG.
1593         * pred.c: Use SYSDIR and NDIR instead of USG.
1594         Define direct as dirent, not vice-versa.
1596 Fri Oct  9 02:15:17 1992  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
1598         * xargs.c (main): Set orig_arg_max before possibly cutting
1599         down arg_max.
1601 Thu Sep 10 19:25:35 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
1603         * parser.c: Always declare getgrent and getpwent.
1605 Mon Aug 24 12:54:16 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
1607         * xargs.c: Include sys/types.h before unistd.h.  Use ARG_MAX
1608         if it's defined.
1609         * find.c, nextelem.c: Add missing decls.
1610         From bde@runx.oz.au (Bruce Evans).
1612 Thu Jul 23 15:06:07 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
1614         * Version 3.7.
1616 Tue Jul 14 00:16:52 1992  David J. MacKenzie  (djm@apple-gunkies.gnu.ai.mit.edu)
1618         * pathmax.h: New file.
1619         * bigram.c, code.c, locate.c: Use it.  Use xmalloc instead of malloc.
1621 Sat Jul 11 22:31:46 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
1623         * nextelem.c: New file.
1624         * locate.c (main): Use it to support a database path.
1626 Fri Jul  3 02:12:09 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1628         * listfile.c, pred.c: Change FOO_MISSING to HAVE_FOO.
1630         * parser.c [_POSIX_SOURCE]: Define endpwent and endgrent as empty.
1631         * listfile.c [!HAVE_ST_RDEV]: Print blanks.
1632         From Jeffrey Siegal (jbs@congruent.com).
1634         * locate.c (locate): Check for EOF at top of loop, not middle.
1635         * updatedb.sh: Remove duplication hack.
1636         From Jay Plett.
1638 Wed Jun 10 15:04:23 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1640         * pred.c (pred_amin, pred_atime, pred_cmin, pred_ctime,
1641         pred_mmin, pred_mtime, pred_used): Cast l_val to time_t before
1642         comparing it to a time_t.  From fpm@crash.cts.com (Frank Maclachlan).
1644         * locate.c (locate): Take the database path as an arg.
1645         (main): Take an option to specify the database path.
1646         (usage): New function.
1648         * updatedb.sh: Don't read from and write to the file-list file
1649         in the same statement.
1651 Thu Jun  4 15:27:07 1992  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
1653         * Version 3.6.
1655 Wed May 20 00:05:13 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
1657         * xargs.c: Include sys/param.h before limits.h, not after.
1659         * listfile.c: If we include a header file specifically to get
1660         major et al., assume we have them.
1662 Tue May 12 01:09:33 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
1664         * locate.c (locate): Don't give fnmatch FNM_PERIOD (it's useless).
1666         * parser.c (parse_path): New function.
1667         * pred.c (pred_path): New function.
1668         * tree.c (opt_expr): Move -path like -name.
1670         * updatedb.sh: Duplicate the last entry in the file list so it
1671         doesn't get ignored.
1673 Mon May 11 22:24:40 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
1675         * updatedb.sh: Allow many vars to be overridden in the environment.
1677         * locate.c, updatedb.sh: FCODES -> LOCATE_DB.
1679 Wed Apr 22 15:24:00 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
1681         * updatedb.sh: Use binprefix when calling find.
1683         * locate.c (locate): Use LOCATE_DB environ variable if set.
1685         * find.c (scan_directory): Allow for dirs having negative
1686         st_size (NFS mount points on VAX 4.3BSD+NFS).
1687         From metcalf@catfish.lcs.mit.edu (Chris Metcalf).
1689 Sat Apr 18 15:42:52 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1691         * fstype.c: Rename FS_* to FSTYPE_*.  Support Dynix's
1692         name for the mount table.
1694 Sun Mar  8 23:21:25 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
1696         * listfile.c (list_file): Allow a slop factor for deciding what
1697         is in the future.
1699 Tue Feb 25 16:24:15 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1701         * Version 3.5.
1703 Sat Feb 22 08:43:01 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1705         * tree.c (set_new_parent): Initialize need_stat field.
1707         * defs.h (struct predicate): Define p_name unconditionally.
1709 Fri Feb 21 15:28:43 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
1711         * tree.c (opt_expr): Preserve expression precedence when
1712         rearranging expression tree. 
1713         (set_new_parent): New function.
1714         (mark_stat): Set need_stat whether or not it's been set
1715         earlier in the expression.
1716         All from Tim Wood.
1718 Mon Feb 17 10:20:38 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1720         * updatedb.sh: Use current value of TMPDIR if already set.
1721         From Dana Jacobsen (jacobsd@cs.orst.edu).
1723         * pred.c: Include pwd.h and grp.h after unistd.h, not before.
1724         Apparently needed on ISC 2.2.  From Juha Takala <jta@piuha.sah.vtt.fi>.
1726 Thu Feb 13 10:52:31 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1728         * modetype.h: Don't define S_IFMT, because doing so breaks pred_type
1729         on plain POSIX.1 systems.
1731 Sat Feb  8 00:58:13 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1733         * Version 3.4.
1735 Fri Feb  7 21:35:58 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1737         * defs.h: Don't declare process_path.
1738         * find.c [DEBUG_STAT] (debug_stat): New function.
1739         (main) [DEBUG_STAT]: Call it.
1740         (process_path): Return a value.
1741         (scan_directory): Count number of subdirs seen so far.
1742         * parser.c (pred_and, pred_close, pred_comma, pred_negate,
1743         pred_open, pred_or): Don't need stat.
1744         * util.c (get_new_pred_chk_op): Implicit AND doesn't need stat.
1746 Fri Jan 17 21:51:18 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1748         * Version 3.3.
1750 Tue Dec 24 02:16:49 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1752         * wait.h, listfile.c, xargs.c, bigram.c, code.c, locate.c:
1753         Change POSIX ifdefs to HAVE_UNISTD_H and _POSIX_VERSION. 
1755 Wed Dec 18 16:37:17 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1757         * listfile.c: Use MAJOR_IN_MKDEV and MAJOR_IN_SYSMACROS to
1758         find major and minor.
1760         * code.c, bigram.c, locate.c, xargs.c: Use LIMITS_H_MISSING
1761         instead of LIMITS_MISSING.
1763 Sat Dec  7 06:13:26 1991  David J. MacKenzie  (djm at frob.eng.umd.edu)
1765         * parser.c (parse_prune): No stat needed for prune.
1766         (insert_fprintf, make_segment): Possibly no stat needed,
1767         depending on which information is printed.
1769         * xargs.c (usage): Document long-named options as starting
1770         with -- instead of +.
1772         * parser.c [!POSIX]: Declare getgrent and getpwent.
1774         * fstype.c (filesystem_type): Only check MNTTYPE_IGNORE if
1775         it's defined.  From Rainer Orth.
1777         * Add leaf node optimization suggested by Matthew Farwell
1778         <dylan@ibmpcug.co.uk>.  Add -noleaf option to disable it.
1779         Adapt parts of Tim Wood's work to current sources.
1780         * find.c (scan_directory): New function, from code in process_path.
1781         (process_path): Take an arg indicating whether the pathname
1782         is a leaf non-directory, instead of a redundant current level.
1783         * parser.c (parse_noleaf): New function.
1784         (parse_print, parse_name, etc.): Set need_stat = false.
1786 Wed Nov  2 13:34:32 1990  Tim Wood at home      (tim at axolotl.UUCP)
1788         * pred.c: Call stat() if an AND, OR or NOT node tells you to.
1789         * find.c: Limit calls to stat().
1791 Wed Oct  3 17:30:39 1990  Tim Wood at home      (tim at axolotl.UUCP)
1793         * tree.c (opt_expr): New function to rearrange predicates within
1794         a conjunction/disjunction so that non-inode (-name, -regex) ones
1795         are executed first.  
1796         * pred.c: Make some supporting tree structure changes for opt_expr().
1798 Sat Dec  7 00:36:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1800         * xargs.c (do_exec): Simplify test for which exit
1801         status to use if exec fails.
1803 Fri Dec  6 18:24:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1805         * listfile.c (list_file): POSIX_ME_HARDER -> POSIXLY_CORRECT.
1807 Thu 24 Oct 1991 21:33:21  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
1809         * pred.c (pred_fprintf): Don't print "\n" unless it's in the
1810         format string.
1812 Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1814         * defs.h, parser.c, pred.c: Rename some types that conflict
1815         with reserved POSIX.1 namespace (ended in _t).
1817         
1818         
1819 Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1821         * xargs.c: Don't determine memory.h based on POSIX, which
1822         doesn't mention it.
1824 Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
1826         * parser.c (parse_perm): Parse new `-perm +mode' notation.
1827         * pred.c (pred_perm): Interpret same.
1829 Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
1831         * xargs.c [POSIX]: Always use sysconf to get ARG_MAX.
1833 Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)
1835         * bigram.c, code.c (main): Make path_max int, not unsigned.
1836         * locate.c (main): Check for pathconf failure.
1838 Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
1840         * parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
1841         interpretation.
1842         * pred.c (pred_fprintf): fixed off-by-one indexing problem
1843         when handling [gGuU] printf formats.
1845 Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1847         * Version 3.2.
1849 Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
1851         * bigram.c, code.c: Fix handling of PATH_MAX.
1852         Check for anomalous input line lengths.
1853         From Bruce Evans.
1855 Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)
1857         * pred.c (pred_fprintf): Round block number up to get K.
1859 Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)
1861         * pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
1862         byte for link object since st_size is wrong.
1864         * listfile.c (list_file): Don't convert blocks to kilobytes if
1865         env. var POSIX_ME_HARDER is defined.
1867         * fstype.c [FS_AIX_STATFS]: New case.
1869         * configure: Make sure the sys/mount.h is the 4.4BSD version
1870         with grep instead of just testing whether it exists.
1872         * listfile.c (list_file): Add 1 to number of 512-byte blocks
1873         before dividing to get 1K blocks (so we round up, not down).
1875 Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1877         * Version 3.1.
1879         * parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
1880         conversion to print 1K blocks.
1882         * listfile.c: Print counts of 1K blocks, for consistency with
1883         new fileutils release.  Bad timing, there.
1885         * Version 3.0.
1887         * pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
1888         which returns void on some systems, like Sequents.
1889         * configure: Check sys/dir.h for 'void closedir'.
1891 Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)
1893         * modetype.h: Define POSIX.1 stat stuff if missing.
1894         * pred.c, parser.c, find.c, fstype.c: Don't define it.
1895         * updatedb.sh: Use a variable substitution method like configure's.
1896         * Makefile.in: Add datadir variable to separate programs from
1897         data file.
1899         * parser.c, pred.c: Rename -fulldays to -daystart.
1901         * defs.h, find.c, parser.c, pred.c: Add many new predicates
1902         from Jay Plett (jay@princeton.edu).
1904 Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)
1906         * parser.c (parse_size), pred.c (pred_size), defs.h (struct
1907         size_t): Allow `k' to follow number to measure size in Kbytes.
1908         * parser.c (parse_size, get_num, insert_num), defs.h (struct
1909         size_t): Use enum comparison_type instead of short.
1911 Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1913         * xargs.c (read_line): Use isblank, to support POSIX locales.
1915         * fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
1916         (Paul Slootman).
1917         * configure: Figure out when to use it.
1919         * configure: Check for st_blocks in struct stat.
1920         * listfile.c (ST_NBLOCKS): New macro.
1921         (list_file): Print file's block count.
1922         Use S_ISLNK instead of S_IFLNK.
1923         * fileblocks.c: New file, from fileutils.
1925 Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
1927         * parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
1928         gid lookups into table lookups.
1930 Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)
1932         * configure, Makefile.in's: Support +srcdir option via VPATH.
1933         Clean up clean targets.
1935 Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)
1937         * configure: Filter /etc and /usr/etc from path.
1939         * xargs.c (wait_for_proc): Fix handling of child exit status.
1940         (main): Exit with a nonzero status if any child did.
1942         * pred.c (launch): Flush stdout and stderr before forking.
1944         * fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
1945         type "ignore".
1947 Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)
1949         * pred.c, locate.c: Use fnmatch instead of glob_match.
1950         * fnmatch.c, fnmatch.h: New files.
1952         * Many files: Use string.h if STDC_HEADERS, as well as if USG.
1954         * locate.c, code.c, bigram.c: Possibly use pathconf to get
1955         PATH_MAX.  Use malloc to allocate path arrays.
1957         * xargs.c: Possibly use sysconf to get ARG_MAX.
1958         (env_size): Make definition unconditional.
1959         (main): Do arg_max adjustment that can't be done with
1960         preprocessor now that ARG_MAX might be a function call.
1961         (do_exec): Exit with status 126 or 127 after failed exec, for
1962         POSIX.2 draft 11.1.
1964         * xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
1965         * wait.h: Use POSIX, not WAIT_MACROS_MISSING.
1967         * COPYING: Use version 2.  Update all files.
1969         * Replace Makefile and lib/Makefile with Makefile.in,
1970         lib/Makefile.in and configure.  Update README.
1972 Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)
1974         * Version 2.2.
1976 Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
1978         * xargs.c (main): Always run the command if some args are left over.
1979         Rename some variables.
1981 Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
1983         * bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
1984         _POSIX_SOURCE, to decide whether to include limits.h.
1986         * parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
1987         to decide whether to declare getpwuid and getgrgid.
1989         * xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
1990         to include memory.h.
1992 Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
1994         * defs.h, find.c, parser.c, pred.c: Remove -permmask option.
1996 Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
1998         * wait.h: Include sys/types.h to get pid_t.
2000         * xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
2001         _POSIX_SOURCE.
2003 Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
2005         * Version 2.1.
2007 Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)
2009         * locate.c, bigram.c, code.c: Attempt to get max. path length
2010         on more kinds of systems, incl. POSIX.
2012         * pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
2013         if available. 
2015         * find.c, defs.h: Make `cur_day_start' a time_t, not long.
2017 Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)
2019         * defs.h, parser.c: Remove unused field from `struct exec_t'.
2021         * xargs.c: Add +no-run-if-empty option to cause the command to
2022         not be run if the input is empty.
2024         * defs.h (struct exec_t): Change the array of offsets into an
2025         array of `struct path_arg'.
2026         * parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
2027         to be substituted (multiple times) anywhere in an arg to -exec
2028         or -ok.
2029         * pred.c (pred_exec): Add code to substitute "{}" within args.
2030         (pred_ok): After prompting, just run pred_exec.
2032 Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)
2034         * fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
2035         "0x" at front of "dev=" mount option, which amd puts there but
2036         Sun automounter doesn't.
2038 Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)
2040         * find.c (main), util.c (usage): Make directory args optional,
2041         defaulting to ".".
2043 Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)
2045         * listfile.c: Define major and minor if not defined (as in POSIX).
2047 Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)
2049         * find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
2050         writing to stderr, in case they have been redirected to the
2051         same file descriptor.
2053         * pred.c (launch): Use POSIX wait macros from wait.h.
2055         * xargs.c (print_xargs): Read from tty_stream, not stdin.
2057 Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)
2059         * Version 2.0.
2061         * fstype.c [FS_USG_STATFS]: New code.
2062         [FS_STATFS]: For symlinks, statfs the directory the link is in
2063         instead of the link.
2064         * Various files: Conditionalize some declarations on
2065         STDC_HEADERS or _POSIX_SOURCE.
2067 Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)
2069         * modetype.h: New file.
2070         parser.c, pred.c: Use it.
2072 Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)
2074         * xmalloc.c: New file from fileutils.
2076         * fstype.c (fstype_to_string): Add case for MFS.
2077         (filesystem_type): Take a pathname as a second arg.
2078         [FS_STATFS] return "unknown" instead of exiting if statfs
2079         fails because of ENOENT.
2080         * pred.c (pred_fstype): Pass the pathname.  Set current_dev.
2081         * find.c (process_path): Make root_dev local again.
2083 Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)
2085         * pred.c (pred_fstype): Free old fs type.
2087         * fstype.c, pred.c (pred_fstype), parser.c (parse_fstype): 
2088         Reread the file system type info. every time a filesystem
2089         mount point is crossed, to allow for automounting.
2091         * xstrdup.c: New file from fileutils.
2093         * find.c (process_path): Rename root_dev to current_dev and
2094         make it global, for -fstype.
2096         * wait.h: New file taken from xargs.c.
2098         * xargs.c: Make limits.h vs. sys/param.h conditional on
2099         LIMITS_MISSING instead of USG, to accomodate SVR2.
2101 Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)
2103         * parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
2104         getpwuid and getgrgid.  Use them.
2106         * listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
2107         S_ISBLK.  Use them. 
2109         * find.c: Use S_ISDIR instead of S_IFDIR, and define if not
2110         _POSIX_SOURCE. 
2112         * Makefile: Define AR and RANLIB and pass to child makes.
2113         lib/Makefile: Use them.
2115         * xargs.c (WIFSIGNALED): Redefine so it works.
2117 Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)
2119         * find.c (process_path): For -xdev, process filesystem
2120         mountpoints (but don't descend them), instead of skipping them
2121         entirely. 
2123         * find.c, parser.c, defs.h: Add -follow predicate.
2125         * xargs.c: Change ifdefs to support STDC POSIX systems.
2127 Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)
2129         * xargs.c (do_exec): Child process exits with status 255, not
2130         127, if command can't be run.
2132 Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)
2134         * xargs.c: Exit with status 127 if running commmand fails, as
2135         required by POSIX.
2137         * fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
2138         Sun/BSD code is now -DFS_MNTENT.
2140 Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)
2142         * Reorganize into subdirectories and add xargs.  Rewrite Makefiles.
2144         * find.c (process_path, main): Allow a maxdepth of 0, meaning
2145         only process command line args.
2147         * parser.c, pred.c: Add -print0 predicate.
2149         * xargs.c: Add -0 option and long options.  Move standard
2150         library functions into separate files.  Use error instead of
2151         fatal and fprintf/perror.  Use POSIX macros for examining exit
2152         status from wait.
2153         (read_string): New function.
2155 Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)
2157         * find.c (process_path): Take DEPTH as an arg instead of ROOT,
2158         and change callers.
2160 Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)
2162         * parser.c (parse_maxdepth): New function.
2163         * find.c (process_path): If -maxdepth was given, don't go
2164         more than that many levels deep.
2165         * defs.h: Declare maxdepth.
2167 Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)
2169         * parser.c: Add -not as synonym for !.
2171 Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
2173         * Makefile (TAGS): New target.
2175 Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2177         * xargs.c (main): Tell getopt to not permute.
2179 Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
2181         * parser.c (parse_perm), pred.c (pred_perm): Always compare
2182         bits 07777.
2184         * locate.c, Makefile: Rename 'fastfind' program to 'locate',
2185         following comment in POSIX.2 draft 10 rationale for find.
2187 Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2189         * listfile.c (getuser, getgroup): Make uid and gid unsigned
2190         short, not int.
2192 Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2194         * defs.h: Don't declare fprintf and printf, in case they have
2195         prototypes in stdio.h (important for functions that use stdarg).
2197 Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2199         * parser.c (parse_and): New function, for compatibility.
2201 Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)
2203         * find.c (main): Only enclose expressions that produce no side
2204         effects within `( ... )'.
2206 Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)
2208         * parser.c (strspn): Stop when end of string reached.
2210         * Version 1.2.
2212         * Move version number from Makefile to new file version.c.
2213         * parser.c: Recognize new -version predicate.
2215         * find.c (main): If no predicates that produce output are
2216         given, default to -print if the entire expression is true, not
2217         just the last part of an alternation.
2218         * Print the names of predicates with invalid arguments.
2220 Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)
2222         * pred.c: Don't check for invalid comparison types in numeric
2223         predicate functions.
2225 Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)
2227         * parser.c (parse_regex): Set fastmap and translate before
2228         compiling regex.
2230 Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2232         * fastfind.c (fastfind): Initialize count to 0.
2234         * lib/updatedb.sh: Only do regex comparison on directories,
2235         for speed.
2237         * listfile.c (list_file): Truncate user and group name to 8 chars.
2239 Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2241         * Version 1.1.
2243         * Makefile [DISTFILES]: Add COPYING.
2245 Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2247         * Version 1.0.
2249 Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2251         * lib/updatedb.sh: Prune entries that match PRUNEREGEX.
2252         Split up finding files from computing bigrams.
2253         Use redirection instead of nonportable grep -s to detect sort
2254         failure.  Optionally search network filesystems as well as
2255         local ones.
2257         * pred.c (pred_regex): Match against full pathname instead of
2258         just last element.
2259         * util.c (basename): Return "/", not "", if given "/".
2261         * find.c (process_path): Fix error in handling "/" directory.
2263 Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)
2265         * parser.c [STRSPN_MISSING] (strspn): New function.
2267 Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)
2269         * listfile.c: New file.
2270         * parser.c (parse_ls): New function.
2271         * pred.c (pred_ls): New function.
2273         * find.c (main): Remove interface to fastfind, to prevent
2274         conflict with POSIX syntax.
2275         * util.c (usage): Remove fastfind syntax from message.
2276         * fastfind.c (main): New function.
2277         * Makefile: Make fastfind a separate program.
2279         * find.c (main): Print correct message if a predicate arg is
2280         missing. 
2282         * parser.c (insert_exec_ok): Make args that start with a ';' but
2283         contain other characters not terminate the command.
2285 Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2287         * fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
2288         instead.  True for HP/UX, at least.
2290 Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2292         * savedir.c: New file; now find won't run out of file
2293         descriptors in deep trees.
2294         * find.c (process_path): Use savedir.
2296 Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2298         * parser.c (parse_permmask): Allow symbolic mode masks.
2299         (parse_perm): Free 'struct change' when done with it.
2300         (get_oct): Function removed.
2302         * find.c (process_path): Allow arbitrarily-long filenames.
2303         More efficient string copying.  Initialize perm_mask to 07777
2304         instead of -1.
2306 Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2308         * Makefile, find.c: Use DIRENT to control whether <dirent.h>
2309         is used.
2311 Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2313         * parser.c (parse_regex): New function.
2314         * pred.c (pred_regex): New function.
2316         * fstype.c (read_mtab): If mtab entry has a "dev=" option
2317         (like in SunOS 4.1), use it, so there is no need to stat the
2318         special file later on.
2319         (xatoi, strstr): New functions.
2321 Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)
2323         * lib/updatedb.sh: Put BINDIR in PATH.
2325         * fstype.c: Do nothing if MNTENT_MISSING is defined.
2327         * fstype.c: New file.
2328         * parser.c (parse_fstype): New function.
2329         * pred.c (pred_fstype): New function.
2331         * parser.c (parse_newer): Failure to stat -newer file is a
2332         fatal error.
2334         * pred.c (pred_ok): Flush output before reading.  Use getchar
2335         instead of scanf.
2337         * pred.c (pred_prune): Return false if -depth given.
2338         * find.c: Apply the predicates to the dir when -depth and
2339         -prune are given.
2341 Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2343         * pred.c (pred_prune): Set new global var `stop_at_current_level'.
2344         * find.c (process_path): Test and reset it.
2346 Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)
2348         * modechange.c, modechange.h: New files.
2349         * parser.c (parse_perm): Use mode_compile and mode_adjust to
2350         parse arg, to allow symbolic mode for POSIX.
2352 Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)
2354         * parser.c (get_oct): Don't consider an empty string a valid number.
2356         * parser.c (parse_perm): If arg starts with '-', set flag bit
2357         for special comparison (POSIX).
2358         * pred.c (pred_perm): If flag bit set, compare s[ug]id &
2359         sticky bits as well, and return true if the given perms are
2360         set, ignoring other bits.
2362         * find.c: New global var `exit_status'.  Use it.  (POSIX)
2363         * parser.c: Set `exit_status' if lstat on -newer file fails.
2365         * fastfind.c: New file.
2366         * find.c (main): Call fastfind if given only 1 arg.
2367         * util.c (usage): Update message. 
2368         * lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
2369         * Makefile: Add 'all' and 'install' targets.
2371 Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)
2373         * parser.c (parse_nogroup, parse_nouser): Implement.
2374         * pred.c (pred_nogroup, pred_nouser): Implement.
2376 Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)
2378         * find.c: Add variable `stay_on_filesystem' for -xdev.
2379         (process_path): Take an arg determining whether this call is
2380         the root of a tree.  Use lstat instead of stat.  If
2381         stay_on_filesystem, don't process a dir on a different
2382         filesystem. 
2384         * parser.c (parse_newer): Use lstat instead of stat.  Is this right?
2385         (parse_xdev): Set stay_on_filesystem.
2387         * parser.c: Add dummy parse_nogroup, parse_nouser,
2388         parse_prune, and parse_xdev; to be written later.
2389         * pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.
2391         * find.c: Support System V directory library/headers.
2393         * find.c (process_path): Don't continue with a file that stat
2394         fails on.
2396         * defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
2397         'unsigned long' and 'unsigned short'.
2398         * find.c, defs.h: Remove 'convert_glob' variable.
2399         * parser.c (parse_fullregex): Function removed.
2400         (parse_name): Remove regular expression code.
2401         (parse_type): Recognize sockets.
2402         Add code to check for missing arguments to many parse_* functions.
2403         * pred.c (pred_name): Use glob_match instead of regex.
2405 Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2407         * Replace fprintf, simple_error, and mem_error with error and
2408         usage. 
2410         * Fix string header includes for USG.
2412 Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2414         * defs.h: Change some #defines to enums.
2416 Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
2418         * find.c (main): Don't take basename of argv[0].
2420         * util.c (xmalloc): New function.
2421         * find.c, parser.c, utils.c: Use xmalloc instead of malloc.
2423         * pred.c: Remove emulation of regex for BSD and use GNU
2424         library version in regcmp.c instead.
2425         * parser.c: Remove emulation of regcmp for BSD and use GNU
2426         library version in regcmp.c instead.
2427         * Makefile: Link with regex.o and regcmp.o.
2428         Add a DISTFILES macro and dist target.
2430         * Indent source code.  Move RCS logs to this file.
2432 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
2434         * xargs.c: Indent.  Comment and rename some global variables.
2435         (main): Use getopt to parse options.  Open new global var
2436         `tty_stream' to /dev/tty if querying requested.
2437         (print_args): Read response from tty_stream, not stdin.
2438         (xmalloc): New function.
2439         Global: Use xmalloc instead of malloc.
2440         (usage): Revise message.
2442 87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)
2444         * pred.c: added guts to pred_size
2446 87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)
2448         * pred.c: added guts to perm and permmask.
2450 87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)
2452         * pred.c: made pred_name only look at the last component of
2453         the path.
2455 87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)
2457         * pred.c: added guts to name.  useds regex and regcmp to do
2458         regular expression handling.
2460 87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)
2462         * pred.c: added predicate newer
2464 87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)
2466         * pred.c: added guts to pred_ok
2468 87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)
2470         * pred.c: finished exec.
2472 87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)
2474         * parser.c: added guts to parse_size
2476 87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)
2478         * parser.c: added guts of perm and permmask.  added getoct
2479         routine for perm and permmask
2481 87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)
2483         * parser.c: added -fre, -fullregex predicate to turn off
2484         globbing conversion
2486 87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)
2488         * parser.c: reworked name so the regexpr pattern includes $ at
2489         the end to force globbing to work correctly.  End of the
2490         pattern refers to the end of the filename.
2492 87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)
2494         * parser.c: added guts to name.  uses a conversion from
2495         globbing to regexp format.  uses regex and regcmp to actually
2496         to the comparison.
2498 87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)
2500         * parser.c: added predicate newer
2502 87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)
2504         * parser.c: added ok guts.  consolidated exec and ok to using
2505         insert_exec_ok
2507 87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)
2509         * parser.c: minor bug in -fulldays predicate parser.  It
2510         should have set the flag full_days to true.
2512 87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)
2514         * find.c: changed where we are setting perm_mask to -1.  need
2515         to make sure that this happens before every apply_predicate.
2517 87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)
2519         * find.c: added error checking for no paths.  better error
2520         message if illegal ordering.
2522 87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)
2524         * find.c: added global convert_glob
2526 87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)
2528         * defs.h: added definition of BLKSIZE for size
2530 87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)
2532         * defs.h: added global convert_glob for name