cvsimport
[findutils.git] / ChangeLog
blobcdae6bf2ac364fcbdee5a7370a5981b16ba00efe
1 2008-02-15  Eric Blake  <ebb9@byu.net>
3         Avoid compiler warnings.
4         * find/pred.c (pred_name_common): Remove unused variable.
5         * locate/locate.c (print_stats): Avoid undefined format string.
7 2008-02-15  James Youngman  <jay@gnu.org>
9         * README-CVS: Explain how to update the translations from the
10         translation project.
12         * NEWS, configure.ac: Change release number to 4.3.14-CVS.
14 2008-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
16         * import-gnulib.config: Add progname.
18         * lib/Makefile.am (LDADD): Use @LIBINTL@ instead of @INTLLIBS@.
20         * xargs/xargs.1: Fix a couple of typos.
22 2008-02-12  James Youngman  <jay@gnu.org>
24         Updated translations: German, Irish, Dutch, Polish, Vietnamese.
25         * po/de.po, po/ga.po, po/nl.po, po/pl.po, po/vi.po: Updated from
26         the Translation Project.
28         Fix Savannah bug #22056, -Xtime tests are off by one second.
29         * find/defs.h (struct options): Change cur_day_start from time_t
30         to strct timespec.
31         * find/util.c (set_option_defaults): Likewise.
32         * find/parser.c (get_relative_timestamp): Change the origin
33         argument from time_t to struct timespec.
34         (estimate_timestamp_success_rate): Ignore the nanoseconds field of
35         the timestamp when estimating the probable success rate.
36         (parse_daystart): Handle the nanoseconds field too.
37         (do_parse_xmin): The origin argument to get_relative_timestamp()
38         is of type struct timespec, not time_t.
39         (parse_used): Likewise.
40         (parse_time): Likewise.
41         * find/pred.c (pred_timewindow): in the COMP_EQ case, accept times
42         exactly at the end of the window and do not accept times exactly
43         at the start (reversing the previous treatment of the bounds).
44         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Added test for
45         -mtime 0; find.posix/mtime0.{exp,xo}.
46         * NEWS: mention this bugfix.
48 2008-02-09  James Youngman  <jay@gnu.org>
50         * doc/find.texi (xargs options): Moved documentation of xargs'
51         options into this new section.
52         (Invoking the shell from xargs): New section providing examples
53         about "xargs sh -c '...'".
55         * xargs/xargs.1: Indicate that the "sh -c" trick with xargs
56         achieves the same thing as BSD's "xargs -o", but in a more
57         flexible way.
59         * locate/updatedb.sh: Actually rename the old database to the new
60         one atomically, instead of just claiming the rename is atomic in a
61         comment :)  This fixes Savannah bug #22057.
63         * find/find.c (ngettext): Introduce a new macro to help with
64         internationalising plurals.   Use it to allow better
65         translations of format strings.
66         * locate/locate.c: Likewise.
68 2008-01-07  James Youngman  <jay@gnu.org>
70         * xargs/xargs.c: (main): Standardise on "Warning" instead of
71         "warning" in messages.
73         * xargs/xargs.c: (add_proc): Use x2nrealloc to extend the pids
74         array, rather than doubling the size of the buffer (since the old
75         aproach was vulnerable to overflow).
77         Reap all available child processes before every fork.  This fixes
78         Savannah bug #21960.
79         * xargs/xargs.c: (proc_max): since this is a non-negative
80         quantity, make it unsigned.
81         (procs_executing): Likewise.
82         (pids_alloc): Likewise (using size_t).
83         (procs_executed): In order to prevent possible overflow, make this
84         a boolean, not a count.  We only cared if the previous counter was
85         zero or not, anwyay.
86         (add_proc): Set procs_executed to true rather than incrementing it.
87         (wait_for_proc): When called, always reap all available children.
88         Add an extra argument which is the minimum number of children we
89         must reap before returning.
90         (wait_for_proc_all): Pass the new extra argument.
91         (xargs_do_exec): Call wait_for_proc() to reap all available
92         children before forking a new child.  Modify other calls to
93         wait_for_proc to pass the new extra argument.
94         * NEWS: Mention this change.
96 2007-12-20  James Youngman  <jay@gnu.org>
98         * find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c,
99         find/tree.c, lib/regextype.c, locate/locate.c, xargs/xargs.c,
100         find.c: Backed out positional paremeter change, as the use of
101         positional parameters was over-complex and unnecessary.  We'll
102         re-apply the pluralisation support change soon, but without the
103         positional parameters.
105 2007-12-20  Jakub Bogusz <qboosh@pld-linux.org> (tiny change)
107         * xargs/xargs.c (parse_num): Corrected typo in format string
108         message.
110 2007-12-20  Clytie Siddall <clytie@riverland.net.au> (tiny change)
112         * find/find.c (wd_sanity_check): Corrected typo in the format
113         string for an error message, which might cause a crash in
114         "oldfind" if a directory we moved into turned out to be a symbolic
115         link that moved while we were trying to change directory.
117 2007-12-20  James Youngman  <jay@gnu.org>
119         * configure.ac: Advance the version number, as we are moving on
120         from 4.3.12.
121         * NEWS: Likewise
123 2007-12-19  James Youngman  <jay@gnu.org>
125         * find/find.c (ngettext): Introduce a new macro to help with
126         internationalising plurals.   Use it with positional parameters in
127         order to allow better translations of format strings.
128         * find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c,
129         find/tree.c, lib/regextype.c, locate/locate.c, xargs/xargs.c: Likewise.
131 2007-12-19  Benno Schulenberg <coordinator@translationproject.org> (tiny change)
133         * find/find.1: Corrected two typos.
135 2007-12-19  James Youngman  <jay@gnu.org>
137         * po/nl.po: Updated Dutch translation from the Translation project.
138         * po/pl.po: Likewise for the Polish translation.
139         * po/sv.po: Likewise for the Swedish translation.
140         * po/vi.po: Likewise for the Vietnamese translation.
142 2007-12-13  Eric Blake  <ebb9@byu.net>
144         Allow bootstrapping with autoconf 2.61a.
145         * configure.ac (AC_AIX, AC_ISC_POSIX): Delete, now that gnulib
146         takes care of this.
147         (jy_AC_TYPE_INTMAX_T): Delete, now that gnulib stdint module takes
148         care of this.
150 2007-12-09  James Youngman  <jay@gnu.org>
152         * doc/perm.texi: Updated from the upstream source.
154         * po/nl.po, po/pt.po: Updated from the Translation Project.
156 2007-12-08  James Youngman  <jay@gnu.org>
158         * xargs/xargs.1: Added examples on stdin handling and more
159         efficient core file deletion.
160         * NEWS: Mention this.
162         * doc/.cvsignore: Ignore regexprops-generic.texi.
163         * doc/.gitignore: ditto
165 2007-12-04  James Youngman  <jay@gnu.org>
167         Fix Savannah bug #15384, find misbehaves when parent directory is
168         not readable.
169         * find/testsuite/find.posix/parent.exp: New test
170         * find/testsuite/find.posix/parent.xo: New test
171         * find/testsuite/Makefile.am (EXTRA_DIST_EXP, EXTRA_DIST_XO):
172         Added parent.exp, parent.xo.
173         * find/find.c (safely_chdir): If safely_chdir_nofollow fails with
174         SafeChdirFailDestUnreadable, fall back on safely_chdir_lstat.
176         * find/find.1: Formatting fixes; options should be in bold.
178 2007-12-02  James Youngman  <jay@gnu.org>
180         Fix Savannah bug #20802, find -delete anomalies
181         * find/pred.c (pred_delete): Set find's exit status to nonzero if
182         -delete fails.
183         * find/find.1 (-delete): Document this.
184         * doc/find.texi (Delete Files): Document this.
185         * NEWS: Mention the fix.
187 2007-11-30  James Youngman  <jay@gnu.org>
189         Fix Savannah bug #20865 (-prune -delete without an explicit
190         -depth is now an error).
191         * find/parser.c (check_option_combinations): Diagnose the
192         situation where -delete and -prune are both used, because -delete
193         turns on -depth and -depth makes -prune do nothing.
194         * find/tree.c (build_expression_tree): call
195         check_option_combinations().
196         * find/defs.h (struct options): Add new boolean field
197         explicit_depth.
198         Also declare check_option_combinations.
199         * find/util.c (set_option_defaults): Initialise explicit_depth.
200         * NEWS: Mention this fix.
202 2007-11-29  James Youngman  <jay@gnu.org>
204         Support the generation of regexprops-generic.texi.
205         * lib/regextype.h (get_regex_type_context): Used to indicate if a
206         particular type of regular expression is of interest for
207         regexprops.texi (which is findutils-specific) or
208         regexprops-generic.texi (which is not).   The "context" is simply
209         a flag set in a word.
210         * lib/regextype.c (get_regex_type_context): Implement this.
211         (regex_map): Assign a context to each regular expression type.
212         * lib/regexprops.c: Use the context information from regextype.c
213         to decide which regular expression types to docuemnt in the
214         output.  The selection is indicated on the command line; "generic"
215         and "findutils" are supported.
216         (copying): New function, which emits a copyright header into the
217         output.
218         (comment): New function for emitting a comment.
219         (ignore): New function which returns nonzero when the indicated
220         type of regular expression is not of interest for this version of
221         the document.
222         (menu): Miss out the non-interesteing regex types.
223         (get_next): Returns the regex type name for the "next" pointer,
224         taking into account which regex types are ignored.
225         (describe_all): Take into account which regex types are ignored,
226         and emit a copying header also.   Include a comment indicating
227         which "context" was of interest when generating the output.
228         * doc/Makefile.am: Add regexprops-generic.texi.  Generate this
229         file from regexprops.c.
231         Check gnulib out with native git, rather than git-cvspserver.
232         This fixes Savannah bug #21568, for the second time.
233         * import-gnulib.config (gnulib_version): Switch to using a git
234         commit id and native git, since git-cvspserver silently fails to
235         support "cvs update -D".
236         * import-gnulib.sh (do_checkout): Check gnulib out with git rather
237         than CVS.
238         (main): Require 'git' to be available.
239         (move_cvsdir): Remove any pre-existing gnulib-cvs directory.
240         * doc/find-maint.texi (Using the GNU Portability Library): Desribe
241         how we now obtain gnulib.  Update the instructions on how we patch
242         gnulib.
243         * .gitignore: Ignore gnulib-git, not gnulib-cvs
244         * .cvsignore: Ditto
245         * Makefile.am (findutils-check-smells): Change from gnulib-cvs to
246         gnulib-git.
247         * README-CVS: Mention the extra dependency on git.
248         * NEWS: Mention this change.
250         Add test case for Savannah bug #20803 (-prune return value).
251         * find/testsuite/find.posix/prune-result.exp: New test for
252         Savannah bug #20803.
253         * find/testsuite/find.posix/prune-result.xo: Expected otuput for
254         new test prune-result.exp.
255         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Added
256         find.posix/prune-result.exp
257         (EXTRA_DIST_XO): Added find.posix/prune-result.xo
259 2007-11-27  James Youngman  <jay@gnu.org>
261         * find/pred.c (pred_prune): Always return true.  This fixes
262         Savannah bug #20803.
263         * doc/find.texi (Directories): Document the change to -prune.
264         * find/find.1: Document the change.
265         * NEWS: Mention the fix.
267 2007-11-26  James Youngman  <jay@gnu.org>
269         Fix Savannah bug #20970, handling of trailing slashes with -name.
270         * find/pred.c (pred_name_common): Strip trailing slashes from the
271         pathname before applying fnmatch() to it.  This fixes Savannah bug
272         #20970.
273         * find/testsuite/find.posix/nameslash.exp: Test case for bug #20970.
274         * find/testsuite/find.posix/nameslash.xo: Expected output file for
275         same.
276         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Added nameslash.exp.
277         (EXTRA_DIST_XO): Added nameslash.xo.
279         Fix Savannah bug #21634, No copy of FDL1.2 included in source
280         code.
281         * doc/find.texi: Change license to the GNU Free Documentation
282         License 1.2.
283         (GNU Free Documentation License): Include fdl.texi
284         * doc/find-maint.texi (GNU Free Documentation License): Include a
285         copy of the FDL (it was already under this license).
286         * doc/Makefile.am (find_maint_TEXINFOS): Include fdl.texi
287         (find_TEXINFOS): Include fdl.texi
288         * import-gnulib.config (modules): Include gpl-3.0 and fdl.
290         * doc/perm.texi: Added copyright license, following the license of
291         the original source document (perm.texi from coreutils).
293 2007-11-25  James Youngman  <jay@gnu.org>
295         * Makefile.am (jy-regex-fix): Comment that the regex.c fix needs
296         to stay until we no longer support Automate-1.9.
298         * doc/perm.texi (Mode Structure): Fix setgid/setuid typo.
300 2007-11-24  James Youngman  <jay@gnu.org>
302         * doc/find.texi (Mode Bits): Correct the warning about the change
303         in behaviour of -perm /000 to indicate that the change has
304         happened now.  This fixes Savannah bug #21628.
305         * NEWS: Mention this.
307 2007-11-22  James Youngman  <jay@gnu.org>
309         POSIXLY_CORRECT turns off warnings.
310         * find/defs.h (struct options): Added member posixly_correct.
311         This is set when the POSIXLY_CORRECT environment variable is set.
312         * find/util.c (set_option_defaults): Set options.posixly_correct
313         if the POSIXLY_CORRECT environment variable is set.
314         (set_option_defaults): Turn off warnings when POSIXLY_CORRECT is
315         in force.
316         * find/find.1: Document this.
317         (Environment Variables): Likewise.
318         (Warning Messages): Likewise.
320         Non-POSIX compliant arguments to -perm generate an error when
321         POSIXLY_CORRECT is set.
322         * find/parser.c (parse_table): Indicate which primaries are
323         defined by POSIX.
324         (non_posix_mode): New function; issues an error message when a
325         non-POSIX-compliant argument to -perm is used (and POSIXLY_CORRECT
326         is in force).
327         (parse_perm): Call non_posix_mode when a non-POSIX-compliant mode
328         argument is seen.
329         * find/testsuite/find.gnu/posix-perminvalid.exp: New file; tests
330         invalid arguments to -perm.
331         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Add
332         posix-perminvalid.exp.
333         * find/find.1: Document this.
334         * doc/find.texi (Mode Bits): Likewise
335         (Environment Variables): Likewise
338         * xargs/xargs.1: Options should be bold, not italic; filenames
339         should also be italic.  OPTIONS should be a section, not a
340         subsection.  In the description of --max-lines, "max-args" was
341         corrected to "max-lines".  Turn off hyphenation in the SYNOPSIS
342         section.  This fixes Savannah bug #21270.
344 2007-11-13  James Youngman  <jay@gnu.org>
346         * NEWS, configure.ac: Prepare for the release of findutils-4.3.10.
348         * import-gnulib.sh (usage): If the existing CVS working tree for
349         gnulib in the source tree does not yet point at the
350         git-cvs-pserver repository, move the old gnulib working tree out
351         of the way and do a fresh checkout.  This fixes Savannah bug
352         #21568.
354 2007-11-11  James Youngman  <jay@gnu.org>
357         * configure.ac: Prepared for release of findutils-4.3.9.
358         * NEWS: Likewise.
360         * po/POTFILES.in: Use gnulib/lib/getdate.y rather than
361         gnulib/lib/getdate.c, because the former is the source file, and
362         because without this change the update-po target of po/Makefile
363         fails.
365         * import-gnulib.config (gnulib_version): Move to gnulib
366         2007-11-10.
368         * po/hu.po, po/nl.po: Updated from Translation Project.
370 2007-09-08  James Youngman  <jay@gnu.org>
372         Better documentation on $PATH security checks.
373         * doc/find.texi (Single File): Better explanation of what makes
374         certain values of $PATH insecure.  This fixes Savannah bug
375         #20951.
376         * find/find.1 (-execdir): Likewise.
378         Document interaction of -depth/-delete/-prune.
379         * doc/find.texi (Directories): Mention that "-prune ... -delete"
380         will not do what you want and will cause the deletion of more
381         files than you probably intended.
382         (Delete Files): Likewise, suggest using "-depth" when testing
383         command lines you plan to eventually add "-delete" to.
384         (Cleaning Up): Add -depth explicitly to an example which uses
385         -delete.
386         * find/find.1 (-depth): Mention that -delete also implies -depth.
387         (-delete): Warn against putting -delete first.
388         (-prune): Also warn against -prune ... -delete.
389         NEWS: Mention these changes.
391 2007-08-23  Eric Blake  <ebb9@byu.net>
393         Pick up gnulib change to getline module.
394         * import-gnulib.config (gnulib_version): Bump date.
395         * locate/bigram.c: Use <stdio.h>, not getline.h.
396         * locate/code.c: Likewise.
397         * locate/frcode.c: Likewise.
398         * locate/locate.c: Likewise.
400         * po/ChangeLog: Delete, merge into this file.
402 2007-08-23  James Youngman  <jay@gnu.org>
404         * po/nl.po: Updated from Translation Project
406         * find/parser.c (check_path_safety): Assume the path is safe is
407         $PATH is not set.  This avoids a segfault in that situation
408         and thus fixes Savannah bug #20834.
410 2007-08-22  James Youngman  <jay@gnu.org>
412         * find/parser.c (parse_path): This is the 'canonical' name once
413         again.
414         (parse_wholename): This is not.
415         (parse_ipath): No longer deprecated.
416         * NEWS: Mention this.
418 2007-08-22  Eric Blake  <ebb9@byu.net>
420         Fix Savannah bug #20871.
421         * find/find.c (main): Remove bogus assertion.
422         * NEWS: Document the fix.
424         Update to recent gnulib addition of idcache.h.
425         * lib/listfile.c (getuser, getgroup): Use header rather than
426         declaring things ourself.
427         * po/POTFILES.in (locate/frcode.c): Add missing file.
429 2007-08-21  Eric Blake  <ebb9@byu.net>
431         Fix for Savannah bug #20273, find -ok with seekable stdin.
432         * find/find.c (main): Use close_stdin, not close_stdout.
433         * import-gnulib.config (gnulib_version): Pick up yesno tests.
434         * NEWS: Document the change.
435         * build-aux/.cvsignore: Ignore compile.
437 2007-08-20  Paul Eggert  <eggert@cs.ucla.edu>
438         and Eric Blake  <ebb9@byu.net>
440         Improve translation of xstrtol messages.
441         * import-gnulib.config (destdir): Upgrade gnulib to 2007-08-11.
442         * locate/locate.c (dolocate): Adjust to API change of xstrtol
443         gnulib module.
444         * po/POTFILES.in: Likewise.
445         * NEWS: Document the enhancement.
447 2007-08-20  James Youngman  <jay@gnu.org>
449         * doc/find.texi (Directories): Clarify that built commands which
450         have not been executed yet will be executed before find quits,
451         even with -quit.  Also clarify the difference between -prune and
452         -quit.
454 2007-08-18  Eric Blake  <ebb9@byu.net>
456         Fix Savannah bug #20751.
457         * lib/listfile.c (list_file): Accomodate gnulib change of 3 Jul
458         2006.
459         * NEWS: Document this.
460         Reported by Nigel Stepp.
461         * THANKS: Sort and update.
462         * AUTHORS: Add myself.
464 2007-08-05  Eric Blake  <ebb9@byu.net>
466         Fix Savannah bugs #20662, #20688.
467         * find/find.c (at_top): Avoid memory leak.
468         * find/pred.c (do_fprintf, pred_iname, pred_name): Likewise.
469         (pred_name_common): New function, factored from pred_iname and
470         pred_name.
471         * find/parser.c (check_name_arg): Let -nowarn silence -name /.
472         * locate/locate.c (visit_basename): Avoid memory leak.
473         * NEWS: Document the changes.
474         * doc/find.texi (Warning Messages): Document -nowarn's effect on
475         -name and -iname.
476         * find/testsuite/find.gnu/name-slash.exp: New test, to ensure
477         20662 doesn't regress on '-name /', and that 20688 silences the
478         warning.
479         * find/testsuite/find.gnu/printf-slash.exp: Likewise.
480         * find/testsuite/find.gnu/name-slash.xo: Expected results.
481         * find/testsuite/find.gnu/printf-slash.xo: Likewise.
482         * find/testsuite/Makefile.am (EXTRA_DIST_XO, EXTRA_DIST_EXP):
483         Distribute new tests.
485 2007-07-31  Eric Blake  <ebb9@byu.net>
487         Allow choice of default arg size, Savannah bug #20594.
488         * configure.ac (DEFAULT_ARG_SIZE): Check environment for a default
489         size override.
490         * lib/buildcmd.c (bc_use_sensible_arg_max): Use default size from
491         configure, if requested.
492         * README (DEFAULT_ARG_SIZE): Mention the ability to tune this at
493         configure time.
494         * NEWS: Document the change.
496 2007-07-29  James Youngman  <jay@gnu.org>
498         * po/tr.po: Updated from Translation Project.
500 2007-07-26  Eric Blake  <ebb9@byu.net>
502         * doc/.cvsignore: Ignore more generated documentation.
504 2007-07-23  Eric Blake  <ebb9@byu.net>
506         * find/parser.c (parse_version): Avoid compiler warning.
507         * locate/code.c (includes): Likewise.
509 2007-07-22  Eric Blake  <ebb9@byu.net>
511         * po/POTFILES.in: Add lib/findutils-version.c.
513 2007-07-22  James Youngman  <jay@gnu.org>
515         * find/find.1: Corrected a number of typos and fixed up the
516         alphabetical section ordering.  This fixes Savannah bug #20552.
518         Version banners now comply with the GNU coding standard.
519         * find/parser.c (parse_version): Use display_findutils_version()
520         instead of printing the information manually.  Don't include
521         gnulib-version.h since we no longer directly use that header.
522         * lib/findutils-version.c: Added
523         * lib/findutils-version.h: Added
524         * import-gnulib.config (modules): Added version-etc and
525         version-etc-fsf.
526         * lib/Makefile.am (libfind_a_SOURCES): added findutils-version.c.
527         * find/version.c: Removed
528         * find/Makefile.am: Remove version.c
529         * locate/Makefile.am: Don't link ../find/version.o
530         * xargs/Makefile.am: Ditto
531         * xargs/xargs.c (main): Use display_findutils_version()
532         * locate/code.c (main): Ditto
533         * locate/frcode.c (main): Ditto
534         * locate/locate.c (dolocate): Ditto
535         * locate/updatedb.sh (version): Display copyright information in
536         the right format.   Also ensure that we exit with a nonzero status
537         if there was an output error for --help and --version.
538         * find/testsuite/config/unix.exp (find_version): Adjust for
539         --version format change
540         * locate/testsuite/config/unix.exp (locate_version): Ditto
541         * xargs/testsuite/config/unix.exp (xargs_version): Ditto
542         * NEWS: Mention the change
544 2007-07-19  Eric Blake  <ebb9@byu.net>
546         * po/POTFILES.in: Update to reflect current location of
547         translatable strings.
549 2007-07-17  Eric Blake  <ebb9@byu.net>
551         Ensure 'make distcheck' can pass on cygwin.
552         * configure.in: Rename...
553         * configure.ac: ...to this, to match automake recommendations.
554         * NEWS: Add release dates.
555         * doc/find-maint.texi: Remove trailing whitespace.
556         (Documentation): Document where release dates are usefully
557         recorded.
558         * locate/Makefile.am (AM_INSTALLCHECK_STD_OPTIONS_EXEMPT): Be
559         aware of .exe.
560         * .cvsignore: Ignore 'make dist' files.
561         * po/.cvsignore: Ignore remove-potcdate.sed.
563 2007-07-14  Eric Blake  <ebb9@byu.net>
565         * import-gnulib.config (gnulib_version): Bump date, to pick
566         up fix in canonicalize module testing.
568 2007-07-06  James Youngman  <jay@gnu.org>
570         * po/uk.po, po/nl.po, po/vi.po: Updated from Translation Project.
572 2007-07-04  James Youngman  <jay@gnu.org>
574         * NEWS: Fixed typos in description of bugfix for bug #20310.
576 2007-07-03  James Youngman  <jay@gnu.org>
578         Fix Savannah bug #20310.
579         * m4/nullsort.m4: If we are cross compiling, assume "sort -z" does
580         not work on the target.
582         Manpage improvements.
583         * find/find.1: More consistent use of quotation marks.
584         *  locate/locate.1 (HISTORY): New section.
586 2007-07-02  James Youngman  <jay@gnu.org>
588         * import-gnulib.sh: (run_gnulib_tool): Don't pass --gpl3 to
589         gnulib-tool, since the program does not have that option (that was
590         a local change which proved not to be necessary).
592         GPL3 migration.
593         * COPYING: Migrate to version 3 of the GNU General Public license.
594         * Makefile.am: ditto
595         * build-aux/check-testfiles.sh: ditto
596         * build-aux/src-sniff.py: ditto
597         * debian/copyright: ditto
598         * doc/find-maint.texi: ditto
599         * find/defs.h: ditto
600         * find/find.c: ditto
601         * find/finddata.c: ditto
602         * find/fstype.c: ditto
603         * find/ftsfind.c: ditto
604         * find/parser.c: ditto
605         * find/pred.c: ditto
606         * find/testsuite/config/unix.exp: ditto
607         * find/tree.c: ditto
608         * find/util.c: ditto
609         * import-gnulib.config: ditto
610         * import-gnulib.sh: ditto
611         * lib/buildcmd.c: ditto
612         * lib/buildcmd.h: ditto
613         * lib/dircallback.c: ditto
614         * lib/dircallback.h: ditto
615         * lib/extendbuf.c: ditto
616         * lib/extendbuf.h: ditto
617         * lib/forcefindlib.c: ditto
618         * lib/gnulib-version.h: ditto
619         * lib/listfile.c: ditto
620         * lib/listfile.h: ditto
621         * lib/modetype.h: ditto
622         * lib/nextelem.c: ditto
623         * lib/nextelem.h: ditto
624         * lib/printquoted.c: ditto
625         * lib/printquoted.h: ditto
626         * lib/qmark.c: ditto
627         * lib/regexprops.c: ditto
628         * lib/regextype.c: ditto
629         * lib/regextype.h: ditto
630         * lib/savedirinfo.c: ditto
631         * lib/savedirinfo.h: ditto
632         * lib/strspn.c: ditto
633         * lib/wait.h: ditto
634         * lib/waitpid.c: ditto
635         * locate/bigram.c: ditto
636         * locate/code.c: ditto
637         * locate/frcode.c: ditto
638         * locate/locate.c: ditto
639         * locate/locatedb.h: ditto
640         * locate/testsuite/config/unix.exp: ditto
641         * locate/updatedb.sh: ditto
642         * locate/word_io.c: ditto
643         * po/fetch-po-files: ditto
644         * xargs/testsuite/config/unix.exp: ditto
645         * xargs/xargs.c: ditto
647         Typo fixes.
648         * doc/find.texi (Deleting Files): Fixed a typo.
649         (Deleting Files): Likewise.
651         New worked example for find.
652         * doc/find.texi (Copying A Subset of Files): Added a new worked
653         example.
655         * doc/find.texi (Updating A Timestamp File): Indicate that %A@ now
656         includes a sub-second part on many systems.
658         Include <fcntl.h> unconditionally.
659         * import-gnulib.config (modules): Also use the fcntl module.
660         * find/find.c: #include <fcntl.h> unconditionally, since
661         gnulib provides it if it is absent.
662         * find/fstype.c: Likewise.
663         * find/ftsfind.c: Likewise.
664         * find/parser.c: Likewise.
665         * find/util.c: Likewise.
666         * locate/locate.c: Likewise.
668 2007-06-30  Eric Blake  <ebb9@byu.net>
670         * find/pred.c (pred_timewindow): Avoid gcc warnings.
671         (format_date): Likewise.
672         * find/tree.c (calculate_derived_rates): Likewise.
673         * locate/word_io.c (getword): Likewise.
675 2007-06-30  James Youngman  <jay@gnu.org>
677         * find/find.1 (EXAMPLES): Added an example of using find and cpio -p
678         to copy a directory tree, with pruning and omitted files.
680         * find/pred.c (format_date): Use verify_true for constant
681         conditions rather than assert.
682         * xargs/xargs.c (main): Ditto.
684         Enhancements to the code smell detector.
685         * Makefile.am (findutils-check-smells): Automate the calling of
686         build-aux/src-sniff.py.
687         * build-aux/src-sniff.py: Rework to use a list of regex-based
688         sniffers, to allow checking types of file other than C.  Allow
689         file-based regex sniffers to give an indication of the line number
690         where they think the problem (or part of the problem) exists.
691         Added code smell detectors for a sample Bourne shell problem and
692         for out-of-date FSF addresses.
694         * find/tree.c (get_pred_cost): Eliminate unused variable.
696         Fix Savannah bug #20263 in a more portable way.
697         * find/tree.c (cost_table_comparison): Avoid casting function
698         pointers to poiter-to-object, since this is not portable (or
699         of course conforming).  Instead, use memcmp().
701 2007-06-28  Eric Blake  <ebb9@byu.net>
703         * import-gnulib.sh (run_gnulib_tool): Speed operation when
704         updating an existing tree.
706         Allow 'make check' to work without prior 'make all'.
707         * find/Makefile.am (SUBDIRS): Build in . before testsuite.
708         * locate/Makefile.am (SUBDIRS): Likewise.
709         * xargs/Makefile.am (SUBDIRS): Likewise.
711         Fix Savannah bug #20273, xargs -E with seekable stdin.
712         * import-gnulib.config (modules): Sort, add closein.
713         * xargs/testsuite/Makefile.am (EXTRA_DIST_EXP, EXTRA_DIST_XO)
714         (EXTRA_DIST_XI): Add new test.
715         * xargs/testsuite/config/unix.exp (xargs_start): Support optional
716         argument to allow test to run a subshell.
717         * xargs/testsuite/inputs/sv-bug-20273.xi: New file.
718         * xargs/testsuite/xargs.posix/sv-bug-20273.xo: Likewise.
719         * xargs/testsuite/xargs.posix/sv-but-20273.exp: Likewise.
720         * xargs/xargs.c (main): Use close_stdin, not close_stdout.
721         * NEWS: Document the fix.
723 2007-06-27  James Youngman  <jay@gnu.org>
725         Added a maintenance manual.
726         * doc/find-maint.texi: New file.
727         * doc/Makefile.am (info_TEXINFOS): Added doc/find-main.texi.
728         * doc/find.texi (Introduction): Fixed typo.
730 2007-06-26  Eric Blake  <ebb9@byu.net>
732         * import-gnulib.config (modules): Allow ./configure
733         --disable-assert.
735 2007-06-26  James Youngman  <jay@gnu.org>
737         * build-aux/src-sniff.py: Detect uses of struct stat where the
738         header file was not included.
739         * find/find.c: Fix this, and uses of assert without a following
740         space (the coding standard requires a space, but there are still
741         a number of cases where other functions are called with no
742         following space).
743         * find/fstype.c: Ditto.
744         * find/ftsfind.c: Ditto.
745         * find/parser.c: Ditto.
746         * find/pred.c: Ditto.
747         * find/tree.c: Ditto.
748         * find/util.c: Ditto.
749         * lib/buildcmd.c: Ditto.
750         * lib/buildcmd.h: Ditto.
751         * lib/extendbuf.c: Ditto.
752         * locate/frcode.c: Ditto.
753         * locate/locate.c: Ditto.
754         * locate/word_io.c: Ditto.
755         * xargs/xargs.c: Ditto.
757         * find/tree.c (cost_table_comparison): Avoid < comparison between
758         function pointer types.  Instead cast the function pointers to
759         (const void*).  Both alternatives are undefined C, but the former
760         actually fails to compile on some systems.   This fixes Savannah
761         bug #20263.
762         * NEWS: mention the fix
764         * find/tree.c (calculate_derived_rates): Removed assignment to
765         rate variable following an assert(0) call, which had been added to
766         silence a "used before initialised" warning, and replace it with a
767         call to abort, which (a) correctly halts execution if _NDEBUG is
768         defined and (b) more accurately documents what's happening.
770         * find/parser.c (get_stat_Ytime): Removed redundant call to abort.
772         * find/util.c (debug_stat): For consistency, use assert (0) rather
773         than assert (false).
775 2007-06-26  James Youngman  <jay@gnu.org>
777         * README-alpha: Mention the findutils-patches mailng list and the
778         archives for findutils-patches and bug-findutils.
780         * po/bg.po: Updated from Translation Project.
782 2007-06-25  James Youngman  <jay@gnu.org>
784         * po/sv.po: Updated Swedish translation.
786 2007-06-24  James Youngman  <jay@gnu.org>
788         * build-aux/.gitignore, debian/.gitignore, doc/.gitignore,
789         find/.gitignore, find/testsuite/.gitignore, .gitignore,
790         lib/.gitignore, locate/.gitignore, locate/testsuite/.gitignore,
791         m4/.gitignore, po/.gitignore, xargs/.gitignore,
792         xargs/testsuite/.gitignore: New files to make it more painless to
793         track findutils sources with git.
795         * NEWS: Mention the previous change to doc/find.texi.
797 2007-06-23  James Youngman  <jay@gnu.org>
799         * doc/find.texi (Introduction): Recommend that people check they
800         are using the latest version before reporting a bug.
802 2007-06-22  James Youngman  <jay@gnu.org>
804         Better documentation for the fractional part of seconds fields for
805         -printf and similar actions.
806         * doc/find.texi (Time Components): Point out that the seconds
807         field of the timestamp is often printed out with a fractional part
808         of unspecified length and precision.  The '%Tc' field has no
809         seconds part.
810         (Combined Time Formats): Point out the same thing for '%T@'.
811         * find/find.1 (%A): Point out the same thing.
812         * NEWS: Mention these changes.
814         Fix various lint-type complaints taken from the rules in the
815         coreutils Makefile.maint file (see build-aux/src-sniff.py).
816         * xargs/xargs.c: Removed unnecessary parentheses in "#if defined"
817         checks.
818         (main): Don't cast the return value of xmalloc.
819         (add_proc): Don't cast the return value of xmalloc.
820         * lib/regextype.c: Don't include quotearg.h, we don't need it.
821         * lib/dircallback.c, lib/nextelem.c, lib/prontquoted.c,
822         lib/qmark.c, lib/strspn.c, lib/waitpid.c: Assume config.h is available.
823         * lib/extendbuf.c: Ditto
824         * lib/listfile.c: Ditto.  Also removed unnecessary parentheses in
825         "#if defined" checks.
826         (get_link_name): Don't cast the result of xmalloc.
827         * lib/bigram.c: Removed unnecessary parentheses in "#if defined"
828         checks.
829         * lib/savedirinfo.c: Assume config.h is available.  Also removed
830         unnecessary parentheses in "#if defined" checks.
831         * lib/buildcmd.c (bc_do_insert): Don'tcast the result of xmalloc().
832         * find/tree.c (build_expression_tree): Don't cast the argument to free().
833         * find/ftsfind.c (set_close_on_exec): Removed unnecessary
834         parentheses in "#if defined" checks.  Also changed "filesystem" ->
835         "file system"
836         * find/util.c (check_nofollow): Removed unnecessary parentheses in
837         "#if defined" checks.
838         * find/parser.c (estimate_fstype_success_rate): ditto.
839         (insert_regex): Do not cast the result of xmaloc().  Removed unnecessary
840         parentheses in "#if defined" checks.  Also changed "filesystem" ->
841         "file system"
842         * find/pred.c: ditto
843         * find/find.c: "the the" -> "the", "filesystem" -> "file system"
844         * find/fstype.c: "filesystem" -> "file system" (in comments and
845         static functions)
846         * locate/frcode.c: Removed unnecessary parentheses in "#if
847         defined" checks.
848         * locate/locate.c (search_one_database): Don't cast the return
849         value of xmalloc.
850         (dolocate): Mark error message for translation.
852 2007-06-21  Eric Blake  <ebb9@byu.net>
854         * locate/.cvsignore: Ignore dblocation.texi.
855         * build-aux/.cvsignore: Ignore Makefile.
856         * locate/locate.c (set_max_db_age): Fix typo in error message.
858 2007-06-19  Eric Blake  <ebb9@byu.net>
860         Fix compilation on cygwin, Savannah bug #20210.
861         * import-gnulib.config (gnulib_version): Import strcasestr and
862         updated canonicalize-lgpl-tests.
863         * lib/dircallback.c (includes): Track gnulib changes.
865 2007-06-14  James Youngman  <jay@gnu.org>
867         * find/parser.c (parse_time): Use the variable comp, which holds
868         the planned comparison type, rather than the structure tval, which
869         has not been initialised yet and contains a random value.  This
870         fixes Savannah bug #20139.
871         * NEWS: Mention the bugfix.
873 2007-06-13  James Youngman  <jay@gnu.org>
875         * po/pl.po: Updated Polish translation.
877 2007-06-12  James Youngman  <jay@gnu.org>
879         Release 4.3.8.
881         * find/find.1 (HISTORY): Document when the find tests -readable,
882         -writable, -executable and the option -regextype were introduced.
884 2007-06-12  Nix  <nix@esperi.org.uk> (trivial change)
886         * locate/locate.c (drop_privs): Use groups[0] rather than
887         groups[1], since groups[] is a one-element array.  This is a
888         buffer overrun affecting root only.  In theory it could affect
889         setuid installations, but I (James Youngman) cannot find an explot
890         mechanism for it.  This fixes Savannah bug#20157.
891         * NEWS: Mention this fix.
893 2007-06-12  James Youngman  <jay@gnu.org>
895         Make the test suite work when run as root.
896         * find/testsuite/config/unix.exp (fs_superuser): Abstract out the
897         check which discovers if we have superuser privileges on the
898         filesystem (taken from access.exp).
899         * find/testsuite/find.gnu/access.exp: Call fs_superuser.
900         * find/testsuite/find.gnu/fprint-unwritable.exp: Use fs_superuser.
902         * po/vi.po, ga.po, nl.po: Updated translations
903         * po/findutils.pot: Updated template file
905 2007-06-09  James Youngman  <jay@gnu.org>
907         Release 4.3.7.
909         Check that we can correctly read old-format databases which are
910         big-endian or little endian.
911         * locate/testsuite/config/unix.exp (locate_from_db): New function;
912         supports testing locate against a provided database.
913         * locate/testsuite/locate.gnu/bigendian.exp: New test; make sure
914         we can read an old-format big-endian database.
915         * locate/testsuite/locate.gnu/bigendian.xo: Expected output from
916         bigendian.exp test.
917         * locate/testsuite/locate.gnu/littleendian.exp: New test; make sure
918         we can read an old-format little-endian database.
919         * locate/testsuite/locate.gnu/locateddb.old.powerpc.xi: Old format
920         big endian database file, for supporting bigendian.exp.
921         * locate/testsuite/locate.gnu/littleendian.xo: Expected output from
922         littleendian.exp test.
923         * locate/testsuite/locate.gnu/locateddb.old.x86.xi: Old format
924         little endian database file, for supporting littleendian.exp.
925         * locate/testsuite/Makefile.am: Distribute littleendian.exp,
926         bigendian.exp and related .xi and .xo files.
929         * doc/find.texi (Size Directives): Compare %b with %s/512, not
930         %s/1024.  This fixes (again) Savannah bug #19596.
931         * NEWS: mention the fix.
933         Avoid using the non-portable function putw().
934         * locate/locatedb.h: Declare putword().
935         * locate/frcode.c: Include <stdbool.h> as locatedb.h now requires
936         it.
937         * locate/code.c (main): Use putword() rather than putw(), because
938         the latter was removed from SUSv3. This fixes Savannah bug #19980.
939         Also include <stdbool.h> as locatedb.h now requires this.
940         * locate/word_io.c (putword): Define the new function putword.
942         Ensure that <config.h> is included before any system header
943         * find/defs.h: Do not include <config.h> from "defs.h".  Instead
944         just complain if it was not already included, since it needs  to
945         be included first of all, even before system headers (in case
946         gnulib had replaced a system header).  Check
947         ALREADY_INCLUDED_CONFIG_H to determine this.
948         * configure.in: Always define ALREADY_INCLUDED_CONFIG_H in
949         config.h.
950         * find/find.c: Include config.h before defs.h.
951         * find/finddata.c: ditto.
952         * find/fstfind.c: ditto.
953         * find/parser.c: ditto.
954         * find/pred.c: ditto.
955         * find/util.c: ditto
956         * find/tree.c: ditto (fixing Savannah bug #20128).
958         * m4/noreturn.m4 (jy_AC_ATTRIBUTE_NORETURN): Use AC_LANG_PROGRAM
959         inside AC_COMPILE_IFELSE.
961         * doc/find.texi (Security Considerations for locate): Discuss in
962         detail the buffer overrun when reading old-format locate
963         databases.  This is CVE reference CVE-2007-2452.
965 2007-06-05  James Youngman  <jay@gnu.org>
967         Guess the byte-order of old-format locate databases.
968         * locate/word_io.c (getword): Make the endian_state_flag parameter
969         an enum rather than an int.  If we are in the initial ("don't
970         know") byte-order guessing state and the swapped value is out of
971         range, use this as evidence that the byte order is native.
972         * locate/locatedb.h: Declare getword accordingly.
973         * locate/locate.c (struct process_data): Added endian_state
974         member, which remembers for us what the big/little endian order
975         guessing state is when we read an old-format database.
976         (visit_old_format): Use the procdata.endian_state rather than a
977         local variable, so that the information can persist across calls.
978         (i_am_little_endian): Locate figures out if we needed to byteswap
979         the words in an old-format database, but that is an implementation
980         detail.  Therefore we figure out our own byte order so that we can
981         produce a more relevant message for --statistics.  The
982         i_am_little_endian() returns nonzero if the current host has
983         little-endian byte order.
984         (search_one_database): Report the byte-order of old-format
985         databases.
987 2007-06-04  James Youngman  <jay@gnu.org>
989         * locate/testsuite/Makefile.am (EXTRA_DIST_XO, EXTRA_DIST_EXP):
990         Added old_prefix.exp and old_prefix.xo, a new test case for long
991         shared rpefixes with the old database format.
993         * locate/locate.c (visit_old_format): Use getword() from word_io.c
994         instead of getw(), because getw() is not in POSIX.
995         * locate/word_io.c: New file, providing replacement for getw().
996         * locate/locatedb.h: Declare getword()
997         * locate/Makefile.am (locate_SOURCES): Added word_io.c
999         * locate/testsuite/config/unix.exp (locate_start): Make the
1000         failure messages slightly more explicit; indicate what went wrong
1001         when a test fails.
1003 2007-06-03  James Youngman  <jay@gnu.org>
1005         * locate/locate.c (visit_old_format, extend, toolong): Extend the
1006         buffer used to build the current pathname when reading an
1007         old-format database.  The new function extend is called to do
1008         this.  The new function toolong is called to report a fatal error
1009         when the buffer size would otherwise exceed SIZE_MAX.  This fixes
1010         Savannah bug #20014, which is a security-related problem with the
1011         CVE identifier CVE-2007-2452.
1013         * configure.in: Determine if the setgroups function is available,
1014         and set HAVE_SETGROUPS if so.
1015         * locate/locate.c (drop_privs): Call setgroups() only if
1016         HAVE_SETGROUPS indicates that it is available.  This fixes
1017         Savannah bug #19981.
1019         * po/vi.po: Updated Vietnamese translation
1021 2007-05-31  James Youngman  <jay@gnu.org>
1023         * find/parser.c (parse_time): Once we have determined the
1024         comparison type, restore the original time argument since
1025         get_relative_timestamp() also wants to see it.  This fixes
1026         Savannah bug #20005.
1028         * po/findutils.pot, ga.po, pt.po, tr.po, pl.po: updated from the TP
1029         website.
1031 2007-05-31  Jakub Bogusz <qboosh@pld-linux.org>  (trivial change)
1033         * find/parser.c (parse_group): Correct typo in error message.
1034         (check_path_safety): same
1036 2007-05-27  James Youngman  <jay@gnu.org>
1038         * import-gnulib.config (modules): Import sys_stat.
1039         (gnulib_version): Update to 2007-05-26.  This fixes a compilation
1040         error in stdlib.h with the DEC C compiler.  This fixes Savannah
1041         bug# 19983.
1043         * find/parser.c (safe_atoi): New function, like atoi, but which
1044         calls error(1, ...) when the argument is invalid or out of range.
1045         (parse_group): Use safe_atoi.
1046         (insert_depthspec): Use safe_atoi
1047         (parse_user): Use safe_atoi
1049         * configure.in: Check for fabs in libm (fixing a compilation error
1050         on Solaris).
1052         * import-gnulib.config (modules): Import the wcwidth module to
1053         provide it on those systems (such as BeOS) which lack it.
1055         * find/pred.c (file_sparseness): If st_blocks is not present in
1056         struct stat, the file has a sparseness of 1.0.
1058         * doc/find.texi (Size Directives): Document the %S format
1059         directive for -printf.
1061         * find/pred.c (mode_to_filetype): Don't use S_IFSOCK on systems
1062         which lack that macro.  POSIX systems are allowed to lack
1063         sockets (it's an XSI extension).
1064         (file_sparseness): If struct stat lacks st_blocks, assume all
1065         files have a spearseness of 1.0.
1067         * import-gnulib.config (modules): Import fchdir inorder to fix an
1068         undefined-symbol error for fchdir on BeOS.
1070 2007-05-26  James Youngman  <jay@gnu.org>
1072         Code refactoring in locate.
1073         * locate/locate.c (visit): New function, into which we factor out
1074         the traversal of the inspector list.
1075         (process_simple): Use visit().
1076         (process_or): Use visit().
1077         (process_and): Use visit().
1079         Speed improvements in locate for unibyte locales.
1080         * locate/locate.c (visit_substring_match_nocasefold_wide): Renamed
1081         from visit_substring_match_nocasefold.
1082         (visit_substring_match_casefold_wide): Renamed from
1083         visit_substring_match_casefold.
1084         (visit_substring_match_casefold_narrow): Special case of
1085         visit_substring_match_casefold_wide which we use for unibyte
1086         locales; we use strcasestr() rather than mbscasestr().
1087         (visit_substring_match_nocasefold_narrow): Ditto, using strstr()
1088         instead of mbsstr().
1090         * find/parser.c (parse_gid): Return an explicit boolean constant
1091         rather than automatically converting from a pointer, because the
1092         gnulib substitute for bool (or _Bool) in c89 environments lacking
1093         bool does not support that conversion.  One affected system is Sun
1094         WorkShop Compilers 5.0 98/12/15 C 5.0 on Solaris 7.  This is
1095         Savannah bug #19970, reported by Nelson Beebe.
1096         (parse_inum): Ditto.
1097         (parse_links): Ditto.
1098         (parse_uid): Ditto.
1099         (check_path_safety): declarations need to go before code, not
1100         interspersed.  Move declaration of char* s.
1102         * xargs/testsuite/xargs.posix/rc-125.exp: Explain Savannah bug
1103         #19969.   This bug is not yet fixed.
1105         * find/defs.h: #include <stdint_.h>, for uintmax_t.  This should
1106         fix a compilation error on DEC C V5.9-005 on Digital UNIX V4.0F
1107         (Rev. 1229).  This is Savannah bug #19965, reported by Nelson
1108         Beebe.
1110         * find/defs.h: Don't include <errno.h>, since it is not needed in
1111         the header file itself.  The "extern int errno;" declaration is
1112         now obsolete.
1113         * find/parser.c: Include <errno.h>
1114         * find/pred.c: Dito
1115         * find/util.c: Ditto
1117 2007-05-24  James Youngman  <jay@gnu.org>
1119         * find/util.c (check_nofollow): If O_NOFOLLOW is defined but 0,
1120         act as if it is undefined.  This should prevent a runtime
1121         assertion failure on IRIX 6.5.  This fixes Savannah bug #19948,
1122         reported by Nelson Beebe.
1124         * m4/noreturn.m4: New file, testing for support of __attribute__
1125         ((__noreturn__)).  Defines jy_AC_ATTRIBUTE_NORETURN and sets
1126         HAVE_ATTRIBUTE_NORETURN.
1127         * configure.in: Call jy_AC_ATTRIBUTE_NORETURN.
1128         * find/defs.h (ATTRIBUTE_NORETURN): Define to nothing if
1129         HAVE_ATTRIBUTE_NORETURN is not set in config.h.  This should fix a
1130         compilation error with non-GCC compilers.   This is Savannah bug
1131         #19967, reported by Nelson Beebe.
1133         * configure.in (FINDLIBS): Update FINDLIBS to link against -lm for
1134         modf.   This fixed a link error on HP-UX.   This fixes Savannah
1135         bug #19966, reported by Nelson Beebe.
1136         * find/Makefile.am (LDADD): Use @FINDLIBS@
1138 2007-05-21  James Youngman  <jay@gnu.org>
1140         Release 4.3.6.
1142         * build-aux/Makefile.am (EXTRA_DIST): Added man-lint.sh.
1144         * locate/locate.c (drop_privs): pass the correct list of groups to
1145         setgroups().  Previously, if root invoked locate, their group ID
1146         would have been set to a random value.  The same bug also caused
1147         an array overrun past the end of the local array groups[].  The
1148         variable which gets overwritten by the buffer overrun on x86 is
1149         'what'.  The value of that variable is always changed before it is
1150         used, and so I believe that this buffer overrun will not cause a
1151         crash.  The only effect of the bug therefore would be for locate
1152         to change group to a random group ID since groups[0] is
1153         uninitialised.  On my test system this random group ID is 0
1154         anyway.  The effect does not depend on any externally-controllable
1155         information, so it is unlikely this is exploitable.   This bug is
1156         detailed as bug# 19923.
1158 2007-05-19  James Youngman  <jay@gnu.org>
1160         * find/find.1: Spurious .R directives (.R is not a directive)
1161         should be .B.   This fixes Savannah bug #19871.
1162         * build-aux/man-lint.sh: New file; verifies that the specified
1163         manual pages do not provoke error messages from troff.  This is
1164         used to detect further occurrences of Savannah bug #19871.
1165         * find/Makefile.am (dist-hook): Run findutils-check-manpages,
1166         which invokes man-lint.sh.
1167         * locate/Makefile.am (dist-hook): ditto
1168         * xargs/Makefile.am (dist-hook): ditto
1170         * .cvsignore: Ignore ylwrap, which automake-1.10 wants us to have
1171         a copy of for some reason
1173         * import-gnulib.sh (main): New option -a which just runs the
1174         autotools without reimporting gnulib.
1176         * Makefile.am (jy-regex-fix): The previous explanatory comment
1177         refers to the jy-regex-fix target, not to dist-hook, so it has
1178         been moved.
1180 2007-05-08  James Youngman  <jay@gnu.org>
1182         * find/defs.h (struct predicate.args): str is now const.
1184         * find/parser.c (get_comp_type): get_comp_type now takes a const
1185         char* parameter.
1186         (get_num): ditto
1187         (get_relative_timestamp): ditto.  Also use collect_arg().
1188         (collect_arg_stat_info): New function; collects a command-line
1189         argument and returns its xstat information, in one go.
1190         error(1,...)  is called if the stat fails.
1191         (parse_anewer): Use collect_arg().
1192         (parse_cnewer): ditto
1193         (parse_fprint): ditto
1194         (parse_fstype): ditto
1195         (parse_group): ditto
1196         (parse_ilname): ditto
1197         (parse_iname): ditto
1198         (parse_iwholename): ditto
1199         (parse_lname): ditto
1200         (insert_depthspec): ditto
1201         (parse_name): ditto
1202         (parse_newer): ditto
1203         (parse_wholename): ditto
1204         (parse_perm): ditto
1205         (parse_regextype): ditto
1206         (insert_regex): ditto
1207         (parse_samefile): ditto
1208         (parse_used): ditto
1209         (parse_user): ditto
1210         (insert_type): ditto
1211         (parse_time): ditto
1212         (parse_size): When the size argument is invalid but consists only
1213         of a valid suffix char, avoid issuing an error message about a
1214         blank argument.  Append the suffix letter again.
1215         (parse_xdev, parse_ignore_race, parse_noignore_race, parse_warn,
1216         parse_xtype): Remove casts to void for some function parameters
1217         that were, in fact, used.
1219         * find/testsuite/find.gnu/fprint-unwritable.exp: new test
1220         * find/testsuite/find.gnu/fprint0_stdout.exp: new test
1221         * find/testsuite/find.gnu/fprint0_stdout.xo: new test
1222         * find/testsuite/find.gnu/mindepth-arg.exp: new test
1223         * find/testsuite/find.gnu/mindepth-arg.xo: new test
1224         * find/testsuite/find.gnu/mindepth-badarg.exp: new test
1225         * find/testsuite/find.gnu/print_stdout.exp: new test
1226         * find/testsuite/find.gnu/print_stdout.xo: new test
1227         * find/testsuite/find.gnu/samefile-missing.exp: new test
1228         * find/testsuite/find.gnu/samefile-p-brokenlink.exp: new test
1229         * find/testsuite/find.gnu/samefile-p-brokenlink.xo: new test
1230         * find/testsuite/find.gnu/used-invarg.exp: new test
1231         * find/testsuite/find.gnu/used-missing.exp: new test
1232         * find/testsuite/find.gnu/user-invalid.exp: new test
1233         * find/testsuite/find.posix/group-empty.exp: new test
1234         * find/testsuite/find.posix/group-missing.exp: new test
1235         * find/testsuite/find.posix/name-missing.exp: new test
1236         * find/testsuite/find.posix/size-invalid.exp: new test
1237         * find/testsuite/find.posix/size-missing.exp: new test
1238         * find/testsuite/find.posix/typearg.exp: new test
1239         * find/testsuite/find.posix/user-empty.exp: new test
1240         * find/testsuite/find.posix/user-missing.exp: new test
1242 2007-05-06  James Youngman  <jay@gnu.org>
1244         * find/tree.c: (costlookup): Added pred_fls to the optimiser's
1245         predicate cost lookup table.
1247         * lib/printquoted.c (print_quoted): Change return value from void
1248         to int, to allow the caller to detect failures.
1249         * lib/printquoted.h (print_quoted): Change declaration
1250         accordingly.
1252         * find/defs.h (struct format_val): Incldue a 'filename' member so
1253         that we can provide more useful error messages (e.g. when we fail
1254         to flush or close an output file).
1255         (nonfatal_file_error): declare new function.
1257         * find/util.c (traverse_tree): Utility function which calls a
1258         callback on every node of the parse tree.
1259         (flush_and_close_output_files): Flush all output streams.  Close
1260         all output files.  Report any errors.
1261         (cleanup): Use traverse_tree() to invoke
1262         complete_pending_execdirs().
1263         (report_file_err): refactored error reporting function, extracted
1264         from fatal_file_error.
1265         (nonfatal_file_error): New function.
1267         * find/pred.c (checked_fprintf): New function, which performa an
1268         fprinf(), and checkes the result.  If the operation resulted in an
1269         error, a nonfatal error message is issued.
1270         (checked_print_quoted): Ditto, for print_quoted rather than
1271         fprintf.
1272         (checked_fwrite): Ditto for fwrite instead of fprintf.
1273         (checked_fflush): Ditto for fflush
1274         (do_fprintf): Use the checked_*() functions rather than their
1275         direct counterparts, to ensure that I/O errors are detected.  This
1276         fixes Savannah bug #19416.
1277         (pred_fls): Use args.printf_vec instead of args.stream, which has
1278         now been removed.
1279         (pred_ls): just call pred_fls.
1280         (pred_fprint0): use args.printf_vec, instead of the now removed
1281         args.stream.
1282         (pred_print0): just call pred_fprint0
1284         * find/parser.c: (insert_fprintf): Make the caller collect the
1285         format argument from the argument list.
1286         (open_output_file): Enhance to set up defaults in
1287         our_pred->args.printf_vec as well as opening the output file.
1288         Also record the filename for possible later use in an error
1289         message.
1290         (collect_arg): Convenience function for collecting an argument
1291         from the argument list.
1292         (insert_fls): Refactored the body of parse_fls out so that
1293         parse_ls can use it.
1294         (parse_fls): call insert_fls.
1295         (parse_ls): ditto
1296         (parse_fprint): Instead of setting up our_pred->args.printf_vec
1297         manually, call open_output_file() to do it.
1298         (parse_print): Same, but by calling open_stdout().
1299         (insert_fprint): Make the caller collect the filename argument,
1300         and delegate the setup of our_pred->args.printf_vec to either
1301         open_output_file() (for parse_fprint and parse_fprint0) or
1302         open_stdout (parse_print0).
1303         (parse_fprint0): Use collect_arg().
1304         (parse_print0): Use insert_fprint(), just like parse_fprint0.
1305         (parse_printf): Use collect_arg().
1306         (parse_fprintf): Use collect_arg().
1308 2007-05-05  James Youngman  <jay@gnu.org>
1310         Release 4.3.5.
1312         * find/parser.c (parse_samefile): Hold a file descriptor open on
1313         the reference file in order to prevent pred_samefile getting
1314         fooled by inode reuse.  Pay attention to race conditions on
1315         systems lacking O_NOFOLLOW when the -P option is in force.  This
1316         fixes Savannah bug #19806.
1318         * find/defs.h (struct samefile_file_id): New struct, like dir_id
1319         but including a file descriptor on the reference file.
1321         * find/pred.c (pred_type): -type should return false if the file
1322         has mode 00000, as opposed to having an assertion failure.   This
1323         fixes Savannah bug #16378.
1325         * find/ftsfind.c (consider_visiting): Issue a warning message if
1326         none of the mode bits are set for a file (i.e. st_mode==00000).
1327         * find/util.c (get_statinfo): ditto
1328         * find/util.c (hook_fstatat): Introduced debug code (normally
1329         disabled) for testing Savannah bug #16378.
1331 2007-05-01  James Youngman  <jay@gnu.org>
1333         * find/find.c (wd_sanity_check): corrected the type of %ld fprintf
1334         arguments in error messages.
1335         * find/fstype.c: include "error.h" for the declaratio of error().
1336         * find/ftsfind.c: include "error.h" for the declaratio of
1337         error().  Include dircallback.h for the correct declararion of
1338         run_in_dir().
1339         * find/parser.c: include getdate.h (for declaration of getdate)
1340         and error.h (for the declaration of error).
1341         (find_parser): Removed unused variable p.
1342         * find/pred.c (pred_timewindow): Removed unused variable delta.
1343         (do_fprintf): Removed unused variable cc.
1344         * find/tree.c: Include error.h (for the declaration of error()).
1345         (build_expression_tree): removed sourious extra arguments in call
1346         to error().
1347         * find/util.c: include error.h.
1348         * lib/buildcmd.h (get_line_max): Comment out unused function.
1349         * lib/listfile.c: Include dircallback.h.
1350         * locate/code.c: Include errno.h, erorr.h, progname.h and
1351         xlloc.h.
1352         (inerr): New function for reporting read errors.
1353         (outerr): New function for reporting output errors.
1354         (main): Call inerror when fgets fails.  Call outerr when fwrite
1355         or putc or putw fails.
1356         * locate/frcode.c (put_short): Return boolean value indicating
1357         success.
1358         (outerr): New function for reporting write errors.
1359         (main): Call outerr if call to putc() or puts() or put_short()
1360         fails.
1361         * locate/locate.c (search_one_database): diagnose corruption if a
1362         traditional-style database is too short to include a complete
1363         bigram table.
1365 2007-04-30  James Youngman  <jay@gnu.org>
1367         * find/defs.h: Change all predicate functions to take a const
1368         char* argument as the pathname, not a char*.  Modify the parser
1369         table definition accordingly.
1370         * find/parser.c: Ditto
1371         * find/pred.c: Ditto
1372         * find/pred.c (do_fprintf): copy the pathname string for the %H
1373         and %h cases, since we can no longer modify the string in place.
1374         * lib/listfile.c (print_name, list_file,
1375         print_name_without_quoting, print_name_with_quoting): Use const
1376         char * param for pathname.
1377         * lib/listfile.h (list_file): Use const char * param for
1378         pathname.
1380 2007-04-29  James Youngman  <jay@gnu.org>
1382         * find/defs.h: Declare fatal_file_error(), a function for
1383         reporting immediately-fatal file errors, which appropriately
1384         quotes the file name.  The function does not return.  Also define
1385         ATTRIBUTE_NORETURN.  Record the currently-required quoting style
1386         in struct options.
1388         * find/find.c, find/ftsfind.c, find/parser.c, find/pred.c,
1389         find/util.c: Call fatal_file_error() for fatal file errors.  Use
1390         quotearg_n_style() to quote filenames which are used in error
1391         message that aren't fatal.  Use options.err_quoting_style as the
1392         quoting style.  This fixes Savannah bug #18203.
1393         * locate/locate.c: ditto
1394         * xargs/xargs.c: ditto
1396         * lib/listfile.c: To use alloca, just #include <alloca.h>.  Gnulib
1397         handles the rest.  Also these days, <stdlib.h> and <string.h> can
1398         just be included unconditionally.
1399         * lib/qmark.c: Fixed comment on first line describing the module.
1401 2007-04-29  Michael Haubenwallner <michael.haubenwallner@salomon.at> (Trivial Change)
1403         * find/defs.h (pred_open) Rename to pred_openparen to avoid
1404         problems with the macrtos which build the parser tabnles on
1405         platforms where 'open' is in fact a macro whcih expands to
1406         open64.   The problem was that token pasting put pred_open64 into
1407         the parser table, but the function was still defined as
1408         parse_open.   This fixes Savannah bug #19371.
1409         (pred_close): ditto
1410         * find/parser.c (parse_open, parse_close): ditto.  Also change
1411         repferences to pred_open and pred_close similarly.
1412         * find/parser.c (parse_openparen, parse_closeparen): ditto
1414 2007-04-28  James Youngman  <jay@gnu.org>
1416         * find/testsuite/find.gnu/deletedir.exp,
1417         find/testsuite/find.gnu/deletedir.xo: New test.
1418         * find/testsuite/find.gnu/deletefile.exp,
1419         find/testsuite/find.gnu/deletefile.xo: New test.
1420         * find/testsuite/Makefile.am: Distribute the new tests
1421         deletefile.exp and deletedir,exp, with their expected-output (.xo)
1422         files too.
1423         * find/testsuite/config/unix.exp (find_start): Add a new "setup"
1424         parameter called just before each time find is invoked.  This
1425         allows last-minute tasks to be performed.  This feature is
1426         essential for find commands that modify the filesystem, since
1427         otherwise we cannot use our strategy of invoking both binaries at
1428         each optimisation level.
1430         * find/util.c (optionh_stat, optionp_stat, optionl_stat): Assert
1431         that state.cwd_dir_fd is valid.
1433         * find/parser.c (parse_delete): Set need_stat to false, since we
1434         don't need the stat information in pred_delete.
1435         * find/pred.c (pred_delete): If unlinkat() with a zero flags
1436         parameter fails with errno==EISDIR, just try again with
1437         flags=AT_REMOVEDIR.  That way we normally avoid the cost of a
1438         stat.  If we happen to have the stat information to hand anyway,
1439         we make sure we get it right the first time.
1441         * lib/buildcmd.c (bc_init_controlinfo): Eliminate confusing extra
1442         variable arg_max.  Add return value
1443         BC_INIT_CANNOT_ACCOMODATE_HEADROOM for the case where the
1444         environment itself is not too large, but the required headroom
1445         cannot also be accomodated.  The caller now passes in the amount
1446         of headroom required.
1447         (bc_use_sensible_arg_max): Use the environment size consistently;
1448         this is accounted for already in posix_arg_size_max, so there is
1449         no need to re-measure the size of the environment.
1450         * lib/buildcmd.h: Define BC_INIT_CANNOT_ACCOMODATE_HEADROOM and
1451         add the headroom parameter to the prototype of bc_init_controlinfo().
1452         * xargs/xargs.c (main): Define XARGS_POSIX_HEADROOM as 2048 and
1453         use that symbolic value.  Pass XARGS_POSIX_HEADROOM to
1454         bc_init_controlinfo().  Handle the case where
1455         BC_INIT_CANNOT_ACCOMODATE_HEADROOM is returned by
1456         bc_init_controlinfo().
1457         * find/parser.c (new_insert_exec_ok): Pass the required headroom to
1458         bc_init_controlinfo() and handle the error return
1459         BC_INIT_CANNOT_ACCOMODATE_HEADROOM.
1461         * xargs/xargs.1: Correct the description of the default value and
1462         maximum value for the -s option of xargs.
1464         * xargs/xargs.c (main): Modify the assertions not to assume that
1465         bc_ctl.arg_max is 2KiB less than ARG_MAX, since sysconfig() may
1466         have returned a value for _SC_ARG_MAX which is greater.  For
1467         example, AIX 5.3 can do this.  This should fix Savannah bug
1468         #19391.
1470 2007-04-25  James Youngman  <jay@gnu.org>
1472         * find/tree.c (predlist_dump, predlist_merge_nosort): These
1473         functions were unused and commented out.  Removed.
1474         (mark_stat) No longer used.  Removed.
1475         (mark_type) No longer used.  Removed.
1477         * find/parser.c (new_insert_exec_ok): When checking for {} in the
1478         arguments to -exec..., use mbsstr() rather than strstr() in order
1479         to cope bettwe with multibyte locales.
1481         * lib/buildcmd.c: Don't define mbsstr() locally.  Instead, call
1482         gnulib's mbsstr().
1484 2007-04-24  James Youngman  <jay@gnu.org>
1486         * lib/buildcmd.c: Added some comments outlining how we might
1487         change the implementation to support figuring out the real ARG_MAX
1488         limit.
1490 2007-04-23  James Youngman  <jay@gnu.org>
1492         * find/defs.h (struct predicate_performance_info): New data
1493         structure for holding perofmance statistics.
1494         (struct predicate: include predicate_performance_info
1495         (apply_predicate): change from macro to function
1496         (pred_is): new macro, for predicate identity testing
1497         (enum DebugOption): Added DebugSuccessRates
1498         * find/find.1: Document option "-D rates" which turns on
1499         DebugSuccessRates.
1500         * doc/find.texi: ditto
1501         * find.c (main): Call show_success_rates() before exiting.
1502         (apply_predicate): remove the macro defintion, declare equivalent
1503         function in defs.h.
1504         * find/ftsfind.c (main): Call show_success_rates() before
1505         exiting.  Use apply_predicate().
1506         (show_outstanding_execdirs): use pred_is().
1510 2007-04-22  Eric Blake  <ebb9@byu.net>
1512         * xargs/xargs.c (main): Don't assume LINE_MAX exists (i.e. is
1513         #defined).
1515         * locate/updatedb.sh (PRUNEPATHS): Exclude /proc by default.
1517 2007-04-22  James Youngman  <jay@gnu.org>
1519         * doc/Makefile.am: When cross-compiling, 'make clean' should not
1520         delete doc/regexprops.texi, becaue we can't regenerate it.  Fixes
1521         Savannah bug #19658.
1523         * locate/Makefile.am (BUILT_SOURCES): Automatically generate
1524         dblocation.texi, which records the default database location.
1525         * doc/find.texi: Collect the default database location from
1526         ../locate/dblocation.texi, and use LOCATE_DB in various places.
1527         Document the fact that updatedb can generate slocate-compatible
1528         databases.  Document the --dbformat option of updatedb.
1529         * locate/frcode.c (main): Implemented the -S option which allows the
1530         generation of an slocate secure database.
1531         * locate/updatedb.sh: New option --dbformat which selects which
1532         database format to use.
1533         * locate/updatedb.1 (--dbformat): Document the new option.
1536         * find/testsuite/find.gnu/access.exp: fixed a typo which prevented
1537         the test correctly being skipped when run as root.   This re-fixes
1538         Savannah bug# 18414, I hope.
1540 2007-04-21  James Youngman  <jay@gnu.org>
1542         Release 4.3.4.
1544         * find/locate/locatedb.5: Clarifications to the description of the
1545         LOCATE02 format.  Organised the material under a number of
1546         headings.  Documented the slocate database format.
1548 2007-04-21  James Youngman  <jay@gnu.org>
1550         * find/testuite/Makefile.am (EXTRA_DIST_EXP): added
1551         find/testsuite/find.posix/sv-bug-19617.exp
1553 2007-04-20  Maxim V. Dziumanenko <dziumanenko@gmail.com>
1555         * po/uk.po: New Ukranian translation.
1556         * configure.in: Added "uk" for Ukranian.
1558 2007-04-19  Peter Breitenlohner <peb@mppmu.mpg.de> (Trivial change)
1560         * locate/bigram.c (main): Set the initial pathname to the empty
1561         string, to avoid decompression problems if the initial pathname
1562         begins with a space.  This fixes Savannah bug #19484.
1563         * locate/code.c (main): ditto
1565 2007-04-19  James Youngman  <jay@gnu.org>
1567         * locate/updatedb.1 (--help): Option name should be bold, not
1568         italic.
1570         * find/testsuite/find.gnu/execdir-hier.exp: Avoid running
1571         -execdir based tests if "." is on $PATH.  Fixes Savannah bug
1572         #19634.
1573         * find/testsuite/find.gnu/execdir-in-unreadable.exp: ditto
1575         * find/testsuite/config/unix.exp (touch): New procedure touch,
1576         replacing "exec touch" for greater efficiency.
1577         * find/testsuite/find.posix/depth1.exp: Change "exec touch" to
1578         "touch".
1579         * find/testsuite/find.posix/files-not-expressions1.exp: ditto
1580         * find/testsuite/find.posix/files-not-expressions2.exp: ditto
1581         * find/testsuite/find.posix/files-not-expressions3.exp: ditto
1582         * find/testsuite/find.posix/links.exp: ditto
1583         * find/testsuite/find.posix/perm-vanilla.exp: ditto
1584         * find/testsuite/find.posix/sv-bug-15235.exp: ditto
1585         * /find/testsuite/find.posix/sv-bug-19613.exp: ditto
1587         * find/testsuite/find.gnu/access.exp: Fix savannah bug #18414 by
1588         skipping the test if the user can read any file (e.g. is root or
1589         is an Admin user under Cygwin).
1591 2007-04-17  James Youngman  <jay@gnu.org>
1593         * import-gnulib.config (gnulib_version): Use the 2007-04-17
1594         version of gnulib to fix a compilation error on Cygwin.  This
1595         fixes Savannah bug #19619.
1597         * find/testsuite/find.posix/sv-bug-19605.exp: New test, for
1598         Savannah bug #19605.
1599         * find/testsuite/find.posix/sv-bug-19617.exp: New test, for
1600         Savannah bug #19617.
1601         * find/ftsfind.c (consider_visiting): if fts_read() returns
1602         enf->fts_info==FTS_NS, check for and diagnose a symbolic link
1603         loop.  This fixes Savannah bugs #19605 and #19617.
1605         * find/find.c (process_path): collect the stat information for
1606         directories even if we already have the mode information, because
1607         we need to use the members st_nlink and st_rdev in for the leaf
1608         optimisation and loop detection, respectively.  This fixes
1609         Savannah bug #19616.
1611         * find/ftsfind.c (is_fts_enabled): Return a copy of ftsoptions,
1612         not a copy of the (uninitialised) input argument.  This fixes
1613         Savannah bug #19615.
1615         * find/ftsfind.c (consider_visiting): If fts_read() returned
1616         FTS_NS, then remember that the stat information is not valid, and
1617         therefore don't set state.have_type or state.have_stat.  This
1618         fixes Savannah bug #19613.
1620         * find/testsuite/find.posix/sv-bug-91613.exp,
1621         * find/testsuite/find.posix/sv-bug-91613.xo: New test for Savannah
1622         bug 19613 (assertion failure on symbolic link loop).
1624         * find/testsuite/config/unix.exp: Correctly diagnose a test case
1625         which fails because find was expected to fail and instead
1626         succeeded.
1627         * find/testsuite/find.gnu/exec-many-rtn-failure.exp: The child
1628         process in this test should return non-zero, not zero.  Therefore
1629         run "false" instead of "true".
1631 2007-04-15  James Youngman  <jay@gnu.org>
1633         Release 4.3.3.
1635         * find/find.1: "-printf %b": blocks are 512 bytes.   Fixes
1636         Savannah bug #19596.
1638         * doc/Makefile.am (regexprops.texi): Do not use $(RM) because many
1639         versions od make do not set it, and so it expands to nothing.
1640         This avoids suprious emission of the regexprops.texi file to stdout.
1642         * find/find.c (main, safely_chdir_lstat, safely_chdir_nofollow):
1643         Only use O_LARGEFILE if it is #defined (NetBSD-3.1 does not define
1644         it).
1645         * find/ftsfind.c (main): ditto
1646         * find/pred.c (pred_empty, prep_child_for_exec): ditto
1649         * import-gnulib.config: Update to gnuliv 2007-04-14.
1651         * lib/Makefile.am, import-gnulib.sh: Create lib/gnulib-version.c
1652         in import-gnulib.sh, not in lib/Makefile.
1654         * build-aux/Makefile.am: New file; distribute check-tstfiles.sh.
1656         * locate/Makefile.am: mkinstalldirs is now in build-aux.
1658         * doc/Makefile.am: We also need getdate.texi.
1660 2007-04-14  James Youngman  <jay@gnu.org>
1662         * doc/.cvsignore: Ignore getdate.texi
1664         * find/defs.h: #include "buildcmd.h" near the top of the file, not
1665         in the middle.
1667         * all: Pass O_LARGEFILE when opening directories.
1669         * all: Changes to allow us to use the FTS_CWDFD mode of fts().
1670         These are quite extensive changes, and are detailed below.
1672         * find/defs.h (struct exec_val): New member dirfd, the directory
1673         in which the exec should take place.
1674         (is_fts_enabled): Tell the caller which flags are passed to
1675         fts_open().
1676         (get_start_dirfd): New function.  Returns value of start_desc.
1677         (get_current_dirfd): New function.  Returns the fd of the
1678         directory fts is currently traversing.  If this is the current
1679         directory, AT_FDCWD is returned.
1680         (complete_pending_execdirs): takes a new argument, indicating
1681         where the exec is to take place.  Ugh.
1682         (get_info): the file name is taken from state.rel_pathname, so
1683         we don't need it as a function argument.
1684         (enum DebugOption): Added DebugExec ("-D exec").
1685         (struct state): Added cwd_dir_fd, the directory we are examining
1686         with fts().  If fts() is not in use, this is AT_FDCWD.  Also added
1687         execdirs_outstanding, which is a boolean which tells us if there
1688         are any not-yet-execed -execdir or -okdir actions (with +).  This
1689         is not really used yet.
1690         * find/ftsfind.c (set_close_on_exec): New function.
1691         (get_current_dirfd): Return an fd open on the directory that fts()
1692         is currently examining.
1693         (left_dir): Signal that our previous ides of which dirctory fts is
1694         searching is now out of date.
1695         (inside_dir): Indicate which directory fts is now searching.
1696         (complete_execdirs_cb): Callback for run_in_dir() to complete
1697         pending execdirs in this directory.
1698         (show_outstanding_execdirs): Supports "-D exec"
1699         consider_visiting(): Do not allow building-up of pending execdirs,
1700         as a workaround to Savannah bug #18466.
1701         (ftsoptions): Make this a static module variable.
1702         * find/parser.c (insert_exec_ok): New parameter describing which
1703         directory the exec should occur in.
1704         (parse_version): for FTS, add a list of options being used.
1705         * find/pred.c (pred_and, pred_comma): No need to pass the relative
1706         path name to get_info(), it can pull it from state.rel_pathname.
1707         (pred_delete): use unlinkat().
1708         (pred_empty): use openat().
1709         (new_impl_pred_exec): Accept an fd parameter describing where the
1710         exec is to take place.
1711         (pred_executable, pred_writable, pred_readable): Use run_in_dir()
1712         to ensure that access() is called in a working directory which is
1713         suitable for the pathname we pass in.
1714         (prep_child_for_exec): In the child process, change to the
1715         appropriate directory becore the exec().
1716         * find/util.c (debugassoc): Support "-D exec".
1717         (get_info): No longer need to pass the relative path to
1718         get_statinfo().
1719         (do_complete_pending_execdirs): Refactored body of what used to be
1720         complete_pending_execdirs().
1721         (complete_pending_execdirs): Pull body out into
1722         do_complete_pending_execdirs() and call that only if there is work
1723         to do.
1724         (fallback_stat, optionh_stat, optionp_stat, optionl_stat): Use fstatat().
1725         (get_start_dirfd): New access function for starting_desc.
1726         * find/testsuite/find.gnu/execdir-hier.exp: New test
1727         * find/testsuite/find.gnu/execdir-hier.xo: Expected outut for new test
1728         * lib/dircallback.c, lib/dircallback.h: New function,
1729         run_in_dir(), which runs a callback function in a specified
1730         directory.
1731         * lib/listfile.c: Use run_in_dir() to call readlink() in the right
1732         directory.
1733         (get_link_name_at): Call get_link_name_cb via run_in_dir.
1734         (get_link_name_cb): New callback function, wrappting
1735         get_link_name().
1737         * find/testsuite/find.gnu/execdir-pwd.exp: Since we have disabled
1738         thebuilding-up of command lines for -execdir, Savannah bug #18466
1739         has been neutralised (but not fixed - we just don't allow the
1740         problem circumstance to occur).
1742 2007-04-09  James Youngman  <jay@gnu.org>
1744         * doc/find.texi: Change fully-specified @node directives to
1745         single-argument @node directives in order to accomodate the
1746         inclusion of getdate.texi.
1748         * doc/find.texi: Document -newerXY.
1750         * doc/find.texi (Security Considerations): updated to describe
1751         differences in the fts-based implementation.
1753         * find/find.1: Indicate that testing the birth time where this is
1754         not supported produces a negative result for files where the birth
1755         time is not known (or a fatal error if the file of interest is a
1756         reference file).
1758 2007-04-08  James Youngman  <jay@gnu.org>
1760         * configure.in: Set @AUXDIR@ (to the location of the build-aux
1761         directory).
1762         * build-aux/check-testfiles.sh: New script, which checks that all
1763         the DejaGnu test files have been included in the distribution and
1764         (more helpfully) lists any that are missing.
1765         * Makefile.am (findutils-check-testfiles): Use
1766         build-aux/check-testfiles.sh.
1767         * locate/testsuite/Makefile.am (EXTRA_DIST_EXP): distribute
1768         locate/testsuite/locate.gnu/sv-bug-14535.exp.
1770         * config.rpath, depcomp, missing: Moved into build-aux/.
1771         * configure.in(AC_CONFIG_AUX_DIR): Find aux files in $SRCDIR/build-aux,
1772         not in $SRCDIR.
1774 2007-03-31  James Youngman  <jay@gnu.org>
1776         * find/tree.c (build_expression_tree): Issue more specific error
1777         messages; distinguish the case where the predicate is invalid from
1778         the cases where a required argument is missing, and a supplied
1779         argument is invalid.
1781         * import-gnulib.config (gnulib_version): Update to 2007-03-30
1782         version of gnulib.
1784 2007-03-28  James Youngman  <jay@gnu.org>
1786         * find/defs.h (set_stat_placeholders): utility function for
1787         initialising the sturct stat fields that NetBSD doesn't always set
1788         (like st_birthtime where the file is on a filesystem not
1789         supporting birthtime).
1790         * find/util.c: set_stat_placeholders(): new function
1791         (get_statinfo): Call set_stat_placeholders().
1792         (optionh_stat, optionl_stat, optionp_stat): ditto
1793         * find/find.c (main, wd_sanity_check, safely_chdir_lstat,
1794         process_dir): use set_stat_placeholders().
1795         * find/parser.c (parse_anewer, parse_cnewer, parse_newer,
1796         parse_newerXY): ditto.
1797         (get_stat_Ytime): Support birth time ('B').
1798         (parse_newerXY): Support st_birthtime.
1799         * find/fstype.c (set_fstype_devno): Use set_stat_placeholders().
1800         * find/pred.c (pred_xtype): Use set_stat_placeholders().
1801         (pred_newerXY): Support birth time.
1802         (pred_fprintf, format_date): ditto ("%Bx").
1804 2007-03-25  James Youngman  <jay@gnu.org>
1806         * xargs/xargs.c (main): For "xargs --show-limits" where stdin is a
1807         terminal, warn the user that the program specified (or /bin/echo)
1808         will be run at least once, if that is what will happen.
1810 2007-03-24  James Youngman  <jay@gnu.org>
1812         * import-gnulib.sh: Added option -d, allowing the user to use a
1813         local version of gnulib, perhaps because they have local changes.
1815 2007-03-13  James Youngman  <jay@gnu.org>
1817         * find/parser.c (parse_quit): Estimated success rate of -quit is
1818         100%.
1820 2007-03-08  James Youngman  <jay@gnu.org>
1822         * find/find.1 (TESTS): Document -newerXY, indicate that reference
1823         files are only examined once.
1824         (HISTORY): Indicate when various features were added
1825         (BUGS): Indicate that -ok ignores LC_COLLATE.
1827 2007-03-07  James Youngman  <jay@gnu.org>
1829         * import-gnulib.config: (gnulib_version): Use gnulib version
1830         2007-03-05
1831         (modules): Added getdate
1833         * find/Makefile.am (LDADD): Added @LIB_CLOCK_GETTIME@ for
1834         clock_gettime(), if it is available.
1836         * find/defs.h: (enum xval): New enumeration, representing the
1837         value of X used in the -newerXY test.  It is stored in the reftime
1838         member of 'union args'.
1839         (struct predicate): reftime is also used by -newerXY.
1840         (enum arg_type): Added ARG_SPECIAL_PARSE for -newerXY, because the
1841         parsing function needs to look at the name of the test.
1842         (struct options): start_time is now a struct timespec, not a
1843         time_t.
1845         * find/parser.c: (parse_newerXY): New parsing function for
1846         -newerXY, a feature copied from FreeBSD (also present other BSD
1847         implementations too)
1848         (get_stat_Ytime): New function; returns st_atime, st_mtime or
1849         st_ctime from struct stat, as a timespec, as required according to
1850         the value of Y in -newerXY.
1851         (found_parser): Factored the tail out of find_parser.
1852         (find_parser): Moved tail into found_parser.  Add special handling
1853         for -newerXY.
1854         (do_parse_xmin): New argument xv, indicating the value to which
1855         predicate->reftime.xval should be set.
1856         (parse_amin): Pass XVAL_ATIME to do_parse_xmin.
1857         (parse_cmin): Pass XVAL_CTIME to do_parse_xmin.
1858         (parse_mmin): Pass XVAL_MTIME to do_parse_xmin.
1859         (parse_newer): Set args.reftime.xval to XVAL_MTIME.
1861         * find/pred.c (pred_table): added pred_XY.
1862         (pred_fls): options.start_time is now a struct timespec, so just
1863         pass the tv_sec member to list_file.
1864         (pred_ls): ditto
1865         (pred_newerXY): New function, implementing -newerXY.
1867         * find/tree.c (costlookup): pred_newerXY needs stat information.
1868         (build_expression_tree): For predicates of type ARG_SPECIAL_PARSE,
1869         pass them in the name of the predicate (that is, don't advance
1870         argc).
1872         * find/util.c (now): New function for setting options.start_time.
1873         Use nanoseconds where it is available.
1874         (set_option_defaults): Use now() rather than time().
1876 2007-03-03  James Youngman  <jay@gnu.org>
1878         * import-gnulib.sh: Pass --with-tests to gnulib-tool so that relevant
1879         gnulib unit tests are built and are run for "make check".
1881         * configure.in (AC_CONFIG_FILES): Add tests/Makefile (the makefile
1882         for the gnulib unit tests).
1884         * Makefile.am: Add 'tests' to SUBDIRS.
1886         * .cvsignore: Add 'tests'.
1888         * import-gnulib.config (modules): Also use Gnulib modules
1889         mbscasestr and mbsstr in order to perform correct string searching
1890         in multibyte strings, in order to fix Savannah bug #14535.
1892         * locate/testsuite/locate.gnu/sv-bug-14535.exp: new test case for
1893         Savannah bug #14535.
1895         * locale/locate.c (visit_substring_match_nocasefold): Use mbsstr
1896         rather than strstr, in order to correctly support multibyte
1897         strings.
1898         (visit_substring_match_casefold): Use mbscasestr rather than
1899         strstr in order to correctly support case-folding in a multibyte
1900         environment (e.g. with UTF-8 characters outside the normal ASCII
1901         range).  This fixes Savannah bug #14535.
1902         (struct casefolder): No longer needed, removed
1903         (visit_casefold): No longer needed, removed.
1904         (lc_strcpy): No longer needed, removed.
1905         (search_one_database): Removed redundant variable need_fold and
1906         the code which used to set it.  It had controlled the adding of
1907         the visitor function visit_casefold, but that function itself is
1908         no longer required.  Also there is now no need to pass in a
1909         lower-case argument to visit_substring_match_casefold, so don't
1910         pass that in the context argument.
1912         * locate/locate.c (usage): Fixed typo.
1914 2007-03-01  James Youngman  <jay@gnu.org>
1916         * doc/find.texi (Multiple Files): Document the construct
1917         -exec sh -c 'cmd "$@" final-args' {} + - fixing Savannah bug
1918         #18554.
1920 2007-02-28  James Youngman  <jay@gnu.org>
1922         * import-gnulib.config: New file.  Specifies which version of
1923         Gnulib we need to check out and build from.
1925         * import-gnulib.sh: Use import-gnulib.config.
1927         * README-CVS: Describe the new method of building from CVS.
1929         * lib/gnulib-version.h, lib/gnulib-version.sh: New files; code for
1930         reporting which version of Gnulib we built findutils from.
1932         * lib/Makefile.am: Build gnulib-version.c out of
1933         ./gnulib-version.config by using lib/gnulib-version.sh.
1935         * Makefile.am: Ship import-gnulib.config and import-gnulib.sh.
1937         * .cvsignore: Ignore gnulib-cvs
1939         * lib/.cvsignore: Ignore gnulib-version.c
1941         * find/parser.c, locate/code.c, locate/locate.c, xargs/xargs.c:
1942         Report which version of Gnulib we were built from.
1944 2007-02-25  James Youngman  <jay@gnu.org>
1946         * find/find.c (process_dir): Removed duplicated (shadow)
1947         declaration of did_stat.  Assert that we did not use subdirs_left
1948         if subdirs_unreliable is true.
1950         * find/parser.c (parse_size): Removed unused variable rate.
1951         (parse_time): Removed unused variable num_days_approx.
1952         (get_num): Removed unused variables ok and suffixes.
1954         * find/pred.c (do_fprintf): Indicate that the function needs a
1955         return value (referring to Savannah bug #19146).
1957         * find/tree.c (predlist_dump): Commented out unused function
1958         (predlist_merge_nosort): Commented out unused function
1959         (getrate): Returns type is float, so return 1.0f not 1.0.
1960         (calculate_derived_rates): Removed unused variable rate.  Use a
1961         switch statement rater than ifs.
1963         * find/util.c (usage): Removed unused variable i.
1965         * lib/buildcmd.c (bc_do_insert): Removed unused variable
1966         need_prefix.
1967         (bc_init_controlinfo): annotate a line (with #warning) which is
1968         probably a bug.
1970         * locate/locate.c: #include <grp.h> for the benefit of the
1971         setgroups() call in drop_privs.
1972         (slocate_db_pathname): Commented out unused variable.
1973         (set_max_db_age): error command has no format directive, so
1974         remove the unused extra argument.
1975         (looking_at_slocate_db): Removed unused variables magic and
1976         lenwanted.  Fix bug where result is indeterminate (due to falling
1977         off the end of the function) if the first character is a nondigit.
1978         (search_one_database): Eliminate (spurious) compiler warning
1979         rlating to possible use before initialisation of slocate_seclevel.
1981         * xargs/xargs.c (get_char_oct_or_hex_escape): Eliminate spurious
1982         compiler warning on variable p.
1983         (main): Removed unused varible env_too_big
1986 2007-02-24  James Youngman  <jay@gnu.org>
1988         * find/parser.c (pred_sanity_check): define this function even for
1989         _NDEBUG, but do nothing in that case.
1990         (estimate_timestamp_success_rate): correct (invert) the sense of
1991         the subtraction used to find the file's age.
1993         * import-gnulib.sh (findutils_modules): Import Gnulib modules
1994         xstrtod and timespec.
1996         * find/parser.c (get_comp_type): Refactored out of get_num.
1997         (get_num): call get_comp_type to find the comparison type.
1998         (get_relative_timestamp): new function replacing get_num_days.
1999         (get_num_days): Remove.
2000         (do_parse_xmin): Support fractional arguments and
2001         nanosecond timestamps.
2002         (parse_used): ditto
2003         (parse_time): ditto
2005         * xargs/xargs.c (read_line): Give a warning message if a NUL is
2006         found in the input (this function is called only when -0 is not in
2007         effect).
2009         * xargs/xargs.c (nullwarning_given): New variable indicating if
2010         the NULL character warning had already been issued.
2012         * doc/find.texi (Multiple Files): Describe how trailing blanks are
2013         handled when -L is in effect.
2015         * xargs/xargs.c (read_line): Use an enum rather than
2016         preprocessor macro values for the lexer state.
2018         * lib/savedirinfo.c (free_dirinfo): Fixed memory leak (trivial
2019         patch from Supriya Kannery)
2021 2007-01-22  James Youngman  <jay@gnu.org>
2023         * .cvsignore (install-sh): Ignore, since the install-sh file is no
2024         longer held in the findutils CVS repository.
2026         * find/testsuite/config/unix.exp (find_start): allow a test to be
2027         skipped for either the old or the new find executable.
2028         * find/testsuite/find.gnu/execdir-pwd.exp,
2029         find/testsuite/Makefile.am:
2030         New test, covering Savannah bug #18466.  This test currently fails
2031         for the ftsfind binary and passes for the oldfind binary.  Due to
2032         a limitation in  the way that we perform the test, we can't tell
2033         the test suite to expect a failure in the new binary but not the
2034         old.  Therefore we skip the test for the old binary.
2036         * lib/regeprops.c (describe_regex_syntax): fixed a typo in the text
2037         * doc/find.texi (Multiple Files): fixed a typo
2039 2007-01-16  James Youngman  <jay@gnu.org>
2041         (ctime_format): format the time manually (rather than using ctime)
2042         in order to include the sub-second part of the time.
2043         (weekdays, months): new static variables used by ctime_format.
2044         (format_date): append a the sub-second part of the timestamp to
2045         the seconds part of date/time output.
2047 2007-01-15  James Youngman  <jay@gnu.org>
2049         * find/defs.h (time_val): define struct; use timespec to hold time
2050         in the 'reftime' member.
2051         (args): use struct timespec instead of time_t for predicates
2052         -newer, -anewer, -cnewer.  * find/parser.c (includes): include
2053         stat-time.h.
2054         (parse_anewer, parse_cnewer, parse_newer): use struct timespec to
2055         hold timestamps.  * find/pred.c (compare_ts): new function for
2056         comparing timestamps in struct timespec.
2057         (pred_anewer, pred_cnewer, pred_newer): use compare_ts() to
2058         compare timestamps (hence takinng acoung of sub-second
2059         granularity).
2060         * find/ftsfind.c: Various improvements to comments.
2061         (is_fts_enabled): Newline before function name to comply with GNU
2062         coding standard.
2064 2007-01-13  James Youngman  <jay@gnu.org>
2066         * lib/regexprops.c (describe_regex_syntax): fixed typo
2068         * xargs/xargs.c (read_line): Fixed Savannah bug# 18714; VT and FF
2069         are not separators, according to POSIX (in the POSIX locale).
2071         * xargs/testsuite/Makefile.am,
2072           xargs/testsuite/input/formfeeds.xi,
2073           xargs/testsuite/input/verticaltabs.xi,
2074           xargs/testsuite/xargs.posix/sv-bug-18714.exp,
2075           xargs/testsuite/xargs.posix/sv-bug-18714.xo,
2076           xargs/testsuite/xargs.posix/sv-bug-18714b.exp,
2077           xargs/testsuite/xargs.posix/sv-bug-18714b.xo: Tests for Savannah
2078           bug #18714.
2080         * xargs/xargs.c (usage): Removed suprious "[" in --help output
2081         (fixes Savannah bug #18384).
2083         * locate/locate.c: Implement the option --max-database-age.
2084         (main) Accept the option.
2085         (set_max_db_age): Parse the argument.
2087         * locate/locate.c (dolocate): If the database is more than N days
2088         old, indicate its actual age in the warning message we produce.
2090         * locate/locate.1, docs/find.texi: Document --max-database-age
2092         * THANKS: Thank Dean Gaudet for the idea of -sparse.
2094         * po/findutils.pot: Updated from Translation Project
2096         * po/ga.po, po/pl.po, po/nl.po, po/tr.po, po/hu.po: Updated from
2097         the Translation Project
2099 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2101         * doc/find.texi: Fix some typos. (trivial change)
2103 2007-01-07  James Youngman  <jay@gnu.org>
2105         * find/parser.c (parse_perm), find/testsuite/find.gnu/perm000.exp,
2106           find/testsuite/find.gnu/perm000.xo: -perm /000 is now quivalent
2107           to -perm -000, as dscussed in Savannah bug #14748.  The warning
2108           message we issue when the user does this now explains that the
2109           defintion changed as we promised it would in 2005.
2111         * xargs/xargs.c (read_line): Correctly handle quoted empty
2112         arguments occurring first or last on a line (by adding an empty
2113         argument to the output).  Fixes Savannah bug #18713.
2115         * xargs/testsuite/xargs.sysv/sv-bug-18713.exp,
2116         xargs/testsuite/xargs.sysv/sv-bug-18713.xo,
2117         xargs/testsuite/input/empty.xi: Test case for Savannah bug #18713.
2120 2006-12-29  James Youngman  <jay@gnu.org>
2122         * find/testsuite/config/unix.exp:
2123         Verify that find_start is invoked with wither a p (pass) or an f
2124         (fail) argument.
2126         * lib/listfile.c, lib/listfile.h:
2127         define find_blocksize() and provide a declaration for get_link_name()
2129         * find/testsuite/config/unix.exp: Updated copyright years.
2131         * find/testsuite/find.gnu/execdir-one.exp, find/testsuite/find.gnu/execdir-root-only.exp, find/testsuite/find.gnu/sv-bug-12230.exp, find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/config/unix.exp:
2132         Avoid tests using -execdir if $PATH contains a relative directory
2134         * find/parser.c:
2135         Also flag $PATH values containing relative directories as being dangerous.
2137         * find/parser.c, find/defs.h, find/util.c:
2138         Instead of selecting the old or new exec handling code with the NEW_EXEC macro, just use the new code all the time
2140         * locate/testsuite/config/unix.exp:
2141         Fixed Savannah bug #13252, test suite failure caused by the fact that 'file normalize' is not available in Tcl 8.3
2143         * NEWS, find/pred.c:
2144         Fixed Savannah bug #18433, compilation failure with configure --enable-debug
2146 2006-12-28  James Youngman  <jay@gnu.org>
2148         * NEWS: Document addition of %S.
2150         * find/defs.h, find/find.1, find/parser.c, find/pred.c:
2151         Implemented %S (sparseness) printf format, and general refactoring and cleanup of printf predicate
2153 2006-12-01  James Youngman  <jay@gnu.org>
2155         * NEWS, configure.in: Begin work on findutils 4.2.30
2157         * find/find.c:
2158         Fix compilation error for oldfind if --enable-debug was passed to configure
2160         * NEWS, configure.in: Prepare for work on findutils-4.3.3
2162 2006-11-25  James Youngman  <jay@gnu.org>
2164         Release 4.3.2.
2166         * find/testsuite/Makefile.am: Added test case for Savannah bug #17782
2168         * doc/textinfo.tex: Removed; we now use the version supplied
2169         by automake.
2171         * m4/mkinstalldirs.m4: Added this file.  It's an excerpt from an
2172         old version of gnulib's m4/nls.po file.  The current version of
2173         gnulib does not expand MKINSTALLDIRS, but gettext-0.14.6's version
2174         of po/Makefile.in.in expects it to be expanded.  This m4 file
2175         fills the gap.
2177 2006-11-20  James Youngman  <jay@gnu.org>
2179         * po/et.po, po/bg.po, po/pl.po, po/nl.po, po/tr.po: Updated
2180         translations for Bulgarian, Estonian, Dutch, Polish and Turkish.
2182 2006-11-08  James Youngman <jay@gnu.org>
2184         * find/testsuite/Makefile.am:
2185         Oops, indicate the right directory for the new test files
2187         * ChangeLog, depcomp, doc/texinfo.tex, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-18222.exp, find/testsuite/find.gnu/sv-bug-18222.xo, install-sh:
2188         Savannah bug#18222 - test case
2190         * ChangeLog, lib/buildcmd.c:
2191         Fixed Svannah bug #17782 ('./' prefix added at start of arg while it should be added at the start of the expansion of {})
2193         * find/ftsfind.c (process_all_startpoints): Set
2194         state.starting_path_length for every pathname argument.
2195         This fixes Savannah bug #18222.
2197         * find/pred.c (pred_prune): -prune should have an effect only if we are
2198          currently considering a directory (Savannah bug #15531).
2200 2006-10-15  James Youngman <jay@gnu.org>
2202         * lib/buildcmd.c: Fixed Savannah bug #17782, in which "find
2203         -execdir echo "foo {}" runs 'echo ./foo filename' instead of the
2204         correct command 'echo foo ./filename'.
2206         * po/hu.po, po/sl.po: Updated Hungarian and Slovenian po files
2208 2006-08-21  James Youngman <jay@gnu.org>
2210         * find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-17490.exp:
2211         Fixed Savannah bug #17490, which was a coiredump when -regex ZZZ was the final test on the command line
2213 2006-08-20  James Youngman <jay@gnu.org>
2215         * find/parser.c: Merged the fix for the trailing % in "find -printf".
2217 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
2219         Port recent fixes for symbolic modes involving X from gnulib,
2220         and clarify the documentation in this area.
2221         * doc/find.texi: Use "file mode bits" when talking about
2222         all the file mode bits (including setuid, setgid, and sticky),
2223         and "permissions" when talking only about permissions bits
2224         (read, write, execute/search).  Use "execute/search" to
2225         talk about the x bit, since it means both.  You do not need
2226         permission to the linked-to file to follow a symlink for
2227         syscalls like "stat", but you do need search permission for
2228         the directories you traverse.  Clarify the explanation of
2229         -perm.  Use "that" instead of "which" when "which" isn't
2230         quite correct English.
2231         (Mode Bits): Renamed from Permissions.  All uses changed.
2232         * doc/perm.texi: Sync from coreutils 6.0.
2233         * find/defs.h (struct perm_val.val): Now an array of two items,
2234         one for non-directories, and one for directories.  This is
2235         to handle symbolic modes like +X correctly.
2236         * find/parser.c (parse_perm): Likewise.  Also, adjust to
2237         latest gnulib interface for mode_adjust.
2238         * find/pred.c (pred_perm): Likewise.
2239         * find/testsuite/Makefile.am (EXTRA_DIST_XO): Add find.posix/perm-X.xo.
2240         (EXTRA_DIST_EXP): Add find.posix/perm-X.exp.
2241         * find/testsuite/find.posix/perm-X.exp: New file.
2242         * find/testsuite/find.posix/perm-X.so: New file.
2244 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
2246         Port to latest gnulib, and simplify the bootstrapping procedure.
2247         * intl: Remove this directory and everything in it.
2248         * depcomp, install-sh, missing, mkinstalldirs, doc/texinfo.tex:
2249         Remove these files from CVS, as they are now gotten from gnulib.
2250         * README-CVS: Don't recommend "autoreconf -i", as it doesn't work
2251         for us.
2252         * import-gnulib.sh (findutils_files): New var.  Grab this stuff
2253         from gnulib.
2254         (findutils_modules): Add fopen-safer; remove stdio-safer.  This
2255         adjusts to latest gnulib.
2256         (modules): Remove obsolete reference to intl_modules.
2257         * .cvsignore: Remove stamp-h; add stamp-h1.
2258         * doc/.cvsignore: Add regexprops.texi.
2259         * find/.cvsignore: Add oldfind.
2260         * lib/.cvsignore: Add .deps, regexprops.
2261         * m4/.cvsignore: Add Makefile.
2262         * po/.cvsignore: Add stamp-po.
2264 2006-08-19  James Youngman <jay@gnu.org>
2266         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp:
2267         Explicit checks for parefixes which are within range of a short, but outside the one-byte range
2269         * locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
2270         New file.
2272         * locate/testsuite/Makefile.am, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
2273         Patch from Tavis Ormandy; check frcode handles initial space end encodes paths with more than 2^16 characters in the common prefix (trivial change)
2275         * locate/frcode.c: Changes to avoid overflows
2277 2006-08-11  James Youngman <jay@gnu.org>
2279         * locate/frcode.c:
2280         Avoid producing an invalid database if the first item begins with a space
2282 2006-08-10  James Youngman <jay@gnu.org>
2284         * find/pred.c, import-gnulib.sh, lib/listfile.c:
2285         Updated callers of the gnnulib filemode module so that they work with the 2006-07-09 version of gnulib
2287         * config.rpath: Updated config.rpath from autotools
2289 2006-08-08  James Youngman <jay@gnu.org>
2291         * locate/locatedb.h:
2292         Automatically verify (at compile time) that the frcode datastream
2293         cannot get desynchronised.
2295         * find/ftsfind.c:
2296         Fixed Savannah bug #10494 (-maxdepth does not yield the same stat savinf in ftsfind as oldfind)
2298         * find/ftsfind.c: display fts_level for find -D search
2300         * find/util.c: Support find -D search
2302         * locate/locate.c:
2303         If the user specified -E but the database is an slocate database, do
2304         not produce a list of files they cannot stat.  Issue an error message
2305         explaining the problem.
2307         * locate/locate.c:
2308         Issue states messages in a way which indicates more clearly what's
2309         happening when the numbers are reduced because not every filename
2310         matched the pattern.
2312         * locate/locate.c: Better error checking in drop_privs().
2314 2006-08-07  James Youngman <jay@gnu.org>
2316         * NEWS, locate/locate.c, locate/locatedb.h:
2317         Added support for slocate database format
2319         * xargs/xargs.c:
2320         Removed unused code (tivial patch from Miloslav Trmac).
2322         * xargs/xargs.c: Removed unused code.
2324         * doc/find.texi:
2325         Clarify that the output format for locate -S differs from BSD's.
2327         * NEWS, find/find.1:
2328         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
2330         * NEWS: Typo in subsection header (* should be **).
2332         * NEWS, find/find.1:
2333         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
2335         * doc/find.texi: Fixed some clumsy phrasing
2337         * NEWS, configure.in:
2338         Now diverging again from the released tarball, so change once more to -CVS version number suffixes
2340 2006-08-06  James Youngman <jay@gnu.org>
2342         * locate/locate.c: Fixed a typo in a comment.
2344         * NEWS, configure.in: Moving on towards 4.3.2...
2346         Release 4.3.1.
2348         * find/testsuite/config/unix.exp:
2349         Check that we can see the find.o file in the right position relative
2350         to $base_dir to ensure that we are indeed testing the program we just built.
2352         * find/testsuite/config/unix.exp:
2353         Be more paranoid about whether we're really checking the right version
2354         of find.
2356         * NEWS, configure.in: Prepare for release of 4.3.1
2358         * doc/find.texi: Document the -O and -D options
2360         * find/defs.h, find/find.1, find/util.c:
2361         'find -D help' now explains the available debugging options
2363         * po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2364         Make dist changed all the po files again
2366 2006-08-05  James Youngman <jay@gnu.org>
2368         * NEWS: Described more changes in 4.3.1.
2370         * locate/testsuite/config/unix.exp:
2371         Set the  environment variable so that updatedb knows where to find it; it's not in BINDIR yet during 'make check'
2373         * po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2374         Make dist changed all the po files again :)
2376         * po/et.po, po/vi.po: UPdated the Estonian and Vietnamese translations
2378         * NEWS, configure.in: Prepare for release of findutils-4.2.28
2380         * po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po:
2381         Make dist changed all the po files again :)
2383         * configure.in: Added Bulgarian translation.
2385         * po/bg.po: Include Bulgarian translation
2387         * configure.in: Added Bulgarian translation.
2389         * po/et.po, po/vi.po: Updated Estonian and Vietnamese translations
2391         * NEWS: Removed spurious comma.
2393         * NEWS: Listed the updated translations.
2395         * find/parser.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
2396         Fixed Savannah bug#16738, find does not subtract environment size in find .. -exec {} +
2398         * NEWS: Updated the list of bugfixes etc.
2400 2006-06-15  James Youngman <jay@gnu.org>
2402         * NEWS: Described recent changes
2404         * configure.in: fix to how we invoke the gnulib regex module
2406         * find/find.1:
2407         Savannah bug #16269: avoid confusion over what type of quotes to use
2408         in an example.
2410         * find/parser.c: Option -nowarn should not itself produce a warning
2412         * find/defs.h: Remoevd useless declaration of last_pred
2414 2006-06-14  James Youngman <jay@gnu.org>
2416         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2417         Updated translation files ga pl sv tr nl ca vi bg fr
2419         * locate/updatedb.sh:
2420         Fixed Savannah bug #16579 (su false should be su -c false)
2422 2006-04-01  James Youngman <jay@gnu.org>
2424         * find/find.c:
2425         Fixed Savannah bug #15800: "Hard link count is wrong" reports wrong
2426         directory name.
2428 2006-03-31  James Youngman <jay@gnu.org>
2430         * po/hu.po: Updated Hungarian translation
2432 2006-01-04  James Youngman <jay@gnu.org>
2434         * find/testsuite/find.posix/sizetype.exp, find/testsuite/find.posix/sizetype.xo, find/testsuite/find.posix/typesize.exp, find/testsuite/find.posix/typesize.xo:
2435         Additional tests for -type -size and -size -type
2437         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/parser.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp, find/testsuite/find.gnu/depth-d.exp, find/tree.c, find/util.c, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2438         Initial implementation of a cost-based optimiser
2440 2005-12-23  James Youngman <jay@gnu.org>
2442         * find/parser.c: Refactor of parse_[acm]time
2444         * find/defs.h, find/find.c, find/finddata.c, find/ftsfind.c, find/tree.c, find/util.c:
2445         last_pred can be a static in tree.c rather than a global variable
2447         * find/tree.c, find/finddata.c:
2448         Moved some global data out of finddata.o and into static variables in tree.c
2450         * NEWS, find/find.c, find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, lib/regexprops.c, lib/regextype.c, lib/regextype.h, lib/savedirinfo.c, locate/locate.c, xargs/xargs.c:
2451         Fixed many compilation warnings
2453         * find/find.c, find/ftsfind.c, find/util.c:
2454         Evaluating the predicates can change the contents of the data structure (for example to add another exec item)
2456         * find/defs.h, find/find.c, find/ftsfind.c, find/tree.c, find/util.c:
2457         Re-factored a lot of common expression-handling code out of find.c and ftsfind.c, mainly into tree.c
2459         * find/find.c, find/ftsfind.c, find/tree.c:
2460         Savannah bug #15271: more helpful error messages for cases where there is a missing expression
2462 2005-12-20  James Youngman <jay@gnu.org>
2464         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.posix/sv-bug-15235.exp, find/testsuite/find.posix/sv-bug-15235.xo, find/tree.c, find/util.c:
2465         Savannah bug #15195: more helpful error messages for 'find . ( )' or 'find . \!'
2467         * ChangeLog: Added entries for recent changes.
2469         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/find.posix/bracket-depth.exp, find/util.c:
2470         Further fix to bug# 15235: a leading comma is a filename not an expression
2472         * find/defs.h, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.posix/empty-parens.exp, find/tree.c:
2473         Accept 'find ( -depth )' but reject 'find ( )'
2475         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2476         did make dist
2478         * find/testsuite/find.gnu/delete.exp:
2479         Use the new find program, and the new way of locating it (/ instead of )
2481         * find/testsuite/Makefile.am: Added bracket-depth.exp.
2483         * NEWS, configure.in: We have moved on from 4.3.0
2485         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp, find/testsuite/find.posix/files-not-expressions1.exp, find/testsuite/find.posix/files-not-expressions1.xo, find/testsuite/find.posix/files-not-expressions2.exp, find/testsuite/find.posix/files-not-expressions2.xo, find/testsuite/find.posix/files-not-expressions3.exp, find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
2486         Avoid getting confused by filename arguments of which the first
2487         character looks like a predicate, for example ',x' or '!x' or
2488         '(x' (Savannah bug #15235).
2490 2005-12-20  James Youngman <jay@gnu.org>
2492         * find/defs.h, find/find.c, find/ftsfind.c,
2493         find/testsuite/find.posix/bracket-depth.exp, find/util.c: Further
2494         fix to bug# 15235: a leading comma is a filename not an expression
2496         * find/defs.h, find/parser.c, find/testsuite/Makefile.am,
2497         find/testsuite/find.posix/empty-parens.exp, find/tree.c: Accept
2498         'find ( -depth )' but reject 'find ( )'
2500         * find/testsuite/find.gnu/delete.exp: Use the new find program,
2501         and the new way of locating it ($OLDFIND/$FTSFIND instead of $FIND)
2503         * find/testsuite/Makefile.am: Added bracket-depth.exp.
2505         * NEWS, configure.in: We have moved on from 4.3.0
2507         * find/defs.h, find/find.c, find/ftsfind.c,
2508         find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
2509         find/testsuite/find.posix/files-not-expressions1.exp,
2510         find/testsuite/find.posix/files-not-expressions1.xo,
2511         find/testsuite/find.posix/files-not-expressions2.exp,
2512         find/testsuite/find.posix/files-not-expressions2.xo,
2513         find/testsuite/find.posix/files-not-expressions3.exp,
2514         find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
2515         Avoid getting confused by filename arguments of which the first
2516         character looks like a predicate, for example ',x' or '!x' or '(x'
2517         (Savannah bug #15235).
2519 2005-12-19  James Youngman <jay@gnu.org>
2521         * find/testsuite/config/unix.exp:
2522         Run every test twice, once with the old (non-fts) binary and once with
2523         the new (fts-enabled) binary.
2525 2005-12-19 Eric Blake <ebb9@byu.net>
2527         * find/testsuite/Makefile.am,
2528         find/testsuite/find.posix/sv-bug-15235.xo,
2529         find/testsuite/find.posix/sv-bug-15235.exp: New tests for Savannah
2530         bug 15235.
2532         * NEWS, find/find.1, doc/find.texi (Invoking find): Document bug
2533         fix for Savannah bug 15235.
2535 2005-12-16  James Youngman <jay@gnu.org>
2537         * xargs/xargs.1, xargs/xargs.c: Fixed bug# 15211, that xargs
2538         --show-limits is not documented in the manpage or in the usage
2539         message
2541 2005-12-12  James Youngman <jay@gnu.org>
2543         Release 4.3.0.
2545         * find/testsuite/find.gnu/access.exp:
2546         Don't leave junk files lying around the place
2548         * README-CVS: Update the the instructions for getting gnulib; the
2549         CVS arrangements at Savannah have changed.
2551         * ChangeLog, NEWS, doc/find.texi, doc/perm.texi, find/defs.h, find/parser.c:
2552         Merged changes from 4.2.x branch again
2554         * NEWS, doc/find.texi, find/defs.h, find/find.c, find/ftsfind.c,
2555         find/parser.c, find/pred.c, find/util.c, lib/listfile.c,
2556         lib/listfile.h: Initial code to allow control over how -ls quote
2557         (or does not quote) control characters; not enabled yet
2559 2005-12-11  James Youngman <jay@gnu.org>
2561         * ChangeLog, THANKS, xargs/xargs.c:
2562         Fixed spelling errors in Bob Proulx's name.  Sorry, Bob.
2564 2005-12-10  James Youngman <jay@gnu.org>
2566         * doc/perm.texi:
2567         Aaron Hawley: Updated perm.texi from the coreutils distribution
2569         * find/parser.c:
2570         Avoid using entries which have the same name as POSIX library
2571         functions (fprintf, printf, exec) as the implementation is allowed to
2572         #define these.  That generates hard-to-grok compilation errors.
2574 2005-12-10  Andreas Metzler <gnu@downhill.at.eu.org>
2576         * ChangeLog, NEWS, configure.in, find/defs.h, find/parser.c:
2577         Applied patch from Andreas Metzler fixing Savannah bug #15181:
2578         implicit declaration of parse_openparen
2580 2005-12-08  James Youngman  <jay@gnu.org>
2582         * doc/find.texi: Typo and spelling corrections from Aaron Hawley
2584 2005-12-05  James Youngman  <jay@gnu.org>
2586         * Released findutils-4.2.27
2588 2005-12-05  James Youngman  <jay@gnu.org>
2590         * doc/find.texi, find/find.1, locate/locate.1, xargs/xargs.1:
2591         Savannah patch #3775 from Aaron Hawley: reconciling man pages
2592         differences; did not apply the patch, but resolved all the
2593         remaining issues manually by updating the documentation (mostly
2594         the Texinfo documentation, which was missing a number of specific
2595         technical statements about the behaviour of various options)
2597 2005-12-04  James Youngman  <jay@gnu.org>
2599         * doc/find.texi: Document --show-limits
2601         * xargs/xargs.c:
2602         Correctly display the size of the argument buffer we really allocated.
2604         * doc/find.texi, find/find.1, find/parser.c, find/pred.c, NEWS:
2605         Savannah bug #14748 (which this change does NOT fix): issue
2606         warning of future changes in the behaviour of -perm /000
2608 2005-11-30  James Youngman  <jay@gnu.org>
2610         * xargs/xargs.c:
2611         Typo correction from Benno Schulenberg <benno@nietvergeten.nl>
2612         (trivial change)
2614 2005-11-29  James Youngman  <jay@gnu.org>
2616         * xargs/xargs.c:
2617         Typo "Ilegal"; change to "Invalid" since this is not really illegal!
2618         Bug report by Primoz Peterlin.
2620         * lib/regexprops.c, xargs/xargs.c:
2621         Prefer the word 'Invalid' or the phrase 'not allowed' over
2622         'Illegal', as per the GNU coding standards, and as per the
2623         suggestion from Benno Schulenberg
2625 2005-11-24  James Youngman  <jay@gnu.org>
2627         * NEWS, lib/buildcmd.c, lib/buildcmd.h: Merge to trunk from 4.2.x fixes
2629         * lib/buildcmd.h:
2630         Deleted inaccurate comment about the default value of ctl->args_per_exec.
2632         * NEWS, lib/buildcmd.c, lib/buildcmd.h:
2633         Be more conservative about the total number of arguments we will
2634         allow (to avoid exec limits on Linux/PPC)
2636 2005-11-23  James Youngman  <jay@gnu.org>
2638         * NEWS: Bug #14921 has been fixed.
2640         * find/fstype.c:
2641         Savannah bug #14921: when a Linux bind filesystem is in use, find
2642         would expand '-printf %F' to 'none' if a bind mount targetted the same
2643         filesystem as the one containing the file to be described.
2645         * NEWS: Updated to describe recent changes
2647         * doc/find.texi, find/find.1: Documented find -printf %M
2649         * lib/buildcmd.c, xargs/testsuite/Makefile.am,
2650         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2651         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2652         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2653         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo:
2654         Ensure that the test suite still passes even if the current
2655         system's value of ARG_MAX is different from the development/test
2656         system
2658         * lib/buildcmd.c: reindent and untabify
2660         * configure.in: The CVS code is moving on from the previous release.
2662 2005-11-22  James Youngman  <jay@gnu.org>
2664         * ChangeLog: Updated with recent changes.
2666 2005-11-21  James Youngman  <jay@gnu.org>
2668         * locate/testsuite/config/unix.exp:
2669         Even if we expect locate to return a nonzero status, the test should
2670         still fail if updatedb fails!
2672         * locate/testsuite/locate.gnu/ignore_case2.exp:
2673         Set the current directory for updatedb.  This test case is supposed to
2674         fail because the filename is not matched, not because updatedb fails!
2676         * locate/updatedb.sh:
2677         Check the binaries actually exist in the place we expect.
2679 2005-11-20  James Youngman  <jay@gnu.org>
2681         * locate/locate.1, xargs/xargs.1: Escape '-' as '\-' where appropriate.
2683         * find/find.1:
2684         Escape '-' as '\-' where appropriate.   Fixes last part of bug #14556.
2686 2005-11-19  James Youngman  <jay@gnu.org>
2688         * doc/find.texi, find/find.1:
2689         Applied edited form of Andreas Metzler's -perm /mode documentation
2690         patch resolving Savannah bug #14619.
2692         * lib/extendbuf.c:
2693         In the success case, extendbuf() should preserve the previous value of
2694         errno.  Fixes Savannah bug #14842.
2696         * xargs/testsuite/Makefile.am: Added new test files
2698         * find/find.1:
2699         Correctly indicate the default regular expression syntax (fixes
2700         Savannah bug #14836).
2702         * NEWS, configure.in: Released findutils-4.2.26
2704         * ChangeLog, NEWS, lib/buildcmd.c,
2705         xargs/testsuite/inputs/16383-ys.xi,
2706         xargs/testsuite/inputs/32767-ys.xi,
2707         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2708         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2709         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2710         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: Applied
2711         bugfix from Jim Meyering (tiny change), where many short arguments
2712         would cause xargs (and probably find -exec .. {} +) to fail
2713         because execve() returns E2BIG, which we should avoid
2715         * xargs/testsuite/inputs/16383-ys.xi,
2716         xargs/testsuite/inputs/32767-ys.xi,
2717         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2718         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2719         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2720         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: New file.
2722         * po/be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2723         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2724         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2725         ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po,
2726         zh_TW.po: Updated Portuguese .po file and did update-po
2728 2005-11-18  Jim Meyering  <jim@meyering.net> (tiny change)
2730         * lib/buildcmd.c (bc_push_arg): When exec'ing, don't exceed
2731         Linux's limit on the maximum number of command line arguments.
2733 2005-11-11  James Youngman  <jay@gnu.org>
2735         * NEWS, find/find.c, find/fstype.c: Savannah bug #14922: if we need the
2736         list of mounted filesystems but it is not available, exit fatally
2737         with a message.  If it is not available but we don't need it,
2738         there is no need for an error.
2740         * po/ro.po, ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po,
2741         zh_CN.po, zh_TW.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po,
2742         pt_BR.po, be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po,
2743         fi.po, findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po,
2744         it.po, ja.po: Updated Polish translation
2746 2005-10-31  James Youngman  <jay@gnu.org>
2748         * doc/find.texi:
2749         Removed redundant additional description of "--regextype".
2751 2005-10-08  James Youngman  <jay@gnu.org>
2753         * find/find.c, lib/regextype.c: Fixed Savannah bug #14616, which
2754         was that c99 code had crept in and it didn't compile on c89
2755         compilers
2757         * doc/find.texi: Savannah patch #4371 from Andreas Metzler; the
2758         argument of -I is mandatory
2760 2005-09-21  James Youngman  <jay@gnu.org>
2762         * xargs/xargs.1, xargs/xargs.c: Clarified the -E option
2764 2005-09-20  James Youngman  <jay@gnu.org>
2766         * NEWS, configure.in, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
2767         Documentation clarification: -L and -I take a mandatory argument;
2768         -l and -i do not
2770 2005-09-17  James Youngman  <jay@gnu.org>
2772         * xargs/xargs.c:
2773         Fixed Savannah bug #14550 - if environment is too large to allow
2774         exec() to work, we cannot even use "xargs --help".
2776         * find/find.1:
2777         Avoid the use of -perm +mode, using -perm /mode instead.  From comment
2778         by Andreas Metzler (though I didn't read the patch).
2780         * ChangeLog, doc/find.texi, find/find.1, xargs/xargs.1:
2781         Typo fix from A Costa (tiny change)
2783         * NEWS: Corrections for find manual page - symbolic permissions.
2785         * find/find.1:
2786         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
2787         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
2789 2005-09-17  A Costa <agcosta@gis.net>  (tiny change)
2791         docs/find.texi: Fixed typo
2792         find/find.1: Fixed typo
2793         xargs/xargs.1: Fixed typo
2795 2005-09-17  James Youngman  <jay@gnu.org>
2797         * NEWS: Corrections for find manual page - symbolic permissions.
2799         * find/find.1:
2800         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
2801         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
2803 2005-09-06  James Youngman  <jay@gnu.org>
2805         * xargs/xargs.c: Typo in "IEEE" in a comment.
2807 2005-09-04  James Youngman  <jay@gnu.org>
2809         * find/defs.h, find/find.c, find/parser.c, find/pred.c,
2810         Work around compilation failure with GCC 4 and AIX 5.1, in which
2811         open is #defined to open64
2813         * po/be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2814         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2815         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2816         ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po,
2817         zh_TW.po: Work around compilation failure with GCC 4 and AIX 5.1,
2818         in which open is #defined to open64
2820 2005-09-03  James Youngman  <jay@gnu.org>
2822         * find/testsuite/find.gnu/quit.exp: Fixed Savannah bug#14390, by
2823         avoiding an accidental assumption in quit.exp that directory
2824         entries are returned by readir() in any particular order
2826         * NEWS, configure.in, doc/find.texi, xargs/testsuite/Makefile.am,
2827         xargs/testsuite/inputs/helloworld.xi,
2828         xargs/testsuite/xargs.gnu/delim-o.exp,
2829         xargs/testsuite/xargs.gnu/delim-o.xo, xargs/xargs.1,
2830         xargs/xargs.c: Added the --delimiter option to xargs, resolving
2831         Savannah support request sr #102914
2833         * ChangeLog, NEWS, configure.in: Released findutils-4.2.25
2835         * po/sr.po, sv.po, tr.po, vi.po, zh_CN.po, zh_TW.po, sl.po, be.po,
2836         ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2837         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2838         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2839         ru.po, rw.po, sk.po: Did update-po
2841 2005-09-02  James Youngman  <jay@gnu.org>
2843         * doc/find.texi, find/find.1:
2844         Improved documentation in response to Savannah bug #14376
2846 2005-09-01  James Youngman  <jay@gnu.org>
2848         * po/ChangeLog, ChangeLog: Updated with recent changes.
2850         * locate/locate.c: Removed unused struct stringbuf.soffs.
2852         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
2854 2005-09-01  Jim Meyering  <jim@meyering.net>
2856         * locate/locate.c (struct stringbuf) [soffs]: Remove unused member.
2857         (locate): Remove initialization, too.
2859 2005-09-01  James Youngman  <jay@gnu.org>
2861         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
2863 2005-08-30  James Youngman  <jay@gnu.org>
2865         * find/defs.h, find/find.c, find/fstype.c, find/pred.c:
2866         Attempted fix for compilation when AFS is #defined
2868 2005-08-24  James Youngman  <jay@gnu.org>
2870         * po/sl.po: Updated from Translation Project
2872 2005-08-13  James Youngman  <jay@gnu.org>
2874         * find/find.1: Remind the user to quote the pattern argument to -iname.
2876 2005-08-12  James Youngman  <jay@gnu.org>
2878         * NEWS: Corrected typo.
2880 2005-08-11  James Youngman  <jay@gnu.org>
2882         * po/fr.po: Updated French translation and added new PO file zh_TW.po
2883         for Chinese (traditional)
2885 2005-08-09  James Youngman  <jay@gnu.org>
2887         * NEWS: Indicate that regexprops.texi is built on Cygin now that
2888         Savannah bug #14025 has been fixed.
2890         * lib/Makefile.am, lib/regexprops.c: Fixed compilation failure on
2891         Cygwin - Savannah Bug #14025 (tiny change, three lines), reported
2892         and fixed by Eric Blake
2894         * find/testsuite/Makefile.am,
2895         find/testsuite/find.posix/sv-bug-14070.exp,
2896         find/testsuite/find.posix/sv-bug-14070.xo: Added new test case for
2897         SourceForge bug #14070
2899         * find/testsuite/find.posix/sv-bug-14070.exp,
2900         find/testsuite/find.posix/sv-bug-14070.xo: New file.
2902         * find/defs.h, find/ftsfind.c, find/pred.c, find/util.c:
2903         Ensure we can still build with --enable-debug
2905         * find/testsuite/config/unix.exp,
2906         find/testsuite/find.gnu/execdir-one.exp,
2907         find/testsuite/find.gnu/execdir-root-only.exp,
2908         find/testsuite/find.gnu/sv-bug-12230.exp: If . is on $PATH,
2909         indicate that the -execdir tests cannot be carried out, as opposed
2910         to indicating that those tests fail
2912 2005-08-07  James Youngman  <jay@gnu.org>
2914         * NEWS: Indicated that some test suite files have been renamed.
2916         * xargs/testsuite/Makefile.am, xargs/testsuite/inputs/eof.xi,
2917         xargs/testsuite/inputs/eof1.xi,
2918         xargs/testsuite/xargs.sysv/eof.exp,
2919         xargs/testsuite/xargs.sysv/eof.xo,
2920         xargs/testsuite/xargs.sysv/eof1.exp,
2921         xargs/testsuite/xargs.sysv/eof1.xo,
2922         xargs/testsuite/xargs.posix/lc_l2.exp,
2923         xargs/testsuite/xargs.posix/lc_l2.xo,
2924         xargs/testsuite/xargs.sysv/l2.exp,
2925         xargs/testsuite/xargs.sysv/l2.xo,
2926         xargs/testsuite/xargs.sysv/lc_l2.exp,
2927         xargs/testsuite/xargs.sysv/lc_l2.xo,
2928         xargs/testsuite/xargs.posix/L2.exp,
2929         xargs/testsuite/xargs.posix/l2.exp,
2930         xargs/testsuite/xargs.posix/L2.xo,
2931         xargs/testsuite/xargs.posix/l2.xo,
2932         xargs/testsuite/xargs.posix/uc_L2.exp,
2933         xargs/testsuite/xargs.posix/uc_L2.xo: Work around problems with
2934         CVS clients on case-insentitive operating systems
2936         * debian/Changelog: Removed Changelog file since changelog is the
2937         one we should be using and having both files upsets Cygwin
2938         systems which cannot tell the dirrerence between changelog and
2939         Changelog
2941         * find/ftsfind.c:
2942         If DEBUG is defined, show the symbolic names fro fts_info values.
2944         * find/ftsfind.c: Added additional diagnostics.
2946 2005-08-02  James Youngman  <jay@gnu.org>
2948         * po/tr.po, vi.po:
2949         Updated Vietnamese and Turkish translations from Translation Project
2951         * po/sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po, be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, fi.po, findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po, ja.po, ko.po, lg.po, ms.po, pl.po, pt.po, pt_BR.po, ru.po, rw.po:
2952         Did update-po
2954         * po/et.po, sk.po, ro.po:
2955         Updated Romanian, Slovak and Estonian translations from Translation Project
2957 2005-08-01  James Youngman  <jay@gnu.org>
2959         * ABOUT-NLS, INSTALL, Makefile.am, configure.in, depcomp,
2960         doc/texinfo.tex, install-sh, missing, mkinstalldirs: By adding the
2961         missing AM_GNU_GETTEXT_VERSION call, allowed autopoint to update
2962         those files of which it has updated copies.
2964         * po/Makevars.template, po/Makefile.in.in, po/findutils.pot:
2965         Using AM_GNU_GETTEXT_VERSION, allowed gettext to update the infrastructure
2967         * po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed:
2968         Files added by autopoint now that we are using AM_GNU_GETTEXT_VERSION
2970         * find/testsuite/Makefile.am: Added find.gnu./perm-slash.{exp,xo}.
2972         * po/nl.po: Updated Dutch translation from Translation Project
2974         * po/ga.po: Updated Irish translation from the Translation Project
2976         * po/da.po: Updated Danish translation from the Translation Project
2978         * po/ca.po: Updated Catalan translation from Translation Project
2980 2005-07-31  James Youngman  <jay@gnu.org>
2982         * find/testsuite/excuses.txt: We now have tests for -perm.
2984         * NEWS, configure.in, find/parser.c,
2985         find/testsuite/find.gnu/perm-slash.exp,
2986         find/testsuite/find.gnu/perm-slash.xo: Fixed bug which caused find
2987         -perm /440 to be treated the same as find -perm 440
2989         * find/testsuite/Makefile.am:
2990         Generic tests for -perm -NNN and -perm NNN
2992         * find/testsuite/excuses.txt: New file - list of test cases that
2993         still need to be written, along with excuses why they haven't been
2994         done yet
2996         * find/testsuite/find.posix/perm-vanilla.exp,
2997         find/testsuite/find.posix/perm-vanilla.xo: Generic tests for -perm
2998         -NNN and -perm NNN
3000         * find/testsuite/find.gnu/inum.exp:
3001         Ensure that the test would fail if -inum just always returned true
3003         * find/testsuite/Makefile.am, find/testsuite/find.gnu/ilname.exp,
3004         find/testsuite/find.gnu/ilname.xo,
3005         find/testsuite/find.gnu/inum.exp, find/testsuite/find.gnu/inum.xo,
3006         find/testsuite/find.gnu/lname.exp,
3007         find/testsuite/find.gnu/lname.xo,
3008         find/testsuite/find.gnu/xtype.exp,
3009         find/testsuite/find.gnu/xtype.xo,
3010         find/testsuite/find.posix/links.exp,
3011         find/testsuite/find.posix/links.xo: New test cases for -ilname,
3012         -inum, -lname, -xtype
3014         * find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
3015         find/testsuite/find.gnu/delete.xo,
3016         find/testsuite/find.gnu/iregex1.exp,
3017         find/testsuite/find.gnu/iregex1.xo,
3018         find/testsuite/find.gnu/regex1.exp,
3019         find/testsuite/find.gnu/regex1.xo,
3020         find/testsuite/find.gnu/regex2.exp,
3021         find/testsuite/find.gnu/regex2.xo,
3022         find/testsuite/find.gnu/samefile-copy.exp,
3023         find/testsuite/find.gnu/samefile-copy.xo,
3024         find/testsuite/find.gnu/samefile-link.exp,
3025         find/testsuite/find.gnu/samefile-link.xo,
3026         find/testsuite/find.gnu/samefile-same.exp,
3027         find/testsuite/find.gnu/samefile-same.xo,
3028         find/testsuite/find.gnu/samefile-symlink.exp,
3029         find/testsuite/find.gnu/samefile-symlink.xo: Further test cases
3031         * find/find.1: Indicate that -delete implies -depth (find.texi
3032         already mentioned this).
3034         * find/testsuite/Makefile.am:
3035         Brought the list of .exp and .xo files in Makefile.am into sync with
3036         the actual contents of the CVS repository.
3038         * find/testsuite/Makefile.am, find/testsuite/find.gnu/depth-d.exp,
3039         find/testsuite/find.gnu/depth-d.xo,
3040         find/testsuite/find.gnu/empty.exp,
3041         find/testsuite/find.gnu/empty.xo,
3042         find/testsuite/find.gnu/execdir-one.exp,
3043         find/testsuite/find.gnu/execdir-one.xo,
3044         find/testsuite/find.gnu/false.exp,
3045         find/testsuite/find.gnu/false.xo,
3046         find/testsuite/find.gnu/follow-basic.exp,
3047         find/testsuite/find.gnu/follow-basic.xo,
3048         find/testsuite/find.gnu/gnu-or.exp,
3049         find/testsuite/find.gnu/gnu-or.xo,
3050         find/testsuite/find.gnu/gnuand.exp,
3051         find/testsuite/find.gnu/gnuand.xo,
3052         find/testsuite/find.gnu/gnunot.exp,
3053         find/testsuite/find.gnu/gnunot.xo,
3054         find/testsuite/find.gnu/iname.exp,
3055         find/testsuite/find.gnu/iname.xo,
3056         find/testsuite/find.gnu/ipath.exp,
3057         find/testsuite/find.gnu/ipath.xo,
3058         find/testsuite/find.gnu/iwholename.exp,
3059         find/testsuite/find.gnu/iwholename.xo,
3060         find/testsuite/find.gnu/path.exp, find/testsuite/find.gnu/path.xo,
3061         find/testsuite/find.gnu/print0.exp,
3062         find/testsuite/find.gnu/print0.xo,
3063         find/testsuite/find.gnu/quit.exp, find/testsuite/find.gnu/quit.xo,
3064         find/testsuite/find.gnu/true.exp, find/testsuite/find.gnu/true.xo,
3065         find/testsuite/find.gnu/wholename.exp,
3066         find/testsuite/find.gnu/wholename.xo,
3067         find/testsuite/find.posix/and.exp,
3068         find/testsuite/find.posix/and.xo,
3069         find/testsuite/find.posix/exec-one.exp,
3070         find/testsuite/find.posix/exec-one.xo,
3071         find/testsuite/find.posix/grouping.exp,
3072         find/testsuite/find.posix/grouping.xo,
3073         find/testsuite/find.posix/name.exp,
3074         find/testsuite/find.posix/name.xo,
3075         find/testsuite/find.posix/posixnot.exp,
3076         find/testsuite/find.posix/posixnot.xo,
3077         find/testsuite/find.posix/prune.exp,
3078         find/testsuite/find.posix/prune.xo: Added new test cases for many
3079         of the actions and tests of find
3081         * find/find.c (default_prints):
3082         not a static function, so do not declare it as one.
3084         * m4/withfts.m4: Fixed underquoted definition of FIND_WITH_FTS.
3085         [this change is currently on a branch only]
3087 2005-07-30  James Youngman  <jay@gnu.org>
3089         * find/finddata.c, find/ftsfind.c, find/parser.c, find/pred.c,
3090         find/util.c, m4/Makefile.am, m4/withfts.m4: Initial attempt to
3091         convert find to use gnulib's fts()
3092         [this change is currently on a branch only]
3094         * find/finddata.c, find/ftsfind.c, m4/withfts.m4: New file.
3095         [this change is currently on a branch only]
3097         * NEWS, configure.in, find/Makefile.am, find/defs.h, find/find.c,
3098         import-gnulib.sh: Initial attempt to convert find to use gnulib's
3099         fts() [this change is currently on a branch only]
3101 2005-07-29  James Youngman  <jay@gnu.org>
3103         * NEWS, configure.in
3104         Prepared for the release of findutils-4.2.24
3106         * ChangeLog: Updated with recent changes.
3108         * NEWS, find/find.1, doc/find.texi:
3109         Indicate that -ok and -okdir redirect stdin from /dev/null.
3111         * NEWS: Explain the directory link count change more throroughly.
3113         * NEWS: Fixed bug #13973.
3115         * find/pred.c (pred_fprintf): Fix Savannah bug #13973: Modify the
3116         handling of -printf %Y so that it no longer modifies stat_buf
3118         * find/testsuite/find.gnu/printf-symlink.exp,
3119         find/testsuite/find.gnu/printf-symlink.xo: Detect Savannah bug
3120         #13973: pollution of stat_buf by the %Y directive (trivial change
3121         from Andreas Metzler)
3123         * INSTALL, depcomp, doc/texinfo.tex, install-sh, missing, mkinstalldirs:
3124         Updated auxilliary files from the automake-1.9 distribution
3126         * configure.in:
3127         Introduce new Automake conditional, CROSS_COMPILING, true when we are corss compiling
3129         * find/find.c:
3130         If we decline to follow a symbolic link due to the safety check, issue a more self-explanatory warning message
3132         * lib/Makefile.am: Don't build regexprops if we are cross compiling
3134         * doc/Makefile.am:
3135         Depend on the regex.h file rather than the 'regexprops' binary,
3136         because the header file will always exist even if we are doing "make
3137         dist".  Otherwise "make distcheck" fails because it tries to rebuild
3138         find.info while the source-directory is read-only.
3140 2005-07-28  James Youngman  <jay@gnu.org>
3142         * find/find.1:
3143         Say "other users" rather than "rest of the world" when talking about
3144         Unix permissions.  Fixes Savannah bug #4246.
3146 2005-07-27  James Youngman  <jay@gnu.org>
3148         * xargs/testsuite/Makefile.am: Added new test case 'childfail.exp'.
3150         * doc/find.texi:
3151         Updated the description of the safe-dir-change operation to reflect
3152         what find now does on systems that lack O_NOFOLLOW.
3154         * NEWS, find/parser.c: Indicate in the output of find --version if
3155         the leaf optimisation is enabled or not
3157         * find/find.c: Fixed typo.
3159         * find/find.c: If the link count of a directory starts off less
3160         than two, disable the leaf optimisation for this directory.
3162 2005-07-26  James Youngman  <jay@gnu.org>
3164         * lib/regexprops.c: Further small corrections from Karl.
3166         * doc/find.texi:
3167         Reordered the sections in the manual to put the "Common Tasks" and
3168         "Worked Examples" chapters together.
3170         * configure.in, find/find.c: Allow the leaf optimisation to be
3171         disabled by default with the configure option
3172         --disable-leaf-optimisation
3174         * find/find.c: Removed old code for antuqie version of savedir().
3176         * lib/regextype.c: Put the syntaxes in alphabetical order.
3178         * lib/regexprops.c: Karl made some more readability suggestions.
3180 2005-07-24  James Youngman  <jay@gnu.org>
3182         * doc/Makefile.am: If the regexprops program has changed we should
3183         re-run it, since it will probably now produce different output
3185         * lib/regextype.h:
3186         Allow the caller to detect if one regex type is identical to another.
3188         * configure.in:
3189         Define the preprocessor macro FINDUTILS for that code int he lib/
3190         directory can be slightly more reusable.
3192         * lib/regextype.c:
3193         Allow the caller to detect if one regex type is identical to another.
3195         * lib/regexprops.c:
3196         Made Texinfo style corrections suggested by Karl Berry.
3198 2005-07-22  James Youngman  <jay@gnu.org>
3200         * xargs/testsuite/xargs.posix/childfail.exp, xargs/xargs.c: Fix
3201         Savannah bug #13878, in which xargs deals incorrectly with child
3202         failure, returning 0 when it should return 123
3204 2005-07-17  James Youngman  <jay@gnu.org>
3206         * find/find.1: (tiny change) Corrections by Greg Wooledge
3208 2005-07-16  James Youngman  <jay@gnu.org>
3210         * doc/find.texi: Updates following comments by Dave Gilbert.
3212         * NEWS: Corrected a typo.
3214         * doc/find.texi:
3215         Added in the example about updating an aggregate timestamp file.
3217 2005-07-15  James Youngman  <jay@gnu.org>
3219         * po/da.po: Updated Danish translation from translation project
3221 2005-07-14  James Youngman  <jay@gnu.org>
3223         * NEWS, doc/Makefile.am, doc/find.texi, lib/Makefile.am,
3224         lib/regexprops.c, lib/regextype.c, lib/regextype.h: Added
3225         --regextype and -regextype options to locate and find
3226         respectively, and documented these
3228         * doc/find.texi: We use GNU Emacs regexps by default now.
3230         * doc/find.texi:
3231         We require GNU sort in order for locate to handle newlines correctly,
3232         not just GNU find.
3234 2005-07-10  James Youngman  <jay@gnu.org>
3236         * doc/find.texi:
3237         Applied several documentation improvement patches from Aaron Hawley
3239         * ChangeLog, NEWS: Updated with recent changes.
3241         * NEWS: Recent gnulib changed have fixed -iregex
3243         * doc/find.texi, xargs/xargs.1:
3244         Tiny patch from Andreas Metzler: xargs -I is like xargs -i, but the latter is deprecated
3246 2005-07-06  James Youngman  <jay@gnu.org>
3248         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
3249         Fixed Savannah bug #13650; programs run by -exec cannot read stdin
3251 2005-07-04  James Youngman  <jay@gnu.org>
3253         * NEWS: *** empty log message ***
3255         * doc/find.texi:
3256         Added a "Worked Examples" section.   It currently only contains a
3257         (long) example about deleting files.
3259         * .cvsignore: Some extra stuff to ignore.
3261 2005-07-03  James Youngman  <jay@gnu.org>
3263         * find/Makefile.am: Don't need regexprops.c really...
3265         * lib/regextype.c, lib/regextype.h:
3266         New files for selecting regex type based on a keyword
3268         * locate/locate.1: Documented the fact that we now use Emacs-style
3269         regexps, not POSIX EREs, for compatibility with find -regex.
3271         * lib/Makefile.am, locate/locate.c, doc/find.texi,
3272         find/Makefile.am, find/defs.h, find/find.1, find/find.c,
3273         find/parser.c: Fixed Savannah bug #13495: find now uses
3274         Emacs-style regexps by default
3276 2005-07-02  James Youngman  <jay@gnu.org>
3278         * configure.in, find/defs.h, find/fstype.c, find/parser.c,
3279         intl/dcigettext.c, lib/buildcmd.c, lib/listfile.c,
3280         lib/savedirinfo.c, locate/locate.c, xargs/xargs.c: Assume unistd.h
3281         is present - avoid using HAVE_UNISTD_H
3283 2005-07-01  Jim Meyering  <jim@meyering.net>
3285         With `-fprint F' or `-fprintf F', don't write diagnostics
3286         to F when stderr is closed.
3288         * find/parser.c: Include "stdio-safer.h".
3289         (open_output_file): Use fopen_safer, not fopen.
3290         * import-gnulib.sh (findutils_modules): Add stdio-safer.
3292 2005-07-01  James Youngman  <jay@gnu.org>
3294         * doc/find.texi:
3295         Aaron pointed out a potentially-confusing sentence.  I fixed it.
3297         * find/defs.h, find/find.1, find/find.c, find/parser.c,
3298         find/pred.c, find/util.c: Allow consistency-checking of the
3299         predicates, checking for example that actions all have side
3300         effects
3302 2005-06-29  James Youngman  <jay@gnu.org>
3304         * doc/find.texi: Applied patch from Aaron Hawley (Savannah patch
3305         #3751: Typos and small suggestions to find.texi)
3307 2005-06-27  James Youngman  <jay@gnu.org>
3309         * ChangeLog, locate/locate.c: Applied patch from Bas Van Gompel to
3310         move match counting into a (new) visitor function
3312         * NEWS, configure.in: No longer 4.2.23, as we're moving on now
3314 2005-06-24  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3316         * locate/locate.c (visit_count, visit_limit): New functions.
3317         (locate): Use visit_limit or visit_count. Simplify main loop.
3318         (main) Bail out early when limit is reached.
3320 2005-06-20  James Youngman  <jay@gnu.org>
3322         * xargs/xargs.c:
3323         Removed some code which had already been disabled via the preprocessor.
3325 2005-06-19  Dmitry V. Levin <ldv@altlinux.org>
3327         * lib/savedirinfo.c: Fix two compilation warnings (which would
3328         prevent compilation if "-Wall -Werror" is in effect).
3330 2005-06-19  James Youngman  <jay@gnu.org>
3332         * ChangeLog: Indicate that we made (are making) a release.
3334         * ChangeLog, NEWS, configure.in: Preparing to release 4.2.23
3336         * doc/find.texi: Fixed Texinfo syntax error in previous change
3338         * doc/find.texi, xargs/xargs.1:
3339         Document the fact that the -i and -L options are currently
3340         incompatible (Savannah bug 13041).
3342         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
3343         reject trailing slashes in updatedb's --prunepaths, bacsue these
3344         will never be matched
3346         * NEWS: Released findutils-4.2.23.
3348         * doc/find.texi, xargs/xargs.1:
3349         Document the fact that the -i and -L options are currently
3350         incompatible (Savannah bug 13041).
3352         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
3353         reject trailing slashes in updatedb's --prunepaths, because these
3354         will never be matched.
3356 2005-06-18  James Youngman  <jay@gnu.org>
3358         * po/ga.po, tr.po: Updated Irish and Turkish translations.
3360         * po/pl.po: Did update-po
3362         * po/pl.po:
3363         Updated Polish translation file from the Translation Project
3365         * po/ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po, findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po, ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po, be.po:
3366         Did update-po
3368 2005-06-18  Martin Buchholz (trivial patch applied by James Youngman)
3370         * find/defs.h, find/find.c, find/parser.c, doc/find.texi: Fix
3371         typos/spelling errors (mostly in source code comments).
3373 2005-06-18  Dmitry V. Levin  <ldv@altlinux.org>
3375         Additional documentation tweaks for -execdir/-okdir actions.
3376         * find/parser.c (parse_help): Mention -execdir and -ordir options.
3377         * doc/find.texi, find/find.1: Additionally document new options.
3379 2005-06-12  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3381         * locate/locate.c: Implement --all (-A).
3383         * NEWS, doc/find.texi, locate/locate.1: Document locate --all (-A)
3385 2005-06-12  James Youngman  <jay@gnu.org>
3387         * find/find.c, NEWS:
3388         Savannah bug #13381 (Debian bug 313081): if we have O_NOFOLLOW,
3389         safely_chdir() does not need to call stat().  However, process_dir()
3390         used to rely on using that stat information.  To work around this
3391         problem, there is now an output parameter in safely_chdir() which
3392         indicates if the stat buffer is valid.
3393         This bug has possible security implications.
3395         * find/find.1, doc/find.texi:
3396         Applied patch from Andreas Metzler, improving the wording for the
3397         documentation of the %k and %b format directives.  This patch does
3398         not require a copyright assignment as it consists of several
3399         copies of the same small wording change.
3401 2005-06-11  James Youngman  <jay@gnu.org>
3403         * find/find.1: Corrected spelling error 'writeable' to 'writable'.
3405         * find/find.1, locate/locate.1:
3406         Fixed Savannah bug #13363, typos in manpages (trivial change)
3408 2005-06-10  James Youngman  <jay@gnu.org>
3410         * find/find.c, lib/savedirinfo.c, lib/savedirinfo.h: Switch to a
3411         new scheme for saving directory entry data which is extensible to
3412         allow additional data to be saved.
3414 2005-06-09  James Youngman  <jay@gnu.org>
3416         * locate/testsuite/config/unix.exp:
3417         Use the new normalize_dir procedure throughout.
3419         * locate/testsuite/config/unix.exp: Move the normalisation into a
3420         procedure.  Don't rely on the "file normalize" command being
3421         available (it's new in Tcl 8.4).
3423 2005-06-08  James Youngman  <jay@gnu.org>
3425         * ChangeLog, NEWS, configure.in: Updated for recent changes
3427         * doc/find.texi:
3428         Explain that you should put the argument of -name in quotes.
3430         * find/find.1:
3431         Added a new "NON-BUGS" section pointing out things that look like bugs
3432         but are caused by mistakes or misunderstandings.
3434         * doc/find.texi, locate/locate.1: Applied Bas van Gompel's patch
3435         which allows the database to be read from stdin.
3437         * locate/locate.c:
3438         Read the database in by using the "visitor" pattern.  Modified file
3439         header comment to indicate that we no longer use the efficient
3440         algorith described in ;login:.  Emit an error message if the
3441         LOCATE_PATH variable implies that we should read stdin twice.
3442         Most of this code is from Bas van Gompel.
3444         * AUTHORS: Credit Bas van Gompel for his work on locate.
3446         * lib/printquoted.h: Appled patch from Bas - fixing compiler warning.
3448 2005-06-07  James Youngman  <jay@gnu.org>
3450         * ChangeLog, NEWS, configure.in: Updates prior to release
3452         * config.rpath: Added file required for 'make dist'
3454         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
3455         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
3456         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3457         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3458         po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
3459         po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
3460         updated the po files for release
3462         * xargs/testsuite/Makefile.am:
3463         Added in all the test files from Dmitry V. Levin.
3465 2005-06-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3467         * NEWS, locate/locate.1, doc/find.texi: Document usage of `-'
3468         to refer to stdin in database-path for locate.
3469         * locate/locate.c: Change prototype for visitors and processors
3470         throughout. Move reading the database and generating base_name
3471         into visitors. Allow `-' to refer to stdin in database-path.
3473         * lib/printquoted.h: Include stdio.h.
3475 2005-06-07  James Youngman  <jay@gnu.org>
3477         * COPYING, debian/copyright, depcomp, doc/texinfo.tex,
3478         find/defs.h, find/find.c, find/fstype.c, find/parser.c,
3479         find/pred.c, find/testsuite/config/unix.exp, find/tree.c,
3480         find/util.c, import-gnulib.sh, intl/Makefile.in,
3481         intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
3482         intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
3483         intl/dngettext.c, intl/explodename.c, intl/finddomain.c,
3484         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
3485         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
3486         intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h,
3487         intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias,
3488         intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y,
3489         intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c,
3490         lib/buildcmd.c, lib/buildcmd.h, lib/extendbuf.c, lib/extendbuf.h,
3491         lib/forcefindlib.c, lib/listfile.c, lib/listfile.h,
3492         lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c,
3493         lib/printquoted.h, lib/qmark.c, lib/savedirinfo.c,
3494         lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c,
3495         locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c,
3496         locate/locatedb.h, locate/testsuite/config/unix.exp,
3497         locate/updatedb.sh, missing, po/fetch-po-files,
3498         xargs/testsuite/config/unix.exp, xargs/xargs.c:
3499         Updated the FSF's postal address
3501         * ChangeLog: Corrected Bas's email address.
3503         * locate/locate.c: Updated copyright years.
3505 2005-06-07  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3507          * locate/locate.c: Fold case once, only when needed.
3509 2005-06-07  James Youngman  <jay@gnu.org>
3511         * NEWS: Updated with recent changes.
3513         * mdate-sh: Use the mdate-sh from automake
3515         * find/parser.c, find/pred.c, find/tree.c, find/util.c,
3516         lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c,
3517         lib/listfile.h, locate/code.c, locate/locate.c, find/defs.h,
3518         find/find.c: Fix Savannah bug #13324: Fix compiler warnings for
3519         GCC-3.4
3521         * locate/locate.c:
3522         Fixed Savannah bug #13325: Quoting of output filenames in locate
3523         should match find.
3525         * find/parser.c:
3526         Fixed Savannah bug #13319: C9X-ism in parser.c (declaration after
3527         statements).
3529         * find/pred.c, lib/Makefile.am, lib/listfile.c, lib/nextelem.c,
3530         lib/printquoted.c, lib/printquoted.h, lib/qmark.c, NEWS,
3531         doc/find.texi, find/defs.h, find/find.1, find/parser.c: Fixed
3532         Savannah bug #13303, find should filter out non-printable
3533         characters if outputting to tty
3535 2005-05-30  James Youngman  <jay@gnu.org>
3537         * locate/locate.c: rename new_locate() to locate() since
3538           old_locate() has gone the way of the dodo.
3540 2005-05-29  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3542         Add a ``--print'' (``-p'') option. (to cancel side-effects of -c/-S)
3543         Allow ``--statistics'' in combination with non-options.
3544         * doc/find.texi: Add documentation for locate --print (-p), and the
3545         use of non-options with --statistics.
3546         * locate/locate.1: ditto.
3547         * locate/locate.c: Read each database only once.
3549 2005-05-23  Paul Eggert  <eggert@cs.ucla.edu>
3551         Adjust to recent gnulib changes.
3552         * import-gnulib.sh: Get config.rpath from gnulib/build-aux,
3553         not gnulib/config.
3554         * find/parser.c (parse_perm): Ignore umask when parsing
3555         symbolic permissions.  Adjust to new modechange API.
3557 2005-05-16  James Youngman  <jay@gnu.org>
3559         * find/find.c, find/parser.c, find/pred.c, find/tree.c:
3560         Trivial change: don't use i18n support for debug-only messages
3562         * ChangeLog: Added ChangeLog entry crediting Dmitry
3564 2005-05-09  James Youngman  <jay@gnu.org>
3566         * find/parser.c:
3567         The previous change fixed Savannah bug #12999.  This change doesn't do
3568         anything, it's only intended to be a place to record the Savannah bug
3569         ID we've just fixed.
3571         * find/parser.c:
3572         Oops.  Initialise the variable which indicates which regex syntax to
3573         use.  We use POSIX basic regular expressions.
3575         * find/parser.c:
3576         Suggestion by Ed Avis: point out that "-name foo/bar" will almost
3577         always evaluate to false.   Suggest to the user what alternatives they
3578         might find useful.
3580 2005-05-02  James Youngman  <jay@gnu.org>
3582         * AUTHORS:
3583         Added Dimitry (his new test suite contribution required a copyright
3584         assignment).
3586 2005-05-03  Dmitry V. Levin
3588         * Added xargs test suite tests by Dmitry V. Levin, together with
3589           bugfixes which ensure that the tests pass.
3591 2005-04-18  James Youngman  <jay@gnu.org>
3593         * Added test suite tests for Bas van Gompel's changes.
3595 2005-04-18  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3597         * doc/find.texi: Document locate --non-existing (-E).
3598         * locate/locate.1: Ditto.
3599         * locate/locate.c: Implement --non-existing (-E).
3601 2005-04-04  James Youngman  <jay@gnu.org>
3603         * configure.in, import-gnulib.sh:
3604         We no longer need gnulib/m4/Makefile.am
3606         * po/vi.po: Updated Vietnamese translation
3608         * locate/updatedb.sh:
3609         Savannah bug #12491: Only use the "-s" option to "su" if it is
3610         supported.
3612 2005-04-01  James Youngman  <jay@gnu.org>
3614         * locate/locate.1, locate/updatedb.1, xargs/xargs.1: Trivial
3615         change from A Costa <agcosta@gis.net>, fixing typos in manual
3616         pages for xargs, locate and updatedb; fixes Savannah bug #12500,
3617         Debian bug #301934
3619 2005-03-22  James Youngman  <jay@gnu.org>
3621         * import-gnulib.sh: Include the new gnulib module stat-macros
3623         * configure.in:
3624         CVS code is (will shortly be) no longer identical to the 4.2.20 release
3626 2005-03-17  James Youngman  <jay@gnu.org>
3628         * configure.in: Preprare for release of 4.2.20.
3630         * NEWS: Updated prior to release of 4.2.20.
3632         * ChangeLog: Updated with recent changes.
3634         * THANKS: Thank Bas van Gompel, but only once.
3636         * THANKS: Thank Bas van Gompel and Aaron S. Hawley.
3638         * po/vi.po: Updated Vietnamese PO file
3640 2005-03-10  James Youngman  <jay@gnu.org>
3642         * po/nl.po: Updated Dutch PO file
3644 2005-03-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3646         * import-gnulib.sh: Re-enable creation of gnulib/m4/Makefile.am.
3648 2005-03-07  James Youngman  <jay@gnu.org>
3650         * Released findutils-4.2.19.
3652         * find/testsuite/find.posix/sizes.exp:
3653         Use 2>/dev/null instead of 2>&1, because Tcl understands the former
3654         but not the latter.
3656         * find/testsuite/Makefile.am: Also distribute sv-bug-12181.xo.
3658         * find/testsuite/Makefile.am: Distribute sv-bug-12181.
3660         * find/testsuite/Makefile.am: Distribute sv-bug-12230.
3662         * NEWS: Updated with new news.
3664         * ChangeLog: Brought up to date.
3666         * lib/buildcmd.c, find/testsuite/find.gnu/sv-bug-12230.exp: Fixed
3667         Savannah bug #12230, in which '-exec echo == {} +' is always run,
3668         even if there were no matched files.
3670 2005-03-06  James Youngman  <jay@gnu.org>
3672         * ChangeLog: Added latest changes.
3674         * po/pt.po, configure.in: Added Portuguese translation
3676 2005-03-04  James Youngman  <jay@gnu.org>
3678         * configure.in: Modernized the way we call AC_INIT and
3679         AM_INIT_AUTOMAKE
3681         * locate/locate.c, find/pred.c, find/find.c:
3682         Eliminated some compiler warnings
3684         * find/pred.c: Clarified the meaning of a comment.
3686         * find/testsuite/Makefile.am: Added sizes.exp, sizes.xo.
3688         * find/testsuite/find.posix/sizes.xo,
3689         find/testsuite/find.posix/sizes.exp: Added tests for -size
3690         predicate
3692 2005-03-03  James Youngman  <jay@gnu.org>
3694         * find/find.c:
3695         safely_chdir_lstat(): if we didn't end up in the right place, and then
3696         fchdir() fails, we can't return to the directory we started in.
3697         Therefore, issue a fatal error message and exit.
3699 2005-03-01  James Youngman  <jay@gnu.org>
3701         * find/find.c, find/testsuite/find.posix/sv-bug-12181.exp,
3702         find/testsuite/find.posix/sv-bug-12181.xo: Fixed SourceForge bug
3703         12181 (find -H symlink-to-dir reports 'Too many Symbolic links')
3704         and bug 12044 (find still hangs on dead NFS filesystems on
3705         Solaris)
3707 2005-02-28  James Youngman  <jay@gnu.org>
3709         * doc/find.texi: Typo: O_NOFOLLOW, not O_FOLLOW
3711         * import-gnulib.sh:
3712         Suggestion from Martin Buchholz; unset CDPATH to prevent "cd" echoing
3713         the new directory.
3715 2005-02-27  James Youngman  <jay@gnu.org>
3717         * README: Indicate how the reader can verify the release.
3719 2005-02-26  James Youngman  <jay@gnu.org>
3721         * po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po,
3722         po/zh_CN.po, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po,
3723         po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot,
3724         po/fr.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3725         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3726         po/pt_BR.po, po/ro.po, po/ru.po: Added new Vietnamese translation
3728         * configure.in: Added new Vietnamese translation.
3730 2005-02-25  James Youngman  <jay@gnu.org>
3732         * po/ga.po: Updated Irish po file
3734 2005-02-23  James Youngman  <jay@gnu.org>
3736         * Makefile.am: Fix Savannah bug #12064 - 'make distclean' deletes
3737         regex.c but should not.
3739         * find/testsuite/Makefile.am,
3740         find/testsuite/find.gnu/printf-h.exp,
3741         find/testsuite/find.gnu/printf-h.xo: Added test case for Savannah
3742         bug #12085 (-printf %h).
3744         * NEWS, doc/find.texi, find/find.1, find/pred.c:
3745         %h now expands to '.' instead of nothing.
3747 2005-02-22  James Youngman  <jay@gnu.org>
3749         * find/find.c:
3750         Fixed Savannah bug #12099 (misinterpretation of system versions
3751         leading to possible incorrect disabling of O_NOFOLLOW).  Reported by
3752         Dmitry V. Levin.
3754         * find/pred.c:
3755         For the %h format, don't bail out early as the format might contain
3756         something else too.
3758 2005-02-21  James Youngman  <jay@gnu.org>
3760         * find/find.c: Fixed accidental C99 dependency.
3762 2005-02-20  James Youngman  <jay@gnu.org>
3764         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
3765         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
3766         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3767         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3768         po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po,
3769         po/sv.po, po/tr.po, po/zh_CN.po: Updated italian translation
3771         * doc/find.texi: Corrected a typo.
3773         * find/find.c:
3774         Read the mounted device list afer parsing the command line, so that
3775         for example "find --version" still works (in response to Savannah bug
3776         #12044).
3778         * configure.in: We've moved on from findutils-4.2.18.
3780 2005-02-19  James Youngman  <jay@gnu.org>
3782         * NEWS: Corrected the summary of the "find -depth" bug.
3784 2005-02-16  James Youngman  <jay@gnu.org>
3786         * NEWS, configure.in: Prepared for release of 4.2.18.
3788         * ChangeLog: Updated prior to release of 4.2.18.
3790         * find/testsuite/Makefile.am:
3791         Distribute the test cases for the recent "find -depth" bug.
3793         * find/testsuite/find.posix/depth1.exp, find/testsuite/find.posix/depth1.xo:
3794         Added test case for find -depth bug reported by Joseph S. Myers
3796         * find/find.c:
3797         If -depth is in effect, processing of the subdirectories invalidates
3798         the information in 'state'.  Therefore once we get around to
3799         processing the predicates, restore the information that we keep in
3800         'state' and in 'stat_buf'.
3802 2005-02-15  James Youngman  <jay@gnu.org>
3804         * ChangeLog: Updated with recent changes
3806         * find/find.1:
3807         Emphasise that -L causes find to recurse into subdirectories pointed
3808         to by symbolic links.
3810         * find/find.1:
3811         Patch to find.1 from Aaron Hawley <Aaron.Hawley@uvm.edu>:
3813         * Notes about -H actually apply to -L.
3814         * Said paragraph is duplicated two paragraphs later.
3815         * Typos: nno, ibmue, surrpounding
3817 2005-02-15  Aaron Hawley  <Aaron.Hawley@uvm.edu>
3819         * find/find.1: Notes about -H actually apply to -L.  Said
3820         paragraph is duplicated two paragraphs later.  Also typos: nno,
3821         ibmue, surrpounding
3823 2005-02-13  James Youngman  <jay@gnu.org>
3825         * find/find.1: Miscellaneous small clarifications and improvements.
3827         * doc/find.texi: Added Info nodes and menus under "Changing the
3828         Current Working Directory" so that it doesn't generate such a huge
3829         Info page.
3831         * find/find.c: Parenthesise #if defined(...).
3833 2005-02-13  Dmitry V. Levin  <ldv@altlinux.org>
3835         * find/find.c: remove test code snippet (time(NULL) was used to
3836         place a marker for spotting with strace(), but was not actually
3837         needed).
3839         * find/find.c (safely_chdir_nofollow): must not fall back on
3840         safely_chdir_lstat() because that will expose it to race condition
3841         exploits, making it pointless.
3843         * find/find.c (safely_chdir_lstat): Move
3844         complete_pending_execdirs() up into safely_chdir(), because we
3845         need to do that in either case.
3847 2005-02-12  James Youngman  <jay@gnu.org>
3849         * configure.in, doc/find.texi, find/defs.h, find/find.c,
3850         find/parser.c: Fix for Savannah bug #11879, that
3851         init_mounted_dev_list() causes find to hang on systems which are
3852         clients to dead NFS servers
3854 2005-02-10  James Youngman  <jay@gnu.org>
3856         * doc/find.texi: Talk about the problem where find will not work
3857         if you have a filesystem mounted from an unresponsive NFS server.
3859 2005-02-09  James Youngman  <jay@gnu.org>
3861         * find/find.1: Indicate that $TZ affects from printf-format
3862         results, and add extra cross-references in the SEE ALSO section.
3864 2005-02-08  James Youngman  <jay@gnu.org>
3866         * xargs/testsuite/Makefile.am: Distribute the .xe files also.
3868         * Makefile.am: Check that we have the right number of .xe files in
3869         the distribution also.
3871         * ChangeLog, NEWS, configure.in
3872         Preparing to release findutils-4.2.17
3874 2005-02-07  James Youngman  <jay@gnu.org>
3876         * find/testsuite/config/unix.exp: Re-sort the .xo file using the
3877         calling user's locale, because our 'pre-sorted' .so output file
3878         may not be sorted with the same collating order as 'sort' used to
3879         order the output of "find.  Bug spotted by Vin Shelton and Dimitry
3880         V. Levin.
3882         * find/testsuite/Makefile.am:
3883         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
3885         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
3886         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
3887         Fix for starting point /foo/bar/baz where bar is a symlink but baz
3888         is not - we should chdir into bar there even if it is a symbolic
3889         link
3891 2005-02-07  James Youngman  <jay@gnu.org>
3893         * find/testsuite/Makefile.am:
3894         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
3896         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
3897         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
3898         Fix for starting point /foo/bar/baz where bar is a symlink but baz
3899         is not - we should chdir into bar there even if it is a symbolic
3900         link
3902 2005-02-06  James Youngman  <jay@gnu.org>
3904         * doc/find.texi:
3905         -size: Clarification - -size gives a result consistent with 'wc -c'
3906          for example.
3908         * Makefile.am, find/testsuite/Makefile.am,
3909         find/testsuite/find.gnu/execdir-root-only.exp,
3910         find/testsuite/find.gnu/execdir-root-only.xo,
3911         locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
3912         dist-hook: Ensure that we distribute all the .po files and all the
3913         testsuite files
3915         * po/pl.po: Updated Polish translation from TP website
3917 2005-02-05  Dmitry V. Levin  <ldv@altlinux.org>
3919         * find/parser.c, find/pred.c: Additional tweaks for
3920         -execdir/-okdir actions.
3922         * find/parser.c (new_insert_exec_ok): Disable ignore_readdir_race
3923         for -execdir/-okdir.
3925         * find/pred.c (pred_execdir, pred_okdir): Use state.rel_pathname
3926         instead of basename(pathname).  Do not add "./" prefix for
3927         absolute pathnames.
3929         * find/find.c (process_top_path): Treat "/" similarly to ".".
3931         * xargs/testsuite/xargs.posix/savannah-11865.exp,
3932         xargs/testsuite/xargs.posix/savannah-11865.xo, xargs/xargs.c:
3933         Fixed Savannah bug #11866 (not resetting number of used chars in
3934         the command buffer) - reported by Dimitry V. Levin
3936 2005-02-05  James Youngman  <jay@gnu.org>
3938         * THANKS:
3939         Added thanks for Dimitry - has produced many patches, bugfixes and
3940         suggestions.
3942         * find/pred.c:
3943         Fixed Savannah bug #11866: typo in pred_okdir() renders it useless
3945         * find/pred.c:
3946         Savannah bug #11861: undefined symbol 'basename' on IRIX 5.3
3948         * NEWS, configure.in, po/be.po, po/ca.po, po/el.po, po/eo.po,
3949         po/fi.po, po/ga.po, po/hr.po, po/hu.po, po/ja.po, po/lg.po,
3950         po/ms.po, po/ro.po, po/sl.po, po/sr.po, po/zh_CN.po: Added new
3951         translations
3953         * ChangeLog: Updated from CVS prior to release of 4.2.16.
3955         * po/ChangeLog: Updated from CVS.
3957         * NEWS, configure.in: Preparing to release 4.2.16
3959         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
3960         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
3961         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl.po, po/sv.po,
3962         po/tr.po: make update-po prior to 'make distcheck'
3964         * po/fetch-po-files: This is the first version we actually used.
3966         * find/find.c: process_top_path() fixed compilation warning.
3968         * find/find.c: process_top_path(): avoid processing this item if
3969         we can't chdir to the basename of the named file.
3971         * lib/Makefile.am: Always build forcefindlib.c
3973         * locate/locate.c: Say 'base name' rather than 'basename' in comments
3975         * find/pred.c, find/find.c: process_top_path(): Proper bugfix for
3976         correct handling of items at depth 0 (i.e. specified on the
3977         command line) - do an extra chdir to ensure that we're in the
3978         directory containing the item before calling process_path().
3979         Hnece also undo the previous 'quick fix' for the same problem
3981         * doc/find.texi:
3982         -execdir no longer has to treat anything as special, even at depth 0.
3984 2005-02-03  James Youngman  <jay@gnu.org>
3986         * doc/find.texi, find/pred.c: When state.curdepth is 0, our
3987         working directory is not the directory containing the file we are
3988         processing.
3990 2005-02-02  James Youngman  <jay@gnu.org>
3992         * find/pred.c:
3993         To allow compilation on cygwin, use base_name(), not basename().
3995         * po/tr.po: Updated Turkish translation from TP
3997         * po/ro.po: Updated Romanian translation from TP
3999         * po/da.po, po/et.po: Updated translations from MT project website
4001 2005-02-01  James Youngman  <jay@gnu.org>
4003         * ChangeLog: Updated from CVS log.
4005 2005-01-31  James Youngman  <jay@gnu.org>
4007         * find/find.c, lib/nextelem.c, lib/nextelem.h, locate/code.c,
4008         locate/frcode.c, locate/testsuite/config/unix.exp,
4009         xargs/testsuite/config/unix.exp, xargs/xargs.c: Updated/corrected
4010         the email address for David MacKenzie, one of the original authors
4011         of findutils
4013         * doc/Makefile.am: The HTML version of the manual generated for
4014         the GNU project website has each node in a separate file, not each
4015         chapter in a separate file; adjust filenames accordingly
4017         * find/parser.c, find/pred.c, lib/savedirinfo.c:
4018         Removed some unused variables (patch from Dmitry V. Levin)
4020         * find/find.c:
4021         Patch from Dmitry V. Levin <ldv@altlinux.org>: Add subfs to the list
4022         of filesystems which are likely to be automounted.
4024         * m4/findlib.m4: Corrected typo (pointed out by Dmitry V. Levin).
4026         * find/testsuite/config/unix.exp,
4027         find/testsuite/find.gnu/name-period.xo,
4028         find/testsuite/find.gnu/posix-dflt.xo,
4029         find/testsuite/find.gnu/posix-h.xo,
4030         find/testsuite/find.gnu/posix-l.xo,
4031         find/testsuite/find.gnu/printf.exp,
4032         find/testsuite/find.gnu/printf.xo: Systems differ in the order in
4033         which filenames are returned by readdir.  Hence sort the output of
4034         'find' before comparing against the expected-output file.  We
4035         therefore also have the lines in the .xo files ready-sorted.
4037         * po/ca.po: Updated from Translation Project
4039         * po/ChangeLog: Updated from CVS logs.
4041         * po/de.po, es.po, et.po, fr.po, gl.po, id.po, it.po, ko.po, nl.po,
4042         pl.po, pt_BR.po, ru.po, sk.po, sv.po, tr.po, da.po: Ran update-po
4044         * po/be.po, ca.po, el.po, eo.po, fi.po, hr.po, hu.po, ja.po, lg.po,
4045         ms.po, ro.po, sl.po, sr.po, zh_CN.po: Added new translation files
4046         from the Translation Project web site
4048         * po/da.po, de.po, es.po, et.po, fr.po, ga.po, gl.po, id.po, it.po,
4049         ko.po, nl.po, pl.po, pt_BR.po, ru.po, sk.po, sv.po, tr.po: Updated
4050         .po files from the Translation Project site
4052 2005-01-30  James Youngman  <jay@gnu.org>
4054         * doc/Makefile.am:
4055         Added rules for extra targets that we buld to update the web site.
4057 2005-01-29  James Youngman  <jay@gnu.org>
4059         * configure.in: No longer version 4.2.15 - we've changed the manual.
4061         * doc/find.texi:
4062         Clarified the txt about adding extra tests with post-processing via
4063         xargs, and recommend -execdir instead for security reasons.
4065         * doc/find.texi: Patch from Karl Berry:
4066         - more entries for the dir file
4067         - use @copying so the copyright ends up in the HTML etc. output.
4068           (This is the only really important change.)
4069         - put @contents after the title page, for conventional toc location.
4070         - use @ifnottex to wrap the Top node instead of @ifinfo, for the sake of
4071           HTML output, etc.
4073         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
4074         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
4075         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
4076         po/sv.po, po/tr.po: Prepared to release findutils-4.2.15
4078         * ChangeLog: Updated from CVS log.
4080 2005-01-28  James Youngman  <jay@gnu.org>
4082         * configure.in:
4083         Make --enable-d_type-optimization and --enable-d_type-optimisation
4084         both work.
4086         * configure.in: Assume --enable-d_type-optimisation by default
4088         * find/parser.c: Indicate which features are enabled/disabled
4090         * locate/testsuite/config/unix.exp:
4091         Clean up the files left behind by the locate_textonly test
4093 2005-01-27  James Youngman  <jay@gnu.org>
4095         * doc/find.texi: Documented --regex.
4097         * NEWS, locate/locate.1, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/regex1.exp:
4098         Implemented locate --regex - but needs documenting in Texinfo manual.
4100 2005-01-25  James Youngman  <jay@gnu.org>
4102         * configure.in: Bumped version no.
4104         * doc/find.texi:
4105         Document --mmap and --stdio as being synonyms of -m and -s.
4107         * locate/locate.1:
4108         Document --mmap and --stdio as synonyms of -m and -s.
4110         * locate/locate.c:
4111         Document -m and -s (both no-ops) in the usage message.
4113         * doc/find.texi, locate/locate.1: Document -m and -s as no-ops.
4115         * ChangeLog: Updated for release of findutils-4.2.14.
4117         * NEWS, 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/sk.po, po/sv.po, po/tr.po:
4118         Preparing to release findutils-4.2.14
4120 2005-01-25  James Youngman  <jay@gnu.org>
4122         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
4123         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
4124         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
4125         po/sv.po, po/tr.po: Preparing to release findutils-4.2.14
4127 2005-01-24  James Youngman  <jay@gnu.org>
4129         * Makefile.am: Work around the fact that automake-1.7 actually
4130         works, and correctly distributes regex.c; hence dist-hook should
4131         only copy gnulib/lib/regex.c if this has not already been done.
4133         * find/defs.h, find/find.c, find/pred.c,
4134         find/testsuite/Makefile.am,
4135         find/testsuite/find.gnu/printf-symlink.exp,
4136         find/testsuite/find.gnu/printf-symlink.xo,
4137         find/testsuite/find.gnu/xtype-symlink.exp,
4138         find/testsuite/find.gnu/xtype-symlink.xo: Fixes for -xtype and
4139         -printf %Y, which had been the wrong way around.
4141         * NEWS: Avoid including the find.gnu subdirectory in the
4142         distributed file more than once
4144         * locate/locate.c:
4145         Move the printing of the statistics into a new function, print_stats()
4147         * find/testsuite/Makefile.am: Avoid including the find.gnu
4148         subdirectory in the distributed file more than once
4150         * import-gnulib.sh:
4151         We need the regex module anyway, to allow compilation on Solaris
4153 2005-01-23  James Youngman  <jay@gnu.org>
4155         * configure.in:
4156         Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
4157         systems like Solaris, which lacks those functions in libc (fixes GNU
4158         Savannah bug #11710).
4160         * locate/locate.1: -S is a synonym for --statistics
4162         * doc/find.texi: Documented the new -H, -L and -P options.
4164         * locate/locate.1, locate/locate.c: Implement options -L
4165         (default), -H and -P, which mean the same things as for find,
4166         except for the fact that the default is -L rather than -P
4168         * find/find.1: Corrected definition of the exit status for -quit.
4170         * find/find.c, find/pred.c: If DEBUG_STAT is set, issue a debug
4171         message when we call chdir() so that we can figure out what is
4172         actually being stat()ed
4174         * locate/updatedb.sh:
4175         Removed spurious newline from help message (bug report from Karl
4176         Berry).
4178         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
4179         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
4180         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po,
4181         Makefile.am, NEWS, configure.in, find/defs.h, find/find.c,
4182         find/parser.c, find/pred.c, find/tree.c, find/util.c,
4183         import-gnulib.sh, lib/savedirinfo.c: Merged the d_type
4184         optimisation code; this is disabled by default, and can be enabled
4185         with 'configure --enable-d_type-optimisation'
4187         * NEWS:
4188         Updated optimisation NEWS item to indicate the effect on runtime.
4190 2005-01-22  James Youngman  <jay@gnu.org>
4192         * NEWS, configure.in: Prepare for release of findutils-4.2.12
4194         * ChangeLog: Brought up to date with recent changes.
4196         * Makefile.am, import-gnulib.sh, po/Makefile.in.in, po/Makevars,
4197         po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
4198         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
4199         po/pl.po, po/pt_BR.po, po/remove-potcdate.sin, po/ru.po, po/sk.po,
4200         po/sv.po, po/tr.po: Switch to using the gnulib gettext module, to
4201         ensure that 'make distcheck' works with current xgettext,
4202         autoconf, etc.
4204         * find/testsuite/config/unix.exp:
4205         Oops, we do need to clean up after all.
4207 2005-01-21  James Youngman  <jay@gnu.org>
4209         * xargs/testsuite/Makefile.am: Added name of missing input file.
4211         * find/testsuite/Makefile.am:
4212         Distribute a few files that we had forgotten about
4214         * xargs/testsuite/Makefile.am: Added some missing files.
4216         * lib/Makefile.am: Also need buildcmd.h.
4218         * xargs/testsuite/Makefile.am: Fixed a typo.
4220         * NEWS: Indicate the d_type performance improvement
4222 2005-01-18  James Youngman  <jay@gnu.org>
4224         * lib/savedirinfo.h: Added on d_type_optimisation also
4226         * lib/savedirinfo.c: Added on branch d_type_optimisation also.
4228         * find/pred.c: Added assert that we actually know the file type by
4229         the time pred_type() is called
4231         * find/find.c: Always initialise state.have_stat = false when
4232         starting to work with a new file
4234 2005-01-17  James Youngman  <jay@gnu.org>
4236         * ChangeLog: Brought up to date with recent changes.
4238         * NEWS: Documented the changes so far.
4240         * find/testsuite/find.gnu/exec-many-rtn-success.xo:
4241         Expected output for exec-many-rtn-success.exp
4243         * find/find.1:
4244         Indicate that -quit still ensures that pending commands are invoked
4246         * doc/find.texi:
4247         Indicate that -quit still causes partial command lines to be invoked,
4248         but there are some types of fatal error which leave such commands
4249         uninvoked.
4251         * find/defs.h, find/find.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
4252         Fixed savannah bug  #11625 Wrong return status for -exec ... \; when command fails; also execute any pending commands when doing -quit
4254         * find/testsuite/find.gnu/exec-many-rtn-failure.exp, find/testsuite/find.gnu/exec-many-rtn-failure.xo, find/testsuite/find.gnu/exec-many-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-fail.exp, find/testsuite/find.gnu/exec-one-rtn-fail.xo, find/testsuite/find.gnu/exec-one-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-success.xo:
4255         Various test cases for succeeding and failing forms of -exec \; and -exec {} +
4257         * find/pred.c: "-exec ... {} +" always returns "true".
4259         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
4260         Implemented d_type optimisation but not working correctly, so currently disabled
4262         * lib/savedirinfo.h, lib/savedirinfo.c:
4263         Initial implementation (temporarily disabled).
4265         * lib/Makefile.am: Resolved merge conflict.
4267         * lib/Makefile.am:
4268         Make sure nextelem.h is included in the list of sources.
4270         * find/parser.c, lib/nextelem.c, lib/nextelem.h, locate/locate.c:
4271         Use prototypes for next_element() to make sure it is called correctly.
4273 2005-01-16  James Youngman  <jay@gnu.org>
4275         * find/find.c, find/pred.c:
4276         When completing incomplete multiple execs, use 'eval_tree' not 'predicates'
4278         * lib/buildcmd.c:
4279         Oops, initialise state->cmd_initial_argv_chars to zero.
4281         * find/find.1:
4282         Document the way that -execdir and -okdir will refuse to wqork if ">"
4283         is on $PATH.  Also document -okdir in the manpage.
4285         * find/parser.c:
4286         -execdir and -okdir are insecure if $PATH includes the current
4287          directory, and so they refuse to work if the user has done that.
4289         * find/pred.c:
4290         Oops; for -exec ... {} +, pass arguments to bc_push_arg() in the right
4291         order.   Problem spotted by Geoff Clare.
4293         * TODO: Removed items which have now been done.
4295         * lib/buildcmd.c: Tidied up formatting of arg list for bc_do_insert
4297 2005-01-15  James Youngman  <jay@gnu.org>
4299         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo:
4300         Added extra tests for more printf formats; patch by Andreas Metzler
4302         * locate/locate.c:
4303         Ensure that the new long options have a relevang short option too.
4304         Also bring usage message into line with the options actually
4305         supported.  Thanks to Bas van Gompel for noticing this defect.
4307         * locate/locate.1:
4308         Escape "-" in SYNOPSIS.  Thanks to Bas van Gompel for noticing this
4309         defect.
4311         * ChangeLog: Fixed typos.
4313         * doc/find.texi:
4314         Documented -execdir, and the "+" variants of -exec and -execdir.
4316         * find/find.1: Documented -execdir.
4318         * xargs/xargs.c:
4319         Updated to bring into line with bc_*() interface changes
4321         * ChangeLog: Updated with recent changes.
4323         * find/defs.h, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h:
4324         Implemented -execdir and -okdir
4326         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4327         First working version of -exec ...+
4329 2005-01-09  James Youngman  <jay@gnu.org>
4331         * find/defs.h, find/find.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4332         Initial implementation of -exec ..{} +, but currently disabled since not yet working
4334 2005-01-08  James Youngman  <jay@gnu.org>
4336         * find/find.c: Fixed typo in comment.
4338         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
4339         We now understand but do not implement -execdir (a *BSD invention, and a very useful security enhancement) and -okdir (the obvious companion to it)
4341         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
4342         The GNU coding standard requires a space between the function name and
4343         its parenthesised argument list.
4345         * find/defs.h:
4346         Understand the -exec ... {} \+ construction (for multiple
4347         replacement).  No support yet.
4349         * locate/locate.1:
4350         Indicate that empty elements in the dbpath are treated as synonyms for
4351         the default database.
4353         * locate/locate.c:
4354         Support empty elements in the dbpath as synonyms for the default
4355         database.  These colons can be leading, trailing or in the middle of
4356         the string.  We no longer com,plain if the user does this.
4358         * lib/nextelem.c:
4359         If curdir_ok is 0 and an element is empty, return "" instead of NULL
4360         so that the caller knows to keep calling us.
4362         * find/find.c, find/pred.c, import-gnulib.sh, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
4363         Savannah bug 11517: find, xargs, locate, etc. should not hide write failures; patch from Jim Meyering
4365         * 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/sk.po, po/sv.po, po/tr.po:
4366         changed .pot creation date
4368         * THANKS, AUTHORS: Take into account the FSF copyright-assignments list
4370         * doc/find.texi:
4371         If -quit is used, the exit value can be nonzero if errors have occurred.
4373         * find/find.1:
4374         Removed incorrect comment about -H, -P and -follow in HISTORY.
4376 2005-01-07  James Youngman  <jay@gnu.org>
4378         * lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4379         Refactored xargs to use an external library function from the new file buildcmd.c
4381         * configure.in: no longer the same as the released 4.2.11 version
4383 2005-01-06  James Youngman  <jay@gnu.org>
4385         * xargs/testsuite/inputs/lines.xi, xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/Makefile.am:
4386         Tests for the -L option
4388         * xargs/testsuite/config/unix.exp: When a test fails, show the diffs
4390         * xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/xargs.posix/l2.xo:
4391         tests for the -l option
4393         * xargs/testsuite/Makefile.am: Added extra test files
4395         * xargs/testsuite/xargs.sysv/trace.exp, xargs/testsuite/xargs.sysv/trace.xe, xargs/testsuite/xargs.sysv/trace.xo:
4396         Added tests for the -t option
4398         * xargs/testsuite/config/unix.exp, xargs/testsuite/inputs/foobar.xi, xargs/testsuite/xargs.gnu/r.exp, xargs/testsuite/xargs.gnu/r.xo, xargs/xargs.1:
4399         Use a blanks-only input file for cases where there is supposed to be no output
4401         * xargs/testsuite/inputs/blank.xi: Initial version.
4403         * xargs/xargs.1:
4404         Corrected a typo; also indicate that it's impossible to use xargs
4405         securely due to the race condition.
4407 2005-01-05  James Youngman  <jay@gnu.org>
4409         * find/parser.c:
4410         Fixed Savannah bug 11495: fallthrough from -printf format processing
4411         from 'n' case to 'd' case.
4413 2005-01-03  James Youngman  <jay@gnu.org>
4415         * doc/find.texi:
4416         Oops.  Had duplicated an entire section.  Fortunately this was after
4417         @bye, so there was no adverse effect.
4419         * NEWS: locate -b.
4421         * doc/find.texi, locate/locate.1: document locate -S
4423         * configure.in, doc/find.texi, locate/locate.1, locate/locate.c:
4424         Support locate -b as a synonym for locate --basename
4426         * 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/sk.po, po/sv.po, po/tr.po:
4427         distcheck
4429         * find/testsuite/config/unix.exp:
4430         Clean up (delete) find.out at at the end of the test.
4432         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c:
4433         Implemented the -samefile test for find
4435 2005-01-02  James Youngman  <jay@gnu.org>
4437         * ChangeLog: Updated with recent changes.
4439         * NEWS:
4440         Bas van Gompel: two-line patch to locate.c to make locate's -i and -w
4441         options work if -e is in use.
4443         * THANKS: Added Bas van Gompel.
4445         * locate/locate.c:
4446         Bas van Gompel: (visit_exists) when testing for the existence of the
4447         file, check the real filename [printname], not the case-converted
4448         filename [testname].  Really these argument names are badly chosen.
4450         * find/find.1, doc/find.texi:
4451         Improved the documentation for -perm, with plenty of examples,
4452         following a comment by Dan Jacobson that the comment "Symbolic modes
4453         use mode 0 as a point of departure" is baffling and unhelpful.
4455         * locate/locate.c:
4456         Suggestion and patch from Bas van Gompel: (new_locate): Fix display of
4457         negative compression ratios.
4459 2004-12-31  James Youngman  <jay@gnu.org>
4461         * NEWS: Brought up to date with recent changes
4463         * doc/find.texi:
4464         Don't need to nest the "race conditions with..." sections so deeply.
4466         * doc/find.texi: Corrected some spelling errors.
4468         * doc/find.texi: Added new "Security Considerations" chapter.
4470 2004-12-23  James Youngman  <jay@gnu.org>
4472         * locate/locate.c:
4473         Applied bugfixes from Bas van Gompel <patch-findutils.buzz@bavag.tmfweb.nl>.
4474         (lc_strcpy): Zero-terminate result.
4475         (add_visitor): Update lastinspector.
4476         (visit_substring_match_casefold): fix off-by-one error.
4477         (new_locate): Move visit_exists down to improve performance.
4478         (new_locate): Don't fold case when getting stats.
4480 2004-12-19  James Youngman  <jay@gnu.org>
4482         * doc/find.texi:
4483         Indicate that "cd /; find tmp -wholename /tmp" will never match anything.
4485         * doc/find.texi: Documented locate --statistics.
4487         * locate/locate.1: Documented the --statistics option.
4489         * locate/locate.c: Added support for the -S option.
4491 2004-12-12  James Youngman  <jay@gnu.org>
4493         * NEWS: Added a summary of the changes so far.
4495         * find/tree.c: Made some of the error messages more self-explanatory
4497         * find/pred.c: Print pointers with %p, not %x.
4499         * find/find.c: Moved option data into struct options.
4501         * find/find.1: clarifications
4503         * find/testsuite/find.gnu/comma.exp:
4504         Limit the amount of searching with maxdepth.
4506         * doc/find.texi: clearer description of how -prune works
4508         * ChangeLog: Removed duplicate entry.
4510         * configure.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
4511         Separated ariables representing current state from variable representing option information
4513 2004-12-11  James Youngman  <jay@gnu.org>
4515         * find/parser.c: Readability improvement to the usage message.
4517         * find/find.c: Oops.  Fixed unmatched #endif.
4519         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo, THANKS, configure.in, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
4520         Fixed Savannah bug #11280
4522         * find/find.c:
4523         Remember to set path_length and curdepth in process_top_path().
4525 2004-12-07  James Youngman  <jay@gnu.org>
4527         * find/fstype.c: Use xstat() not stat() to examine things.
4529         * find/find.c: Explain why #ifdef EOVERFLOW.
4531         * find/find.c: EOVERFLOW is not defined on UNICOS.
4533         * NEWS: Corrected typo.
4535 2004-12-06  James Youngman  <jay@gnu.org>
4537         * ChangeLog: Brought up to date.
4539         * NEWS, configure.in: releasing 4.2.10
4541         * 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/sk.po, po/sv.po, po/tr.po:
4542         distcheck
4544         * ChangeLog: Updated prior to release of finsutils-4.2.10.
4546         * import-gnulib.sh, find/fstype.c:
4547         Use gnulib's mountlist module instead of grokking it ourselves.
4549         * configure.in:
4550         Removed all the out-of-date cruft for grokking getmntent().
4552         * xargs/xargs.c:
4553         Added the -I and -L options; also -E takes an argument which is not optional.
4555 2004-12-05  James Youngman  <jay@gnu.org>
4557         * README, configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c:
4558         Allow debug output to be turned on or off by saying --enable-debug on the configure command line
4560         * README:
4561         Removed disparaging (it is now, it probably wasn't then) comment about
4562         the production-readiness of Automake.
4564         * README: Qualify remarks about POSIX compliance.
4566         * NEWS, configure.in: Preparation for release 4.2.9
4568         * 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/sk.po, po/sv.po, po/tr.po:
4569         distcheck
4571         * ChangeLog: Brought up to date.
4573         * find/find.c:
4574         Avoid duplicate error message when we cannot chdir() into a subdirectory.
4576         * THANKS: Added recent thankees.
4578         * NEWS:
4579         Brought up to date with respect to the current set of fixed bugs.
4581         * NEWS, xargs/xargs.1, xargs/xargs.c:
4582         Implemented POSIX options -L, -I and -E
4584 2004-12-03  James Youngman  <jay@gnu.org>
4586         * find/parser.c:
4587         -xdev is an option, not a test.   Fixes Savannah bug 11192.
4589         * find/find.1, xargs/xargs.1:
4590         Escape dashes with a backslash (for fix Savannah bug 11189).
4592 2004-11-27  James Youngman  <jay@gnu.org>
4594         * find/find.c:
4595         More use of safely_chdir(). Also bugfix: -L should imply -noleaf.  Be more careful about when xstat should fall back on lstat() when stat() fails.
4597         * find/find.1: "necessary" only has one "C".
4599         * find/find.1:
4600         If stat() fails with ELOOP, we issue a diagnostic message.
4602 2004-11-26  James Youngman  <jay@gnu.org>
4604         * find/find.c: Removed some unused code.
4606         * Makefile.am: Don't do anything in the 'intl' subdirectory
4608         * find/find.c:
4609         Enhanced safely_chdir() to the point where the test suite passes, and report infinite loops in the directory hierarchy
4611         * find/defs.h:
4612         belt and braces; ensure that SYMLINK_NEVER_DEREF has value zero
4614         * find/find.1:
4615         Describe our strategy for detecting and reporting infinite loops
4617 2004-11-24  James Youngman  <jay@gnu.org>
4619         * doc/find.texi:
4620         Updated the discussion of th error messages for findutils-4.2.8.
4622         * configure.in: Next version will be 4.2.9...
4624         * find/find.c:
4625         Don't issue a warning if we notice the mounting of a filesystem that's
4626         likely just to be an automounter.
4628         * doc/find.texi, find/find.1:
4629         Explain how rounding is performed for -atime and friends.
4631         * xargs/xargs.c:
4632         Once we collect enough arguments (for the value specified by the -n
4633         option) to do an exec(), do it immediaely instead of waiting for the
4634         next one to arrive.  This fixes Savannah bug #7340.
4636         * ChangeLog, configure.in, NEWS: Prepare to release 4.2.8.
4638         * NEWS: Updates for 4.2.8.
4640         * configure.in: check for  sys/types.h
4642         * find/find.c:
4643         If wd_sanity_check() discovers that the mount table has changed, remember the updated device number and inode so that we also consider these to be valid on the way back up.
4645         * find/defs.h:
4646         Declarations of xmalloc() and friends belong in xalloc.h, not in defs.h
4648         * find/parser.c: avoid signed/unsigned warning, and #include xalloc.h
4650         * find/fstype.c:
4651         Changed to alloc get_mounted_devices() to compile on Solaris
4653         * README-CVS:
4654         Automake requires GNU m4, so point out that the reader needs that.
4656         * find/defs.h, find/find.c, find/fstype.c:
4657         When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted filesystem names
4659         * NEWS: prepare for 4.2.8
4661         * configure.in:
4662         Look for some Solaris headers which are used by get_mounted_devices()
4664         * lib/Makefile.am: don't build savedirtypes yet
4666         * 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/sk.po, po/sv.po, po/tr.po:
4667         updated po files
4669         * m4/nullsort.m4:
4670         Avoid suprious output of the test data when the tests fail.
4672 2004-11-21  James Youngman  <jay@gnu.org>
4674         * 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/sk.po, po/sv.po, po/tr.po:
4675         Messages changed again
4677         * ChangeLog, configure.in: Preparing to release 4.2.7.
4679         * NEWS: Updated for release of 4.2.7.
4681         * import-gnulib.sh: Also need canonicalize module.
4683         * find/find.c:
4684         When checking to see if a filesystem has changed state, use an
4685         absolute pathname.
4687         * configure.in:
4688         No need to pause to allow James to view his handiwork, it (allegedly)
4689         works now.
4691         * configure.in:
4692         Oops.  Check for setlocale() to re-enable the i18n support which was
4693         accidentally disabled in 4.2.5.
4695         * find/find.c:
4696         Check to see if the new directory is a transitioned mount point by
4697         using its ABSOLUTE name, if we can figure it out.
4699         * doc/find.texi:
4700         Added guidance on some of the error messages.  Not the most common
4701         ones, but the ones where the user might most benefit from some handy
4702         hints or an explanation of what is going on.
4704         * find/pred.c:
4705         Actually emit an error message if we fail to stat a symlink (for
4706         reasons other than nonexistence of the link and infinite loop).
4708         * doc/texinfo.tex: Updated texinfo.tex
4710         * NEWS, configure.in, find/find.c, find/fstype.c:
4711         Enable the 'Warning: filesystem XXX has recently been mounted' check on Solaris, which prevents it exiting fatally when traversing an automount mount point
4713         * 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/sk.po, po/sv.po, po/tr.po:
4714         messages changed again
4716         * NEWS: Implemented xargs --arg-file.
4718         * doc/find.texi, xargs/xargs.1, xargs/xargs.c, NEWS:
4719         Implemented xargs --arg-file
4721         * find/find.c:
4722         Where a filesystem was recently (un)mounted, try togive its full name
4724         * configure.in:
4725         Try to avoid requesting -lsun if we don't seem to need it (e.g. on
4726         UNICOS where it is not present and trying to link against it produces
4727         a warning).
4729         * find/defs.h, lib/modetype.h: Guard against multiple inclusion
4731         * find/fstype.c:
4732         We now need <mntent.h> even if we are not using getmntent() to figure
4733         out the type of a filesystem, because wd_sanity_check() needs to
4734         enumerate the system mount points.
4736         * configure.in: Next release will be 4.2.7.
4738         * find/fstype.c:
4739         get_mounted_filesystems() should use getmntent() if that function is
4740         present, rather than just if configure didn't find anything better for
4741         filesystem_type_uncached() to use than that.
4743         * find/parser.c:
4744         If -delete is the only action on a file, don't assume the default
4745         -print action too.
4747         * 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/sk.po, po/sv.po, po/tr.po:
4748         Preparation to release findutils-4.2.6.
4750         * find/Makefile.am, xargs/Makefile.am:
4751         Enable checking of support for --version and --help
4753         * locate/Makefile.am:
4754         Con't check command-line options for frcode, code or bigram
4756         * locate/code.c: Support --version and --help.
4758         * ChangeLog: *** empty log message ***
4760         * find/defs.h, find/find.c, find/fstype.c, lib/Makefile.am, lib/extendbuf.c, lib/extendbuf.h, NEWS:
4761         Avoid fatal error if automount mounts a filesystem on a directory because we chdir()ed into it
4763         * configure.in: Next release will be 4.2.6.
4765         * find/find.1:
4766         Indicate that the '-' flag does work for most fields.   Also provide
4767         an example of using the comma operator to traverse the filesystem just
4768         once but search for more than one thing.
4770         * doc/find.texi: Indicate that the '-' flag does work for most fields.
4772 2004-11-19  James Youngman <jay@gnu.org>
4774         * configure.in: releaseing findutils-4.2.5
4776         * find/testsuite/Makefile.am, locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
4777         If a directory has no Makefile.am, omit it from the parent's DIST_SUBDIRS - automake-1.9 requires this
4779         * 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/sk.po, po/sv.po, po/tr.po:
4780         updated by make distcheck
4782         * ChangeLog, NEWS: Updated for release 4.2.5.
4784         * find/find.1, doc/find.texi:
4785         Tell the reader that format flags may not work as they expect.
4787         * configure.in:
4788         Use the correct name for the macro gl_AC_TYPE_LONG_LONG (not
4789         jm_AC_TYPE_LONG_LONG).
4791 2004-11-15  James Youngman <jay@gnu.org>
4793         * import-gnulib.sh:
4794         Avoid test -e because not all systems are POSIX-compliant (bug
4795         #11005).  Also don't need regex module any more if we're not building
4796         in intl.
4798         * Makefile.am, configure.in:
4799         These days gnulib likes to include 'libintl.h' which our very old intl/ directory lacks.   For the moment, disable use of the internal intl/ directory
4801         * doc/find.texi:
4802         Use @ref not @xref for a reference at the beginning of a sentence.
4804         * intl/Makefile.in:
4805         Make sure gnulib.lib is on the #include path (Savannah bug #11002)
4807         * locate/locate.c:
4808         Use base_name instead of basename - fixes Savannah bug 11003.
4810         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, locate/bigram.c, locate/locate.c:
4811         Don't need banner to emphasise the location of the call to jy_SORTZ
4813 2004-11-12  James Youngman <jay@gnu.org>
4815         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c, find/testsuite/find.gnu/posix-dflt.exp, find/testsuite/find.gnu/posix-dflt.xo, find/testsuite/find.gnu/posix-h.exp, find/testsuite/find.gnu/posix-h.xo, find/testsuite/find.gnu/posix-l.exp, find/testsuite/find.gnu/posix-l.xo, find/util.c:
4816         Implemented BSD option -P and also the correct default behaviour of find with respect to symlinks if neither -L nor -H is specified [i.e. same as -P]
4818 2004-11-11  James Youngman <jay@gnu.org>
4820         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c:
4821         Implemented -H and -L options.
4823         * find/util.c: Added in the -H and -L options on the usage message.
4825 2004-11-10  James Youngman <jay@gnu.org>
4827         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4828         Implemented %M and %A+ format specifiers
4830         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4831         Documented the fact that only %d and %m format specifiers honour the various formatting flags
4833         * xargs/xargs.c:
4834         Get the right number of bytes in a Kilobyte (hint: it's not 1048; that
4835         was a typo, honest :)
4837         * po/pl.po: Applied Polish translations
4839 2004-11-08  James Youngman <jay@gnu.org>
4841         * 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/sk.po, po/sv.po, po/tr.po:
4842         distcheck changed the po files again
4844         * locate/Makefile.am:
4845         Make install-data-hook honour the setting of DESTDIR so that "make
4846         DESTDIR=/tmp/foo install" works and puts localstater in the right
4847         place.
4849         * configure.in: We're now working on findutils-4.2.5.
4851         * doc/find.texi, xargs/xargs.1:
4852         Point out that xargs -i only splits input items at newlines
4854         * ChangeLog: Indicate that we released 4.2.4.
4856         * ChangeLog: Updated for release 4.2.4
4858         * NEWS, configure.in: Prepare for release of 4.2.4.
4860         * NEWS: Brought up to date with latest changes.
4862         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, po/da.po, po/de.po, po/es.po, po/findutils.pot, po/gl.po, po/id.po, po/ko.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po:
4863         Turn warning messages off by default if stdin is not a tty; allow these to be controlled explicitly by options -warn and -nowarn
4865         * po/et.po, po/it.po: Updated translation files
4867         * po/sk.po: New translation file
4869         * po/fr.po, po/nl.po, po/tr.po: Updated translation files
4871         * configure.in: Added Slovak (sk) language.
4873         * xargs/xargs.c:
4874         Enforcing a lower limit on the value specified by -s makes the test
4875         suite fail.  Removed that lower limit.
4877         * locate/Makefile.am: Oops, multilocate doesn't exist yet.
4879         * NEWS: *** empty log message ***
4881         * doc/find.texi, locate/updatedb.1, locate/updatedb.sh:
4882         Added option --findoptions to updatedb
4884         * locate/Makefile.am, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
4885         Fixed section numbers in manpage titles and cross-references
4887         * NEWS, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
4888         Increased the default argument length and improved POSIX compliance of the handling of out-of-range values for the -s option
4890 2004-11-07  James Youngman <jay@gnu.org>
4892         * m4/Makefile.am:
4893         Added in the extra files we need to distribute, nullsort.m4
4894         order-bad.bin order-good.bin
4896         * doc/find.texi: Documented locate's --limit option
4898         * locate/locate.1, locate/locate.c:
4899         Implmented --limit and corrected the implementation of the -i option.
4901 2004-11-06  James Youngman <jay@gnu.org>
4903         * NEWS, doc/find.texi, locate/locate.1:
4904         Documented --wholename and --basename and updated the NEWS file
4906         * README-CVS:
4907         Give the autogen commands in a form that you can usefully cut and paste into a shell
4909         * NEWS: Options --null and --count) for locate
4911         * lib/nextelem.c:
4912         Don't return '.' for an empty path element, because the path we are splitting may not be intended to contain directories
4914         * configure.in: we're working on findutils-4.2.4 now
4916         * locate/Makefile.am: Substitute @SORT_SUPPORTS_Z@
4918         * doc/find.texi:
4919         Documented new locate option --null and newline handling
4921         * locate/locate.1, locate/locate.c:
4922         New locate options --null, --wholename, --basename, --count
4924         * locate/frcode.c, locate/updatedb.1, locate/updatedb.sh:
4925         correctly handle newlines in the file names
4927         * configure.in: Determine if sort -z works
4929         * m4/nullsort.m4, m4/order-bad.bin, m4/order-good.bin:
4930         jy_SORTZ: a macro to determine if the system has a sort command with a working -z option
4932 2004-11-01  James Youngman <jay@gnu.org>
4934         * NEWS: Fixed "find -printf '%H\n'".
4936         * find/find.c:
4937         Avoid segfault if -printf %H is used where the matched file was the default, unspecified starting point, the current directory
4939 2004-10-31  James Youngman <jay@gnu.org>
4941         * find/find.1, find/parser.c: NetBSD also supports -d.
4943         * find/find.1, doc/find.texi:
4944         Documented the behaviour of -daystart and -follow in more detail
4946         * find/parser.c: Corrected the usage message.
4948         * find/parser.c:
4949         When deciding whether to issue a warning about options following
4950         non-options, ignore any options whose position affects the tests
4951         (i.e. -daystart and -follow).
4953         * find/parser.c: -daystart is a positional option like -follow.
4955         * find/parser.c:
4956         Issue a warning message if an option is specified after a test or an
4957         action (because the user might have believed that the behaviour of the
4958         option is in some way conditional on the preceding tests).
4960         * locate/updatedb.sh:
4961         Oops; removed some test code that I shouldn't have checked in.
4963         * locate/updatedb.sh:
4964         Indicate that the old locate database format will shortly be unsupported.
4966         * doc/find.texi:
4967         Use @direntry instead of hard-coding START-INFO-DIR-ENTRY inside @ifinfo.
4969         * locate/updatedb.1: Updated default location of locatedb file.
4971         * README-alpha:
4972         Updated to give correct FTP location and to not talk about "test"
4973         versions of automake, which are no longer required.
4975         * locate/updatedb.sh:
4976         Incorporated the default list of filesystems to avoid from the Debian
4977         package.  Also added /afs and /sfs to the default pruned paths.
4979         * configure.in: Released findutils 4.2.3
4981         * 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:
4982         did make distcheck, which updates these files
4984         * find/defs.h, find/fstype.c:
4985         Use const qualifier in arguments to filesystem_type() to allow callers with const variables to use them
4987         * ChangeLog: Updated.
4989         * NEWS: Added new news.
4991         * find/find.c:
4992         Extra diagnositcs for the case where we have the error "%s changed
4993         during execution of %s" - that is when we chdir back to the parent
4994         directory only to find that it has changed.
4996 2004-10-30  James Youngman <jay@gnu.org>
4998         * .cvsignore, NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
4999         Implemented the -quit action
5001         * NEWS, doc/find.texi, find/find.1, find/parser.c, find/pred.c:
5002         Refactored time handling routines in preparation for support of absolute timestamp comparison predicates
5004         * locate/locate.c:
5005         Applied Savannah patch #2952 ("getline off-by-one bugfix").
5007         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
5008         Added -delete action (Savannah patch #3454 with additions)
5010         * locate/locate.c:
5011         Applied Savannah patch #2692 (allowing get_short to process negative integers).
5013         * find/find.c:
5014         If we are iossuing an error message because $FIND_BLOCK_SIZE is set,
5015         ignore the setting of errno.
5017         * find/parser.c: More fixes for pedantic compiler warnings
5019         * NEWS, find/parser.c, find/tree.c: Eliminated some compiler warnings
5021         * find/find.c, find/parser.c, find/pred.c:
5022         Various fixes for compiler warninga sbout unreachable code or unused function arguments
5024         * intl/plural.y: Silence compiler warning about unused argument.
5026         * locate/testsuite/Makefile.am:
5027         Subdirectory "inputs" does not exist, so remove it from DIST_SUBDIRS.
5029         * locate/locate.c:
5030         Corrected the explanation of why we have to use no parentheses around
5031         the String argument to the N_ macro in its expansion.
5033         * configure.in: Nextr release is 4.2.3.
5035         * configure.in: IOndicate this is no longer the pristine release.
5037         * NEWS:
5038         Oops, comments for release 4.2.0 should have said 20480 bytes, not 2480.
5040         * lib/listfile.c:
5041         The -ls predicate should not truncate usernames.  Fixes Savannah bug #10800.
5043         * find/fstype.c, locate/locate.c:
5044         Fixes for Savannah bug #3727 (Intel icc compilation errors).
5046 2004-10-25  James Youngman <jay@gnu.org>
5048         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
5049         Support -printf %D, which prints the device number of the containing filesystem
5051         * locate/updatedb.sh:
5052         Avoid confusion between James Woods and James Youngman, by using the
5053         disambiguating surname.
5055         * find/parser.c: Use RE_ICASE instead of re->translate.
5057         * configure.in, find/parser.c, find/pred.c, xargs/xargs.c:
5058         No need to #define _GNU_SOURCE if we use gl_INIT.
5060 2004-10-24  James Youngman <jay@gnu.org>
5062         * ChangeLog: Prepared to release findutils-4.2.2.
5064         * ChangeLog, NEWS, 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:
5065         Updates prior to release of 4.2.2
5067         * NEWS: Updated with news for findutils-4.2.2.
5069         * find/testsuite/config/unix.exp, lib/forcefindlib.c, 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, NEWS, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, import-gnulib.sh:
5070         Corrected typo in the address of the FSF office
5072         * lib/strspn.c: Updated FSF address.
5074         * m4/.cvsignore: 'cvs status' should ignore Makefile.in
5076         * m4/Makefile.am, Makefile.am, NEWS, README-CVS, configure.in, doc/texinfo.tex, find/defs.h, find/fstype.c, find/parser.c, find/pred.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/Makefile.am, lib/forcefindlib.c, lib/listfile.c, lib/nextelem.c, lib/strspn.c, lib/waitpid.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, m4/findlib.m4, 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/xargs.c:
5077         Use gnulib-tool --import to import the gnulib code, rather than the odd way we were doing it before
5079         * find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, locate/code.c, locate/locate.c, xargs/xargs.c:
5080         Work round an apparent compiler bug in HP-UX 11.23 for
5081         ia64
5083         * locate/locate.c:
5084         Work around what appears to be a C compiler bug in HP-UX 11.23 for
5085         ia64.
5087         * INSTALL, depcomp, install-sh, missing, mkinstalldirs:
5088         Updated from automake
5090         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c, find/find.c:
5091         Avoid use of exit() within main, to silence warnings about unreachable code
5093 2004-10-22  James Youngman  <jay@gnu.org>
5095         * doc/find.texi: Syntax corrections.
5097         * doc/find.texi: Indicate that "-exec {}+" is not yet supported.
5099         * find/find.1: Indicate that "{}+" is not yet supported.
5101         * find/testsuite/find.gnu/name-period.xo, find/testsuite/find.gnu/name-period.exp, find/find.1, doc/find.texi:
5102         The -name predicate must allow '*' to match '.foo' as demanded by IEEE
5103         Std 1003.2-1992 Interpretation #126.
5105         * find/pred.c:
5106         Remove use of FNM_PERIOD for -name as demanded by IEEE Std 1003.2-1992
5107         Interpretation #126
5109         * find/parser.c: Fix for compilation (on AIX 4.3) with GCC 2.x.
5111         * xargs/xargs.c:
5112         Changed the erorr message issued when there is an unmatched quote to
5113         point out that the user might have wanted to use the -0 option instead.
5115 2004-10-17  James Youngman  <jay@gnu.org>
5117         * configure.in:
5118         Define intmax_t if it is not already defined - allows parser.c to compile on AIX 4.3
5120         * configure.in:
5121         Adjust version number to indicate that this s/w has moved on since the
5122         4.2.1 release.
5124         * configure.in: preparing to release 4.2.1
5126         * ChangeLog: updated with current changes
5128         * README-CVS: Updated to go with newer version of gnulib.
5130         * 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:
5131         preparation for release
5133         * NEWS: Mention the changes to "trap".
5135         * NEWS: Brought up to date.
5137         * import-gnulib.sh:
5138         Use xalloc-die module from gnulib, since that has now been split out
5140         * find/parser.c:
5141         Check fnmatch() when other predicates that rely on fnmatch() are used.
5143         * find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup
5145 2004-10-16  James Youngman <jay@gnu.org>
5147         * import-gnulib.sh:
5148         Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.
5150         * locate/updatedb.sh:
5151         Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
5152         names instead.  See
5153         http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
5154         which indicates that support for signal numbers is optional, while
5155         support for signal names is mandatory.
5157         * configure.in:
5158         Indicate that this is the CVS version (once again) now that findutils
5159         4.2.0 has been released.
5161         * 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:
5162         findutils 4.1.20 check-in for tagging
5164 2004-10-02  James Youngman <jay@gnu.org>
5166         * po/Makefile.in.in:
5167         Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.
5169         * NEWS: Brought up to date, organised more clearly, and tidied up.
5171         * NEWS: brought up to date with recent changes
5173         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
5174         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
5176         * find/pred.c:
5177         Fixed usage of human_readable() in '%k' format specifier to fix a bug
5178         reported by Dmitry V. Levin (arguments to human_readable() were
5179         specified in the wrong order, which resulted in a floating-point
5180         error).
5182 2004-08-08  James Youngman <jay@gnu.org>
5184         * locate/updatedb.sh:
5185         cd to / to avoid inability to examine the current directory if we're
5186         invoked via cron (and hence in root's home directory for example).
5188         * doc/find.texi, find/find.1:
5189         Deprecate -path and -ipath in favour of -wholename and -iwholename
5191         * find/parser.c:
5192         As per RMS's suggestion, deprecate -path and -ipath in favour of
5193         -wholename and -iwholename.
5195         * locate/locate.c:
5196         Fixed Savannah bug #9923, in which get_short() returns large positive
5197         ints when it should be returning negative shorts.
5199         * xargs/xargs.1:
5200         Applied documentation improvements suggested by Dan Jacobson
5201         <jidanni@jidanni.org>.
5203         * xargs/xargs.c:
5204         Don't check size_of_environment against arg_max since that causes the
5205         test suite to fail.
5207         * xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option
5209 2004-05-03  James Youngman <jay@gnu.org>
5211         * find/find.1:
5212         document the various suffixes for -size and also the new
5213         option -ignore_readdir_race
5215         * locate/locate.c:
5216         Fixes Savannah bug #8623 (failure to check consistency of data
5217         read from locate database)
5219         * locate/updatedb.sh:
5220         Resolves Savannah bug 4380, that updatedb generates an empty
5221         database if one of the commands fails
5223         * NEWS: Talk about -ignore_readdir_race
5225         * doc/find.texi:
5226         Documented -ignore_readdir_race and -noignore_readdir_race
5228         * find/find.c:
5229         -ignore_readdir_race should have no effect if the reason for the
5230          failure of stat(2) was anything other than ENOENT.
5232         * find/defs.h, find/find.c, find/parser.c:
5233         Fixed Savannah bug 4391 (readdir race condition leading to
5234         spurious error messages)
5236 2004-04-24  James Youngman <jay@gnu.org>
5238         * README-CVS: Corrected the instructions for getting gnulib via CVS.
5240 2004-04-13  James Youngman <jay@gnu.org>
5242         * doc/find.texi:
5243         Actioned Savannah bug #8558 (find complains when it tries to recurse
5244         into directories that it had removed).
5246 2004-03-13  James Youngman <jay@gnu.org>
5248         * ChangeLog: Updated from checkin comments.
5250         * find/find.c:
5251         Oops, there is no access to the predicate name table if DEBUG is
5252         not #defined.
5254         * find/parser.c:
5255         Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
5256         the failure to handle large arguments to -mtime.  The existing code
5257         does careful computation and then bungs the value into a time_t, which
5258         ruins all our careful effort.  The new code is not a great
5259         improvement.  We just check the result to detect overflow, rather than
5260         actually avoiding the overflow.
5262         * find/find.c:
5263         Fixed Debian bug #185202 by checking for any trailing predicates after
5264         the top-level invocation of get_expr() has done its work.
5266         * locate/locate.1, xargs/xargs.1:
5267         Fixed Debian bug 175372, inappropriate 'L' suffixes on manual
5268         page section indicators
5270         * find/find.1:
5271         Removed "L" suffixes from manual page section indicators, to fix
5272         Debian bug 175372.
5274         * debian/updatedb.conf:
5275         Updated with list of filesystems from current Debian release.  This
5276         includes devfs, for example.
5278         * xargs/xargs.1:
5279         Modified documentation of "-s" option to take into account the fix for
5280         Debian bug #176201.
5282         * xargs/xargs.c:
5283         Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
5284         reading a patch offered by Bob Proulx and implementing something
5285         substantially similar myself.
5287 2004-01-03  James Youngman  <jay@gnu.org>
5289         * xargs/xargs.c:
5290         Indicate that prep_child_for_exec() fixes Savannah bug #3992.
5292         * xargs/xargs.c:
5293         Attach the stdin of xargs' child process to /dev/null so that if it
5294         tries to read from its stdin it doesn't consume any of the list of
5295         files that xargs is trying to use.
5297         * find/find.1:
5298         Documented that the -regex option follows Gnulib's re_match()
5299         implementation.
5301         * NEWS, locate/locate.c: Applied Savannah patch 2108
5303         * xargs/xargs.c: Applied Savannah patch 1500
5305         * find/find.1, doc/find.texi:
5306         Improved the documentation for the %k and %b format specifiers to
5307         -printf (Savannah bug #5034).  Also pointed out that this handling is
5308         different to that used by the "b" and "k" suffixes with "-size".
5310         * find/find.1: Improved the documentation for %k (Savannah bug #5034).
5312         * find/find.1:
5313         Improved the documentation for -print0 in the manpage, fixing Debian
5314         bug 111143.
5316         * README-CVS, find/pred.c, lib/listfile.c:
5317         Brought up-to-date with change in gnulib's human.c - we no longer
5318         use human_readable_inexact(), because it is no longer provided.
5320 2003-08-08  James Youngman  <jay@gnu.org>
5322         * find/find.1:
5323         Documented the fact that -printf also supports the '\0' escape code.
5324         Added "STANDARDS CONFORMANCE" section.
5326 2003-08-02  James Youngman  <jay@gnu.org>
5328         * find/find.1:
5329         Explain that braces are not special when performing filename matching
5330         with -name.
5332         * find/find.1:
5333         added example of the use of -exec to the EXAMPLES section
5335         * find/fstype.c, locate/locate.c:
5336         Savannah bug #4295 - implicit declarations of ctype.h functions
5338         * locate/locate.c:
5339         Savannah bug #4279 - missing newline on locate help message
5341         * find/find.1, xargs/xargs.1:
5342         Improved discussion of the -print0 option of find and the -0 option of xargs
5344 2003-06-26  James Youngman  <jay@gnu.org>
5346         * import-gnulib.sh:
5347         Remove reference to nonexistent module "basename" ("dirname" exists
5348         and we already use that).
5350 2003-06-21  James Youngman  <jay@gnu.org>
5352         * doc/find.texi:
5353         Indicate that xargs stops immediately if a command exits with status 255
5355         * xargs/xargs.1:
5356         Document the fact that xargs exits immediately with an error message
5357         if the command it executes exits with a status of 255.
5359 2003-06-18  James Youngman  <jay@gnu.org>
5361         * find/find.1:
5362         Indicate that -fls and friends always create their output file
5364 2003-06-16  James Youngman  <jay@gnu.org>
5366         * ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
5367         Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.
5369         * AUTHORS: Identify the current maintainer.
5371         * TODO: Removed the TODO items which have now been done.
5373         * THANKS: Added Bruno Haible and Bob Proulx.
5375         * xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
5376         (mbstrstr): New function.
5377         (do_insert): Use it instead of strstr.
5379         * config.guess, config.sub:
5380         Use config.guess and config.sub from automake
5382         * find/fstype.c:
5383         Bruno Haible: (fstype_to_string) Don't define this function if
5384         HAVE_F_FSTYPENAME_IN_STATFS is defined.
5386         * configure.in:
5387         Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
5388         because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.
5390         * doc/find.texi, find/find.1:
5391         Applied patch 1498 (documenting the backslash escape sequence)
5393         * locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.
5395         * doc/find.texi:
5396         Applied Savannah patch #1547 (document the fact that printf
5397         field-width specifiers are supported).
5399         * xargs/xargs.c:
5400         Applied Savannah patch #1499 (adds final newline to usage message).
5402 2003-06-14  James Youngman  <jay@gnu.org>
5404         * NEWS, configure.in:
5405         Updated version number to 4.2.0-CVS [not ready for release yet]
5407         * 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
5408         also need stpcpy (e.g. for Solaris)
5410         * intl/dcigettext.c:
5411         plural_lookup: don't use a variable called "index", because we may
5412         have done "#define strchr index", in which case using a variable
5413         called index will prevent us calling strchr(p, ch) in the same scope.
5415         * 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:
5416         Updated copyright years and the address of the FSF
5418         * aclocal.m4, config.h.in, configure:
5419         Removed files that are generated from other files (e.g. configure)
5421         * NEWS: Updated NEWS file for 4.1.20.
5423         * 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:
5424         Updates to the i18n files to ensure that 'make dist' succeeds
5426         * lib/posix/.cvsignore, lib/posix/Makefile.am,
5427         lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
5428         lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
5429         lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
5430         lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
5431         lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
5432         lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
5433         locate/Makefile.am, locate/Makefile.in, locate/locate.c,
5434         locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
5435         m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
5436         m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
5437         m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
5438         m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
5439         m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
5440         m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
5441         m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
5442         m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
5443         m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
5444         m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
5445         m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
5446         m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
5447         m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
5448         xargs/Makefile.in, xargs/testsuite/Makefile.in,
5449         find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
5450         lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
5451         lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
5452         lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
5453         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
5454         lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
5455         lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
5456         lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
5457         lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
5458         lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
5459         lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
5460         lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
5461         find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
5462         Updated to work with current version of gnulib
5464         * import-gnulib.sh: New file.
5466         * config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
5467         Updated to work with current version of gnulib
5469         * README-CVS: New file.
5471         * Makefile.am, Makefile.in, README-CVS, aclocal.m4:
5472         Updated to work with current version of gnulib
5474 2003-05-26  James Youngman <jay@gnu.org>
5476         * po/pl.po, pt_BR.po, ru.po, sv.po, tr.po, da.po, de.po, es.po,
5477         et.po, findutils.pot, fr.po, gl.po, id.po, it.po, ko.po, nl.po:
5478         Changes to allow compilation on non-GNU systems (i.e. for the
5479         macros that gnulib decides to #define to be effective)
5481 2003-05-24  James Youngman <jay@gnu.org>
5483         * po/da.po, de.po, es.po, et.po, findutils.pot, fr.po, gl.po,
5484         id.po, it.po, ko.po, nl.po, pl.po, pt_BR.po, ru.po, sv.po, tr.po:
5485         also need stpcpy (e.g. for Solaris)
5487         * po/POTFILES.in, da.po, de.po, es.po, et.po, findutils.pot, fr.po,
5488         gl.po, id.po, it.po, ko.po, nl.po, pl.po, pt_BR.po, ru.po, sv.po,
5489         tr.po: Updates to the i18n files to ensure that 'make dist'
5490         succeeds
5492 2001-06-09  Kevin Dalley  <kevin@seti.org>
5494         * intl/plural.c:
5495         Changes the location of bison.simple after running bison on local
5496         machine
5498         * ChangeLog: *** empty log message ***
5500         * Makefile.in, aclocal.m4, config.h.in, configure,
5501         doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
5502         lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
5503         locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
5504         xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38
5506         * ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.
5508         * configure.in: * configure.in: add tr to ALL_LINGUAS.
5510         * intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
5511         intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
5512         intl/locale.alias, intl/ngettext.c, intl/plural.y,
5513         intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38
5515         * intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
5516         intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***
5518         * m4/jm-macros.m4:
5519         * jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
5520         AM_ICONV, which is imported from gettext-0.10.38.  removed
5521         jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
5522         imported from gettext-0.10.38.
5524         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
5526         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
5528         * po/ChangeLog: * cat-id-tbl.c: Remove file.
5530         * po/de.po, po/es.po, po/et.po, po/fr.po:
5531         * fr.po, et.po, es.po, de.po: updated translations to
5532         findutils-4.1.7.
5534         * po/tr.po: * tr.po:  New Turkish translation.
5536         * m4/ChangeLog: *** empty log message ***
5538         * intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
5539         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
5540         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
5541         intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
5542         intl/localealias.c, intl/plural.c, intl/textdomain.c,
5543         intl/ChangeLog, intl/Makefile.in, intl/VERSION,
5544         intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38
5546         * m4/Makefile.am:
5547         reflects addition of codeset.m4 from gettext-0.10.38, automatically
5548         generated.
5550         * m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
5551                 m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
5552                 progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
5553                 glibc21.m4, gettext.m4, codeset.m4: updated from
5554                 gettext-0.10.38.
5556         * ChangeLog: *** empty log message ***
5558         * THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>
5560         * m4/ChangeLog, locate/testsuite/.cvsignore,
5561         xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
5562         doc/.cvsignore: *** empty log message ***
5564         * m4/jm-macros.m4:      * jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME
5566         * doc/Makefile.in: *** empty log message ***
5568         * doc/Makefile.am:
5569         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
5570         created by dvips.  This should be taken care of by automake, but
5571         the code is commented out.
5573 2001-06-09  Kevin Dalley  <kevin@seti.org>
5575         * ABOUT-NLS: updated from gettext-0.10.38.
5577         * configure.in: add tr to ALL_LINGUAS.
5579         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
5580         created by dvips.  This should be taken care of by automake, but
5581         the code is commented out.
5583         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
5585         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
5587         * po/ChangeLog: * cat-id-tbl.c: Remove file.
5589         * po/de.po, es.po, et.po, fr.po:
5590         * po/fr.po, et.po, es.po, de.po: updated translations to
5591         findutils-4.1.7.
5593         * po/tr.po: * tr.po:  New Turkish translation.
5595 2001-06-05  Kevin Dalley  <kevin@seti.org>
5597         * locate/updatedb.sh: replace "whoami" with "id -u" when testing
5598         for root.
5600 2001-06-04  Kevin Dalley  <kevin@seti.org>
5602         * locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
5603         instance of DIST_SUBDIRS.
5605         * locate/Makefile.am (install-data-hook): changed install target
5606         to install-data-hook, which still installs other files.
5608         * doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
5609         probably be handled by automake.
5611         * doc/mdate-sh: removed file in doc directory.  It now exists only
5612         in top_srcdir, but this changed required a patch to automake.
5614 2001-06-01  gettextize  <bug-gnu-utils@gnu.org>
5616         * Makefile.in.in: Upgrade to gettext-0.10.38.
5617         * cat-id-tbl.c: Remove file.
5618         * stamp-cat-id: Remove file.
5620 2001-05-20  Kevin Dalley  <kevin@seti.org>
5622         * Version 4.1.7
5624         * lib/Makefile.am (EXTRA_DIST): add strcasecmp.c
5626         * find/testsuite/Makefile.am (EXTRA_DIST): new tests:
5627         find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
5628         find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo
5630         * configure.in: update to 4.1.7
5632         * config.sub, config.guess: upgraded to recent versions of
5633         config.sub and config.guess.
5635         * locate/updatedb.sh: Add space to "#! /bin/sh"
5637         * configure.in: Add id to ALL_LINGUAS
5639         * lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
5640         (libfind_a_SOURCES): getline.[ch] removed since getline.c is not
5641         always needed.
5643         * po/da.po, de.po, es.po, et.po, fr.po, gl.po, id.po, it.po, ko.po,
5644         nl.po, pl.po, pt_BR.po, ru.po, sv.po: updated to reflect changes
5645         in source code.
5647         * po/id.po: New translation for Indonesia.
5649 2001-05-20  Lionel CONS <lionel.cons@cern.ch>
5651         * find/find.c: Fixed security holes.  1.  There is a race
5652         condition between the lstat() to detect a symbolic link and the
5653         actual chdir().  2.  An attacker can move directories while find
5654         is _inside_ so that chdir(..) goes out of the intended file tree.
5656         * lib/modetype.h: support for Solaris door files is added.
5658         * lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN
5660         * find/pred.c (pred_type): -D option (for Solaris door files) is
5661         added.
5663         * find/parser.c (insert_type):  -D option (for Solaris door files)
5664         is added.
5666         * find/find.1: -D option (for Solaris door files) is documented
5668         * doc/find.texi (Type): -D option (for Solaris door files) is
5669         documented
5671 2001-05-02  Kevin Dalley  <kevin@seti.org>
5673         * configure.in: Change AC_CHECK_MEMBERS to conform to new
5674         autoconf.  Add Danish.
5676 2001-04-28  Kevin Dalley  <kevind@rahul.net>
5678         * po/sv.po, ru.po, pt_BR.po, pl.po, nl.po, ko.po, it.po, gl.po,
5679         fr.po, et.po, es.po, de.po, findutils.pot:  new translations, and
5680         new source code to translate.
5682         * po/da.po: new Danish translation.
5684 2001-01-20  Kevin Dalley  <kevin@seti.org>
5686         * doc/find.texi (Adding Tests): Place space in "#! /bin/sh".
5688         * find/testsuite/find.gnu/prune-default-print.xo,
5689         find/testsuite/find.gnu/prune-default-print.exp: test for "find
5690         . -prune" which passes after changes.  Also see name-opt.exp.
5692         * find/util.c (get_new_pred):
5693         * find/tree.c (set_new_parent):
5694         * find/parser.c (various parse functions):
5695         * find/find.c (main):
5696         (default_prints): new function
5697         * find/defs.h (struct predicate): added no_default_print
5698         side_effects are no separated from no_default_print.  predicates
5699         which cause side effects should not be reordered (optimized).
5700         predicates which cause printing should have printing turned off.
5701         Printing statements also cause side effects.
5703 2000-10-29  Bruno Haible <haible@ilog.fr>
5705         * locate/code.c (main), doc/find.texi: improve handling of
5706         non-ASCII characters used old format.
5708 2000-10-21  Paul Eggert  <eggert@twinsun.com>
5710         If open + fchdir fails, fall back on xgetcwd + chdir.
5711         The old code tested for this at compile-time,
5712         but SunOS 4.1.4 fchdir can fail at run-time.
5714         * find/defs.h (fchdir): Define to -1 if not available.
5715         * find/defs.h (starting_dir, starting_desc):
5716         Always declare.  starting_dir now points to const.
5717         * find/find.c (starting_dir, starting_desc): Likewise.
5718         * find/find.c (starting_dir):
5719         Now "." if starting_desc is nonnegative, for benefit of diagnostics.
5720         (main, process_top_path, process_dir):
5721         If open + fchdir fails, fall back on xgetcwd + chdir.
5722         * find/pred.c (launch): Likewise.
5724 2000-10-20  Kevin Dalley  <kevin@seti.org>
5726         * xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
5727         find/parser.c (parse_help): add bug reporting address to help
5729 2000-10-13  Kevin Dalley  <kevin@seti.org>
5731         * depcomp, lib/depcomp: depcomp moved from lib to .
5733         * po/sv.po, ru.po, pt_BR.po, pl.po, nl.po, ko.po, it.po, gl.po,
5734         fr.po, findutils.pot, et.po, es.po, de.po: updated after addition
5735         of lib/rpmatch.c
5737 2000-10-11  Kevin Dalley  <kevind@rahul.net>
5739         * Version 4.1.6
5741         * locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
5742         testsuite.
5744 2000-10-10  Bruno Haible <haible@ilog.fr>
5746         * lib/Makefile.am (libfind_a_SOURCES): added yesno.c
5748         * lib/yesno.c, lib/rpmatch.c: new files.
5750         * find/pred.c: use function yesno().
5752 2000-10-10  Kevin Dalley  <kevind@rahul.net>
5754         * locate/testsuite/Makefile.am: Added missing \ at end of
5755         EXTRA_DIST lines.
5757         * locate/testsuite/locate.gnu/ignore_case3.xo,
5758         locate/testsuite/locate.gnu/ignore_case3.exp,
5759         locate/testsuite/locate.gnu/ignore_case2.exp,
5760         locate/testsuite/locate.gnu/ignore_case1.xo,
5761         locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
5762         inside tmp directory, add subdir directory under tmp.
5764         * locate/testsuite/config/unix.exp: clean up tmp after test is
5765         finished.
5767 2000-10-10  Kevin Dalley  <kevind@rahul.net>
5769         * locate/testsuite/config/unix.exp (Repository):
5771         * po/POTFILES.in: added lib/rpmatch.c
5773 2000-10-09  Kevin Dalley  <kevind@rahul.net>
5775         * lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
5776         fnmatch which works with Solaris.
5778         * locate/testsuite/config/unix.exp: dejagnu unix.exp
5780         * xargs/testsuite/config/unix.exp: remove temporary file
5782         * xargs/xargs.c: spelling correction
5784         * m4/prereq.m4: updated and changed some macros
5786         * m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
5787         kd_FUNC_FNMATCH_CASE_REPL
5789         * m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
5790         m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
5791         m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.
5793         * m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4
5795         * locate/testsuite/locate.gnu/ignore_case3.xo,
5796         locate/testsuite/locate.gnu/ignore_case3.exp,
5797         locate/testsuite/locate.gnu/ignore_case2.xo,
5798         locate/testsuite/locate.gnu/ignore_case2.exp,
5799         locate/testsuite/locate.gnu/ignore_case1.xo,
5800         locate/testsuite/locate.gnu/ignore_case1.exp,
5801         locate/testsuite/config/unix.exp: tests related to "--ignore-case"
5802         option.
5804         * locate/testsuite/locate.gnu: testsuite directory
5806         * locate/testsuite/Makefile.am (Repository):
5808         * locate/testsuite: add directory for locate testsuite
5810         * po/findutils.pot: updated file
5812         * po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
5813         po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
5814         updated various po files.
5816         * locate/updatedb.sh: export TMPDIR, which is used by child
5817         processes.
5819         * locate/locate.1, locate/locate.c:  add "--ignore-case" option.
5821         * locate/Makefile.am: add testsuite subdirectory
5823         * find/testsuite/find.gnu/perm.xo,
5824         find/testsuite/find.gnu/perm.exp,
5825         find/testsuite/find.gnu/name-opt.xo,
5826         find/testsuite/find.gnu/name-opt.exp: added test suites
5828         * configure.in: add locate/testsuite/Makefile
5830         * doc/find.info*: removed from repository
5832         * doc/find.texi: add documentation for "-i" option.
5834         * aclocal.m4: removed from repository, as it is generated.
5836         * find/pred.c: fixes problem with "find -perm -0100".
5838         * lib/lstat.c, lib/stat.c: removed from repository.  These files
5839         are generated from lib/xstat.in.
5841 2000-08-24  Kevin Dalley  <kevind@rahul.net>
5843         * doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.
5845 2000-05-13  Kevin Dalley  <kevind@rahul.net>
5847         * find/tree.c (opt_expr): move iname and ipath to the front of the
5848         list of arguments.
5850         * doc/find.texi (Directories): changed wording for "-prune".
5852         * find/parser.c (parse_prune): set side_effects to true, to
5853         prevent prune from being moved in opt_expr.
5855 2000-04-12  Kevin Dalley  <kevind@rahul.net>
5857         * doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.
5859         * lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
5860         since getstr is needed.
5862         * Version 4.1.5
5864         * po/POTFILES.in: updated list of files, updated po files.
5867 2000-04-02  Paul Eggert  <eggert@twinsun.com>
5869         Add support for large files, and port to Solaris 8 and earlier
5870         versions.
5872         * lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
5873         HAVE_DECL_GETENV.
5875         * lib/strftime.c (my_strftime): Make sure we call the system
5876         strftime, not ourselves, when invoking the underlying strftime.
5878         * m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.
5880         * m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
5881         require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
5882         jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
5883         jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
5884         jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
5885         replace strcasecmp, dup2, gethostname, getusershell, stime,
5886         strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
5887         strverscmp, memchr, memmove.  Do not check for declaration of
5888         lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
5889         POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
5890         (jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
5891         struct stat.st_blksize.
5893         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
5894         in shell rather than using putenv, which isn't portable.
5896         * COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
5897         lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
5898         m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
5899         m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
5900         m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
5901         to latest version from sh-utils-2.0g.
5903         * config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
5904         lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
5905         lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
5906         lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
5907         m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
5908         m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
5909         m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.
5911         * lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
5912         lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
5913         unreleased version of GNU tar (between 1.13.17 and 1.13.18).
5915         * lib/basename.h, lib/waitpid.c: New files, taken from same
5916         version of GNU tar.
5918         * lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.
5920         * lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
5921         GNU grep 2.4.2.
5923         * lib/strftime.c: Sync to textutils 2.0e.
5925         * acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
5926         m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
5927         m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
5928         m4/utimes.m4: Remove these files; no longer needed.
5930         * configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
5931         jm_AC_TYPE_UINTMAX_T): Add.
5932         (CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
5933         FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
5934         we don't need acconfig.h.
5935         (AC_CHECK_TYPE): Add ssize_t.
5936         (AC_REPLACE_FUNCS): Add waitpid.
5937         (AC_CHECK_FUNCS): Remove basename.
5938         (AC_FUNC_MKTIME): Remove.
5939         (LIBOBJS): Add no-ops to work around automake 1.4 bug.
5940         (AC_OUTPUT): Add lib/posix/Makefile.
5942         * find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
5943         <stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
5944         include these files, and to include "defs.h" first (since config.h
5945         must be included first).
5946         (CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
5947         S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
5948         MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
5949         (enum permissions_type): New enum.
5950         (struct long_val.negative): New member.
5951         (struct long_val.l_val): Now uintmax_t, not unsigned long.
5952         (struct size_val.size): Likewise.
5953         (struct perm_val): New type.
5954         (struct predicate.perm): Now struct perm_val, not unsigned long.
5955         (struct predicate.type): Now mode_t, not unsigned long.
5956         (list_file): New parameters current_time, output_block_size.
5957         All callers changed.
5958         (savedir, basename): Remove decls.
5959         (output_block_size, start_time): New extern vars.
5961         * find/find.c: Include <human.h>, <savedir.h>.
5962         (output_block_size, start_time): New vars.
5963         (main): Initialize them.  No need to check for negative st_size,
5964         since savedir now does it for us.
5966         * find/fstype.c: Include "dirname.h".
5967         (xatoi): Remove.
5968         (filesystem_type_uncached): Use xstrtoumax instead of xatoi.
5970         * find/parser.c: Include "xstrtol.h".
5971         (get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
5972         parse_size, parse_used, insert_time, insert_num): Compute using
5973         uintmax_t, not unsigned long.
5974         (parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
5975         Keep track of whether time was negative before converting it to an
5976         unsigned type.
5977         (parse_daystart): Don't assume that localtime succeeds; e.g. it
5978         can fail with 64-bit time_t and 32-bit tm_year.
5979         (parse_perm, insert_type): Compute using mode_t, not unsigned
5980         long.
5981         (insert_type): Use symbolic constants like MODE_ALL instead of
5982         traditional ones like 07777.  Set new kind member to indicate
5983         permissions type, instead of using unportable magic numbers.
5984         (make_segment): We will use human_readable to convert most numeric
5985         values, so simplify the cases.
5986         (get_num_days): Write in terms of get_num, to avoid duplicated
5987         code.
5988         (insert_time, insert_num): When debugging, convert large values to
5989         uintmax_t and output with %ju.
5990         (get_num): Use xstrtoumax to do the real work.
5992         * find/pred.c: Include "basename.h", "human.h".
5993         (DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
5994         fileutils.
5995         (ST_NBLOCKS): Replace with fileutils defn.
5996         (MAX): New macro.
5997         (ctime_format): New function.
5998         (pred_fprintf, format_date): Use human_readable to output large
5999         numbers portably.
6000         (pred_fprintf): Use ctime_format to output ctime-style dates.  Use
6001         base_name to compute the base name of a path.  With %m, output the
6002         mode portably using traditional numbers, even if the host uses
6003         some other numbering scheme.
6004         (pred_iname, pred_name): basename -> base_name.
6005         (pred_perm): Use new kind member to deduce permissions type,
6006         instead of relying on magic numbers.
6007         (pred_size): Compute using uintmax_t, not unsigned long.  Avoid
6008         overflow if file size is near the maximum.
6009         (pred_type): Compute using mode_t, not unsigned long.
6010         (launch): Use waitpid, not wait.  Check for EINTR.
6011         (format_date): Don't assume that localtime succeeds.
6013         * find/util.c (basename): Remove; we now use base_name.
6015         * lib/Makefile.am (SUBDIRS): New macro.
6016         (libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
6017         basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
6018         Remove error.h, error.c, getline.c.
6019         (EXTRA_DIST): Add mktime.c, regex.c.
6021         * lib/listfile.c: Include "human.h".
6022         (alloca): Declare, or include appropriate files to declare.
6023         (DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
6024         (convert_blocks): Remove.
6025         (list_file): New current_time and output_block_size args.
6026         Revamp quite a bit, to handle large numbers correctly
6027         and to match GNU ls behavior more closely.
6029         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
6030         largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
6031         strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
6032         decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
6033         uptime.m4, utimbuf.m4, utime.m4, utimes.m4.
6035         * xargs/xargs.c (wait_for_proc): Retry wait if it fails with
6036         errno == EINTR.
6038 2000-04-05  Kevin Dalley  <kevind@rahul.net>
6040         * xargs/Makefile.am:  add ansi2knr
6042         * xargs/xargs.c: add macros PARAMS rather than P_.  Add
6043         prototypes.
6045         * po/POTFILES: new file listing all POFILES.
6047         * m4/gl.po, m4/et.po: new files
6049         * m4/Makefile.am.in:  updated file
6051         * m4: update directory
6053         * locate/Makefile.am: create updatedb from updatedb.sh
6055         * locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
6056         by updatedb.sh
6058         * locate/frcode.c, locate/code.c, locate/bigram.c: add macros
6059         PARAMS rather than P_.  Add prototypes.
6061         * lib/xstat.in: new file
6063         * lib/Makefile.am: update to latest versions of library files.
6065         * find/testsuite/Makefile.am: add CLEANFILES
6067         * find/util.c: remove definition of basename
6069         * find/util.c, find/tree.c, find/pred.c, find/parser.c,
6070         find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
6071         than P_, for consistency, change to prototypes
6073         * find/Makefile.am: Add prototypes and ansi2knr
6075         * configure.in: add Galition and Estonian languages.
6076         Miscellaneous other fixes.
6079 2000-03-11  Kevin Dalley  <kevind@rahul.net>
6081         * lib/basename.c: Add file from libit.
6082         * lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
6083         no longer replaceable.
6085         * find/util.c: Remove definition of basename, which is now in
6086         lib/basename.c (as base_name).
6087         * find/pred.c: Use base_name, not basename.
6088         * find/defs.h: Likewise.
6090         * configure.in : Don't replace basename.  Now we use only
6091         base_name.
6093 2000-02-26  Kevin Dalley  <kevind@rahul.net>
6095         * Version 4.1.4
6097         * lib/strtoul.c: added to distribution
6099         * configure.in: added strtoul to AC_REPLACE_FUNCS
6101         * configure.in: added jm_CHECK_ALL_TYPE
6103 2000-02-23  Kevin Dalley  <kevind@rahul.net>
6105         * po/ChangeLog: removed, merged with top-level ChangeLog.
6107         * po/de.po: new version of German file.
6109         * po/gl.po, po/et.po: new languages, Estonian and Galician.
6111         * locate/updatedb.sh (PRUNEFS): enclose paths in quotes
6113 2000-02-17  Kevin Dalley  <kevind@rahul.net>
6115         * po/it.po: new version of Italian file.
6117         * locate/updatedb.sh (prunefs_exp): have sed statement use '*'
6118         rather than the often unsupported '+'.
6120 2000-02-13  Kevin Dalley  <kevind@rahul.net>
6122         * configure.in: removed AC_ARG_PROGRAM, which is already in
6123         AM_INIT_AUTOMAKE.
6125         * locate/Makefile.am (updatedb), locate/updatedb.sh: add
6126         transforms of find, frcode, bigram, and code back into
6127         updatedb.sh, which were accidentally removed.
6129 2000-02-12  Kevin Dalley  <kevind@rahul.net>
6131         * lib/wait.h: updated address.
6133 2000-01-26  Kevin Dalley  <kevind@rahul.net>
6135         * Version 4.1.3
6137         * acconfig.h: added internationalization.
6139         * intl/*: copied from tar-1.13.17.
6141         * locate/Makefile.am, locate/locate.c, locate/code.c:
6142         internationalized file.
6144         * locate/frcode.c, locate/bigram.c: include headers from ../lib
6145         directory.
6147         * xargs/Makefile.am, xargs/xargs.c: internationalized directory.
6149 2000-01-26  Kevin Dalley  <kevind@rahul.net>
6151         * po/POTFILES.in: added list of files with translatable strings.
6153         * de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
6154         ru.po, sv.po: New, slightly out of date, files imported from the
6155         Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
6156         German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
6157         Portuguese.
6160 2000-01-24  Kevin Dalley  <kevind@rahul.net>
6162         * lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
6163         works with current version of gettext.
6165         * lib/getline.h : added declaration of getstr.
6166         * lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
6167         standard compilation. Added internationalization.
6168         * find/Makefile.am (INCLUDES): corrected -I options for building
6169         in other directories.
6170         (LDADD): changes for internationalization.
6172         * configure.in (ALL_LINGUAS): added internationalization.
6173         getline.c is always compiled and linked, because of getstr.
6174         AM_GNU_GETTEXT
6176         * Makefile.am:
6177         (DISTCLEANFILES): added intl/libintl.h
6178         (AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
6179         (SUBDIRS): added intl and po
6181         * acconfig.h: added internationalization values
6183         * THANKS: added thanks file for gnits compatibility.
6185 2000-01-22  Kevin Dalley  <kevind@rahul.net>
6187         * added intl directory.
6188         * created po directory and added existing po files from
6189         http://www.iro.umontreal.ca/contrib/po/HTML
6191         * Added internationalization, only with slightly out of date po
6192         files for many locales.
6194 2000-01-18  Kevin Dalley  <kevind@rahul.net>
6196         * Version 4.1.2
6198         * locate/Makefile.am: remove creation of updatedb, since it is now
6199         made by configure
6201         * configure.in: updatedb is now created by configure.
6203         * xargs/Makefile.am: added testsuite to xargs directory
6205         * locate/updatedb.in: updatedb is now created by configure
6207         * locate/frcode.c, locate/code.c, locate/bigram.c: change return
6208         from main to int.  Replace getstr with getline, where possible.
6210         * locate/Makefile.am: place frcode, code, bigram in
6211         libexec_PROGRAMS
6213         * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
6214         lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
6215         lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
6216         lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
6217         lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
6218         lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
6219         lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
6220         lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
6221         lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
6222         lib/dirname.c, lib/alloca.c: updated to newer version of file from
6223         fileutils.
6225         * find/version.c: version number is now automatically generated by
6226         configure.
6228         * find/fstype.c (filesystem_type_uncached): fixes bug described as
6229         follows:  When 'find' looks for a fstype, it parses the /etc/mtab
6230         until it finds the good line. But, if there is, before the good
6231         line, a line whose mountpoint is unreachable, it fails.
6233         * doc/texinfo.tex: updated to newer version
6235         * doc/find.texi: added version.texi, fixed a few documentation bugs.
6237         * configure.in: new m4 features.
6239         * Makefile.am: moved testsuite to below corresponding directories
6240         find and xargs.
6242         * acconfig.h: updated to match new m4 files.
6244         * m4: added m4 directory, largely borrowed from Jim Meyering's
6245         fileutils.
6247 2000-01-17  Kevin Dalley  <kevind@rahul.net>
6249         * doc/find.texi (Multiple Files): placed missing xargs in examples
6251         * find/testsuite/find.gnu/depth.exp: added find tests to test
6252         "-depth" bug.
6254         * doc/find.texi: include version.texi for automatic determination
6255         of version number, update bug report email address to
6256         bug-findutils@gnu.org.
6257         (Combining Primaries With Operators): add indices for " ,", "()",
6258         "-a", "-o", etc.
6260 2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6262         * find/tree.c (opt_expr): Never rearrange the arguments of the
6263         comma operator, since it is not commutative.  Remove useless
6264         assignment.2
6266 2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
6268         * find/find.c (process_path): fix problem with "-depth" which is
6269         tested in depth.exp test.
6271 1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>
6273         * find/fstype.c (filesystem_type_uncached): a stat failure with
6274         EACCESS will ignore this file system keep on looking.  Patch
6275         suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.
6277 1999-08-15  Mark Kettenis  <kettenis@gnu.org>
6279         * xargs/xargs.c (LONG_MAX): Define if necessary.
6280         (main): If ARG_MAX is -1 (that is sysconf
6281         (_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
6282         that case, use LONG_MAX as the limit.
6284 1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>
6286         * find/version.c: version string is now set by config.h
6288 1999-08-08  Kevin Dalley  <kevin@seti.org>
6290         * Version 4.1.1
6292         * README-alpha: added alpha README file
6294         * find/defs.h: move lstat declarations into defs.h
6296         * xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
6297         lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
6298         Makefile.am: update for automake-1.4
6300 1999-08-02  Kevin Dalley  <kevind@rahul.net>
6302         * AUTHORS: added file listing AUTHORS
6304         * lib/Makefile.am: modified code for EXTRA sources
6306 1999-01-30  Kevin Dalley  <kevind@rahul.net>
6308         * added const to declaration of basename, which should satisfy
6309         Linux as well as Hurd (fixes bug #31325).
6311 1998-12-04  Kevin Dalley  <kevind@rahul.net>
6313         * lib/nextelem.c: removed declaration of strdup and free, which
6314         meets GNU coding standards and allows compilation on more
6315         platforms.
6317         * find.texi: corrected explanation of -amin option which described
6318         hours instead of minutes
6320 1998-09-26  Kevin Dalley  <kevind@rahul.net>
6322         * lib/getline.c: fix getstr so that it correctly handles long file
6323         paths
6325 1998-09-20  Kevin Dalley  <kevind@rahul.net>
6327         * removed more function declarations to meet GNU coding standards
6329 1998-08-30  Kevin Dalley  <kevind@rahul.net>
6331         * lib/nextelem.c: removed declaration of strdup and free, which
6332         meets GNU coding standards and allow compilation on sparc
6334         * corrected explanation of -amin option which described hours
6335         instead of minutes
6337 1998-02-27  Kevin Dalley  <kevind@rahul.net>
6339         * locate/locate.c: add --existing option to locate, which only
6340         prints the names of files which still exist
6342 1998-02-08  Kevin Dalley  <kevind@rahul.net>
6344         * locate/locate.c: corrected get_short so that it correctly
6345         returns negative numbers.
6347         * remove declarations of various string functions.  Removing the
6348         declarations almost matches the GNU Coding Standards.
6350 1997-03-03  Kevin Dalley  <kevind@rahul.net>
6352         * xargs/xargs.c: xargs fixed to prevent occasional core dumping.
6354 1997-01-11  Kevin Dalley  <kevind@rahul.net>
6356         * locate/updatedb.sh: add --localuser option to updatedb, which
6357         allows find to be run as nobody, while allowing database file to
6358         be created as root, change suggested by
6359         <Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
6361 1996-12-28  Kevin Dalley  <kevind@rahul.net>
6362         * added PRUNEFS as variable in updatedb and --prunefs as option to
6363         updatedb
6365 1996-05-27  Kevin Dalley  <kevind@rahul.net>
6367         * updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
6368         is root
6369 1996-04-27  Kevin Dalley  <kevind@rahul.net>
6371         * lib/getline.c (getstr): verify that nchars_avail is *really*
6372         greater than 0; set *n to a large enough number, stops some core
6373         dumping
6375 Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6377         * Version 4.1.
6379         * locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.
6381         * Makefile.am (distname): Change distribution name from find to
6382           findutils.
6384         * testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.
6386         * locate/Makefile.am (CLEANFILES): Fix typo.
6388 Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6390         * The big 4 0.
6392         * lib/listfile.c find/defs.h (list_file): Take a stream arg.
6393         * find/pred.c (pred_ls): pass it.
6394         * find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.
6396 Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6398         * find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
6399         Flack.
6401         * find/parser.c (insert_fprintf): Warn about unrecognized \ and %
6402         sequences.
6404 Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6406         * find/defs.h parser.c pred.c tree.c util.c: Globally change
6407         "victim" to "primary".
6409         * find/parser.c (insert_fprintf): For 'c' format, don't lose the
6410         need_stat information.  From Chapman Flack.
6412         * doc/find.texi perm.texi: New files.
6413         * configure.in: Configure the doc directory.
6415         * find/pred.c (pred_regex): Check that the regex matched the whole
6416         file name.
6418 Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
6420         * find/find.c (main): Tell what the invalid arg is.
6421         From Kaveh Ghazi.
6423 Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6425         * find/parser.c: Add -mount as an alias for -xdev.
6426         From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).
6428         * lib/modechange.c: Make umask_value unsigned short.
6430         * xargs/xargs.c: Use symbolic constants in longopts.
6431         From Chapman Flack.
6433 Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6435         * xargs/xargs.c (main, read_line, read_string, do_exec): Pass
6436           along the lengths of the args.
6437           (main): Calculate length of replace_pat.
6438           (push_arg, do_insert): Use those lengths instead of calculating
6439           them.
6441 Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
6443         * locate/updatedb.sh Makefile.in: Add substitutions to get
6444           the transformed program names.
6446         * xargs/xargs.c: Put back the global variables for now.
6447         Rename some variables.  Increase default args_per_exec.
6448         Use boolean where applicable.
6449         (main): Reduce default arg_max by 2048 for POSIX.2.
6450         (read_string): Don't check EOF string.
6451         (read_line, read_string): Take initial args size into account.
6453 Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6455         * find/pred.c (launch): Use pid_t.
6457         * xargs/xargs.c (EOF_STR): Define and use.
6458         [__STDC__]: Declare xrealloc and xmalloc using void *.
6459         * find/defs.h: Likewise.
6461         * find/defs.h: Only declare stpcpy if !HAVE_STPCPY.
6463         * xargs/xargs.c: Replace most global variables with structure
6464           pointers passed as arguments.  Use pid_t.
6465         * lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
6466         * configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.
6468         * xargs/xargs.c: Improve paging performance and memory
6469           fragmentation by building command arguments in a pre-allocated
6470           buffer and re-implementing the child pid list as an expandable
6471           array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6473 Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
6475         * xargs/xargs.c [__STDC__]: Prototype declarations.
6477 Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
6479         * find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.
6481 Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
6483         * find/fstype.c (fstype_to_string): Add more cases.  Use
6484           INITMOUNTNAMES if defined.
6485         * find/defs.h: Change boolean typedef from char to int.
6486         * configure.in: Check for mktime.
6488 Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)
6490         * configure.in: Add AC_HEADER_STAT.
6491         * lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.
6493         * find/pred.c: Move the inclusion of defs.h ahead of the first
6494           test of _POSIX_VERSION.
6496         * lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.
6498 Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6500         * configure.in: Add AC_CONFIG_HEADER.
6501         * find/*.c locate/*.c xargs/*.c: Include config.h.
6502         * locate/updatedb.sh: Add --version; --old -> --old-format.
6504 Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6506         * find/* [__STDC__]: Prototype declarations.
6508         * locate/updatedb.sh: Account for renaming code and frcode.
6510         * find/find.c (process_path): Store dev and ino of directories in
6511           current branch to avoid symlink loops.  From DJ Delorie
6512           <dj@ctron.com>.
6513           (process_dir): If following symlinks, don't cd to ..; instead,
6514           cd to the starting directory and then to the parent directory.
6515           (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
6516           (process_top_path) [HAVE_FCHDIR]: Use it.
6517         * find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
6518         * defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
6519         * configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.
6521 Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6523         * lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
6524         From Andreas Luik <luik@isa.de>.
6526 Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6528         * locate/locate.c (last_literal_end): Dynamically allocate enough
6529           memory for the subpattern.
6531 Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6533         * locate/locate.c (locate): Warn if database is >8 days old.
6534         From Ian Lance Taylor.
6536         * xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
6537           default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6538         * find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
6539           calls before error.  error does it, and doesn't trash errno.
6540           From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6542         * find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
6543           number on HPUX.  From Andreas Luik <luik@isa.de>.
6544           (filesystem_type_uncached): Don't cache unknown file system
6545           types.  From casper@fwi.uva.nl (Casper Dik).
6547         * locate/updatedb.sh: Collect results in temp file and rename it
6548           atomically.  From Andreas Luik <luik@isa.de>.
6550         * xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
6551           Meyering.
6553         * find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
6554           Emulate strchr and strrchr with index and rindex, not vice versa.
6556         Remove man directory; move man pages to the directories of the
6557         programs they document.
6559         * locate/frcode.c: Renamed from code.c.
6560         * locate/frcode.c (put_short): Renamed from puthalfword.
6561         * locate/locate.c (get_short): Renamed from gethalfword.
6562         (last_literal_end): Renamed from patprep.
6563         (locate): Recognize old-format databases too.
6564         * locate/locatedb.h: Add defines for old-format databases.
6565         * locate/bigram.c locate/code.c: Put back programs to create
6566         old-format databases.
6567         * locate/updatedb.sh: Take --old option to use them.
6569 Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6571         * configure.in: Update for Autoconf v2.
6572         * find/pred.c lib/savedir.c: Use new symbols for dir header.
6573         * locate/updatedb.sh: Add --help option.
6575 Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)
6577         * man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.
6579 Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6581         * bigram.c: File removed.
6582         * getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
6583         * updatedb.sh: Take command line options.
6584         Don't do bigram compression.
6585         * code.c, locate.c: Don't do bigram compression.
6586         Write and read counts in network byte order.
6587         Handle arbitrarily long paths.
6588         Use a magic number at the start of the databases.
6590 Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6592         * Makefile.in (config.status): Run config.status --recheck, not
6593         configure, to get the right args passed.
6595 Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6597         * listfile.c (list_file): Print inode as a long.
6599 Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6601         * fstype.c [STDC_HEADERS]: Include stdlib.h.
6603         * Move unistd.h include from parser.c and pred.c to defs.h.
6605 Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6607         * updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
6608         Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.
6610 Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6612         * pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.
6614 Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6616         * fstype.c (in_afs) [AFS]: New function, derived from code by
6617         Sanjay Ramamurthy <ramams@rpi.edu>.
6618         (filesystem_type_uncached) [AFS]: Call it if the fs type is
6619         otherwise unknown.
6621         * parser.c (parse_size): Recognize b and w suffixes for dd
6622         compatibility.
6624         * code.c (puthalfword): New function.
6625         (main): Call it.
6626         * locate.c (gethalfword): New function.
6627         (locate): Call it.
6628         From ifado!wb@germany.eu.net (Wilhelm B. Kloke).
6630         * listfile.c: Include pathmax.h.
6631         (get_link_name): Always allocate PATH_MAX + 1 bytes for
6632         readlink buffers.
6633         * pred.c (pred_fprintf, insert_lname): Call get_link_name.
6635         * fstype.c (filesystem_type, filesystem_type_uncached),
6636         listfile.c (list_file): Take an arg for the path to access.
6637         * pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.
6639         * find.c (process_dir): Renamed from scan_directory.
6641         Changes from jrs@world.std.com (Rick Sladkey) to chdir into
6642         subdirectories instead of using string concatenation, for speed:
6643         * find.c (process_top_path): New function.
6644         (main): Call it, and xgetcwd.
6645         (process_path, scan_directory): Take new arg, the pathname
6646         relative to ".".  Use it and pass it on.
6647         * pred.c (pred_and, pred_comma, pred_negate, pred_or,
6648         pred_xtype, pred_fprintf, pred_empty, insert_lname):
6649         access rel_pathname instead of pathname.
6650         (launch): chdir to starting_dir.
6651         * defs.h: Declare rel_pathname and starting_dir.
6652         * find.c: Define them.
6654         * xgetcwd.c: New file.
6656         * updatedb.sh: Recognize -fstype NFS as well as nfs.
6657         * locate.c (patprep): Skip trailing character classes correctly.
6658         From luik@pharao.stgt.sub.org (Andreas Luik).
6660         * parser.c (parse_group): Make gid a gid_t, not short or int.
6661         (parse_nogroup): Cast gid to unsigned when using it as an array index.
6662         (parse_user, parse_nouser): Similar changes for uid.
6663         * defs.h: Use uid_t and gid_t.
6665         * parser.c (parse_help): New function.
6666         (parse_table):  Add --version, -help, and --help options.
6667         Rename struct parser_table_t to struct parser_table.
6668         (parse_version): Exit after printing message, on
6669         stdout not stderr.
6671         * xargs.c, locate.c (main, usage): Add --version and --help
6672         options.
6674 Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)
6676         * parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
6677         * xargs.c: Ditto.
6679 Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6681         * pred.c (pred_fprintf): If curdepth is 0, don't nuke
6682         segment->text; nuke cp.
6684 Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6686         * Version 3.8.
6688 Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)
6690         * pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
6691         (pred_table): Add them.
6692         (insert_lname): New function.
6693         (pred_lname): Call it.
6694         * parser.c (parse_ilname, parse_iname, parse_ipath,
6695         parse_iregex): New functions.
6696         (parse_table): Add them.
6697         (insert_regex): New function.
6698         (parse_regex): Call it.
6700         * fstype.c (filesystem_type): Cache previous result.
6701         (filesystem_type_uncached): New function.
6702         pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.
6704         * parser.c: Don't define const.
6706         * fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
6707         MOUNT_PC for 386bsd.
6709 Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6711         * parser.c (parse_regex): If ignore_case, set up a translate
6712         table for the regex.
6714         * defs.h: Include string.h or strings.h.
6715         * find.c fstype.c parser.c pred.c util.c: Don't.
6717         * nextelem.c [index]: Don't redefine.
6719 Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6721         * xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
6722         status, not the wait status value.  From
6723         Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.
6725         * parser.c (make_segment, insert_fprintf), pred.c
6726         (pred_fprintf): Add '%F' to print filesystem type.
6728         * parser.c (parse_fprintf): Check if second arg is missing.
6730 Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6732         * pred.c (pred_fprintf): For %P, don't move past an assumed
6733         slash if the ARGV element ends with one, because in that case
6734         we didn't add one.
6736         * parser.c (parse_printf): Check for missing arg.
6737         From smj@cats.com (Steve James).
6739         * parser.c: Add #ifdef around atol decl for Linux.
6741 Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)
6743         * defs.h: Remove dcl of process_path.
6744         * find.c: Put dcl of p
6746         * pred.c (pred_fprintf): Don't print "\n" unless it's in the
6747         format string.
6749 Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6751         * defs.h, parser.c, pred.c: Rename some types that conflict
6752         with reserved POSIX.1 namespace (ended in _t).
6756 Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6758         * xargs.c: Don't determine memory.h based on POSIX, which
6759         doesn't mention it.
6761 Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
6763         * parser.c (parse_perm): Parse new `-perm +mode' notation.
6764         * pred.c (pred_perm): Interpret same.
6766 Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
6768         * xargs.c [POSIX]: Always use sysconf to get ARG_MAX.
6770 Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)
6772         * bigram.c, code.c (main): Make path_max int, not unsigned.
6773         * locate.c (main): Check for pathconf failure.
6775 Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
6777         * parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
6778         interpretation.
6779         * pred.c (pred_fprintf): fixed off-by-one indexing problem
6780         when handling [gGuU] printf formats.
6782 Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6784         * Version 3.2.
6786 Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
6788         * bigram.c, code.c: Fix handling of PATH_MAX.
6789         Check for anomalous input line lengths.
6790         From Bruce Evans.
6792 Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)
6794         * pred.c (pred_fprintf): Round block number up to get K.
6796 Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)
6798         * pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
6799         byte for link object since st_size is wrong.
6801         * listfile.c (list_file): Don't convert blocks to kilobytes if
6802         env. var POSIX_ME_HARDER is defined.
6804         * fstype.c [FS_AIX_STATFS]: New case.
6806         * configure: Make sure the sys/mount.h is the 4.4BSD version
6807         with grep instead of just testing whether it exists.
6809         * listfile.c (list_file): Add 1 to number of 512-byte blocks
6810         before dividing to get 1K blocks (so we round up, not down).
6812 Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6814         * Version 3.1.
6816         * parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
6817         conversion to print 1K blocks.
6819         * listfile.c: Print counts of 1K blocks, for consistency with
6820         new fileutils release.  Bad timing, there.
6822         * Version 3.0.
6824         * pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
6825         which returns void on some systems, like Sequents.
6826         * configure: Check sys/dir.h for 'void closedir'.
6828 Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)
6830         * modetype.h: Define POSIX.1 stat stuff if missing.
6831         * pred.c, parser.c, find.c, fstype.c: Don't define it.
6832         * updatedb.sh: Use a variable substitution method like configure's.
6833         * Makefile.in: Add datadir variable to separate programs from
6834         data file.
6836         * parser.c, pred.c: Rename -fulldays to -daystart.
6838         * defs.h, find.c, parser.c, pred.c: Add many new predicates
6839         from Jay Plett (jay@princeton.edu).
6841 Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)
6843         * parser.c (parse_size), pred.c (pred_size), defs.h (struct
6844         size_t): Allow `k' to follow number to measure size in Kbytes.
6845         * parser.c (parse_size, get_num, insert_num), defs.h (struct
6846         size_t): Use enum comparison_type instead of short.
6848 Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6850         * xargs.c (read_line): Use isblank, to support POSIX locales.
6852         * fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
6853         (Paul Slootman).
6854         * configure: Figure out when to use it.
6856         * configure: Check for st_blocks in struct stat.
6857         * listfile.c (ST_NBLOCKS): New macro.
6858         (list_file): Print file's block count.
6859         Use S_ISLNK instead of S_IFLNK.
6860         * fileblocks.c: New file, from fileutils.
6862 Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6864         * parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
6865         gid lookups into table lookups.
6867 Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)
6869         * configure, Makefile.in's: Support +srcdir option via VPATH.
6870         Clean up clean targets.
6872 Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)
6874         * configure: Filter /etc and /usr/etc from path.
6876         * xargs.c (wait_for_proc): Fix handling of child exit status.
6877         (main): Exit with a nonzero status if any child did.
6879         * pred.c (launch): Flush stdout and stderr before forking.
6881         * fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
6882         type "ignore".
6884 Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)
6886         * pred.c, locate.c: Use fnmatch instead of glob_match.
6887         * fnmatch.c, fnmatch.h: New files.
6889         * Many files: Use string.h if STDC_HEADERS, as well as if USG.
6891         * locate.c, code.c, bigram.c: Possibly use pathconf to get
6892         PATH_MAX.  Use malloc to allocate path arrays.
6894         * xargs.c: Possibly use sysconf to get ARG_MAX.
6895         (env_size): Make definition unconditional.
6896         (main): Do arg_max adjustment that can't be done with
6897         preprocessor now that ARG_MAX might be a function call.
6898         (do_exec): Exit with status 126 or 127 after failed exec, for
6899         POSIX.2 draft 11.1.
6901         * xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
6902         * wait.h: Use POSIX, not WAIT_MACROS_MISSING.
6904         * COPYING: Use version 2.  Update all files.
6906         * Replace Makefile and lib/Makefile with Makefile.in,
6907         lib/Makefile.in and configure.  Update README.
6909 Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)
6911         * Version 2.2.
6913 Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
6915         * xargs.c (main): Always run the command if some args are left over.
6916         Rename some variables.
6918 Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
6920         * bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
6921         _POSIX_SOURCE, to decide whether to include limits.h.
6923         * parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
6924         to decide whether to declare getpwuid and getgrgid.
6926         * xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
6927         to include memory.h.
6929 Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
6931         * defs.h, find.c, parser.c, pred.c: Remove -permmask option.
6933 Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
6935         * wait.h: Include sys/types.h to get pid_t.
6937         * xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
6938         _POSIX_SOURCE.
6940 Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
6942         * Version 2.1.
6944 Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)
6946         * locate.c, bigram.c, code.c: Attempt to get max. path length
6947         on more kinds of systems, incl. POSIX.
6949         * pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
6950         if available.
6952         * find.c, defs.h: Make `cur_day_start' a time_t, not long.
6954 Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)
6956         * defs.h, parser.c: Remove unused field from `struct exec_t'.
6958         * xargs.c: Add +no-run-if-empty option to cause the command to
6959         not be run if the input is empty.
6961         * defs.h (struct exec_t): Change the array of offsets into an
6962         array of `struct path_arg'.
6963         * parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
6964         to be substituted (multiple times) anywhere in an arg to -exec
6965         or -ok.
6966         * pred.c (pred_exec): Add code to substitute "{}" within args.
6967         (pred_ok): After prompting, just run pred_exec.
6969 Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)
6971         * fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
6972         "0x" at front of "dev=" mount option, which amd puts there but
6973         Sun automounter doesn't.
6975 Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)
6977         * find.c (main), util.c (usage): Make directory args optional,
6978         defaulting to ".".
6980 Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)
6982         * listfile.c: Define major and minor if not defined (as in POSIX).
6984 Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)
6986         * find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
6987         writing to stderr, in case they have been redirected to the
6988         same file descriptor.
6990         * pred.c (launch): Use POSIX wait macros from wait.h.
6992         * xargs.c (print_xargs): Read from tty_stream, not stdin.
6994 Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)
6996         * Version 2.0.
6998         * fstype.c [FS_USG_STATFS]: New code.
6999         [FS_STATFS]: For symlinks, statfs the directory the link is in
7000         instead of the link.
7001         * Various files: Conditionalize some declarations on
7002         STDC_HEADERS or _POSIX_SOURCE.
7004 Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)
7006         * modetype.h: New file.
7007         parser.c, pred.c: Use it.
7009 Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)
7011         * xmalloc.c: New file from fileutils.
7013         * fstype.c (fstype_to_string): Add case for MFS.
7014         (filesystem_type): Take a pathname as a second arg.
7015         [FS_STATFS] return "unknown" instead of exiting if statfs
7016         fails because of ENOENT.
7017         * pred.c (pred_fstype): Pass the pathname.  Set current_dev.
7018         * find.c (process_path): Make root_dev local again.
7020 Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)
7022         * pred.c (pred_fstype): Free old fs type.
7024         * fstype.c, pred.c (pred_fstype), parser.c (parse_fstype):
7025         Reread the file system type info. every time a filesystem
7026         mount point is crossed, to allow for automounting.
7028         * xstrdup.c: New file from fileutils.
7030         * find.c (process_path): Rename root_dev to current_dev and
7031         make it global, for -fstype.
7033         * wait.h: New file taken from xargs.c.
7035         * xargs.c: Make limits.h vs. sys/param.h conditional on
7036         LIMITS_MISSING instead of USG, to accomodate SVR2.
7038 Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)
7040         * parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
7041         getpwuid and getgrgid.  Use them.
7043         * listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
7044         S_ISBLK.  Use them.
7046         * find.c: Use S_ISDIR instead of S_IFDIR, and define if not
7047         _POSIX_SOURCE.
7049         * Makefile: Define AR and RANLIB and pass to child makes.
7050         lib/Makefile: Use them.
7052         * xargs.c (WIFSIGNALED): Redefine so it works.
7054 Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)
7056         * find.c (process_path): For -xdev, process filesystem
7057         mountpoints (but don't descend them), instead of skipping them
7058         entirely.
7060         * find.c, parser.c, defs.h: Add -follow predicate.
7062         * xargs.c: Change ifdefs to support STDC POSIX systems.
7064 Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)
7066         * xargs.c (do_exec): Child process exits with status 255, not
7067         127, if command can't be run.
7069 Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)
7071         * xargs.c: Exit with status 127 if running commmand fails, as
7072         required by POSIX.
7074         * fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
7075         Sun/BSD code is now -DFS_MNTENT.
7077 Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)
7079         * Reorganize into subdirectories and add xargs.  Rewrite Makefiles.
7081         * find.c (process_path, main): Allow a maxdepth of 0, meaning
7082         only process command line args.
7084         * parser.c, pred.c: Add -print0 predicate.
7086         * xargs.c: Add -0 option and long options.  Move standard
7087         library functions into separate files.  Use error instead of
7088         fatal and fprintf/perror.  Use POSIX macros for examining exit
7089         status from wait.
7090         (read_string): New function.
7092 Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)
7094         * find.c (process_path): Take DEPTH as an arg instead of ROOT,
7095         and change callers.
7097 Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)
7099         * parser.c (parse_maxdepth): New function.
7100         * find.c (process_path): If -maxdepth was given, don't go
7101         more than that many levels deep.
7102         * defs.h: Declare maxdepth.
7104 Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)
7106         * parser.c: Add -not as synonym for !.
7108 Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
7110         * Makefile (TAGS): New target.
7112 Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7114         * xargs.c (main): Tell getopt to not permute.
7116 Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7118         * parser.c (parse_perm), pred.c (pred_perm): Always compare
7119         bits 07777.
7121         * locate.c, Makefile: Rename 'fastfind' program to 'locate',
7122         following comment in POSIX.2 draft 10 rationale for find.
7124 Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7126         * listfile.c (getuser, getgroup): Make uid and gid unsigned
7127         short, not int.
7129 Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7131         * defs.h: Don't declare fprintf and printf, in case they have
7132         prototypes in stdio.h (important for functions that use stdarg).
7134 Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7136         * parser.c (parse_and): New function, for compatibility.
7138 Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)
7140         * find.c (main): Only enclose expressions that produce no side
7141         effects within `( ... )'.
7143 Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)
7145         * parser.c (strspn): Stop when end of string reached.
7147         * Version 1.2.
7149         * Move version number from Makefile to new file version.c.
7150         * parser.c: Recognize new -version predicate.
7152         * find.c (main): If no predicates that produce output are
7153         given, default to -print if the entire expression is true, not
7154         just the last part of an alternation.
7155         * Print the names of predicates with invalid arguments.
7157 Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)
7159         * pred.c: Don't check for invalid comparison types in numeric
7160         predicate functions.
7162 Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)
7164         * parser.c (parse_regex): Set fastmap and translate before
7165         compiling regex.
7167 Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7169         * fastfind.c (fastfind): Initialize count to 0.
7171         * lib/updatedb.sh: Only do regex comparison on directories,
7172         for speed.
7174         * listfile.c (list_file): Truncate user and group name to 8 chars.
7176 Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7178         * Version 1.1.
7180         * Makefile [DISTFILES]: Add COPYING.
7182 Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7184         * Version 1.0.
7186 Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7188         * lib/updatedb.sh: Prune entries that match PRUNEREGEX.
7189         Split up finding files from computing bigrams.
7190         Use redirection instead of nonportable grep -s to detect sort
7191         failure.  Optionally search network filesystems as well as
7192         local ones.
7194         * pred.c (pred_regex): Match against full pathname instead of
7195         just last element.
7196         * util.c (basename): Return "/", not "", if given "/".
7198         * find.c (process_path): Fix error in handling "/" directory.
7200 Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)
7202         * parser.c [STRSPN_MISSING] (strspn): New function.
7204 Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)
7206         * listfile.c: New file.
7207         * parser.c (parse_ls): New function.
7208         * pred.c (pred_ls): New function.
7210         * find.c (main): Remove interface to fastfind, to prevent
7211         conflict with POSIX syntax.
7212         * util.c (usage): Remove fastfind syntax from message.
7213         * fastfind.c (main): New function.
7214         * Makefile: Make fastfind a separate program.
7216         * find.c (main): Print correct message if a predicate arg is
7217         missing.
7219         * parser.c (insert_exec_ok): Make args that start with a ';' but
7220         contain other characters not terminate the command.
7222 Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7224         * fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
7225         instead.  True for HP/UX, at least.
7227 Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7229         * savedir.c: New file; now find won't run out of file
7230         descriptors in deep trees.
7231         * find.c (process_path): Use savedir.
7233 Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7235         * parser.c (parse_permmask): Allow symbolic mode masks.
7236         (parse_perm): Free 'struct change' when done with it.
7237         (get_oct): Function removed.
7239         * find.c (process_path): Allow arbitrarily-long filenames.
7240         More efficient string copying.  Initialize perm_mask to 07777
7241         instead of -1.
7243 Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7245         * Makefile, find.c: Use DIRENT to control whether <dirent.h>
7246         is used.
7248 Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7250         * parser.c (parse_regex): New function.
7251         * pred.c (pred_regex): New function.
7253         * fstype.c (read_mtab): If mtab entry has a "dev=" option
7254         (like in SunOS 4.1), use it, so there is no need to stat the
7255         special file later on.
7256         (xatoi, strstr): New functions.
7258 Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)
7260         * lib/updatedb.sh: Put BINDIR in PATH.
7262         * fstype.c: Do nothing if MNTENT_MISSING is defined.
7264         * fstype.c: New file.
7265         * parser.c (parse_fstype): New function.
7266         * pred.c (pred_fstype): New function.
7268         * parser.c (parse_newer): Failure to stat -newer file is a
7269         fatal error.
7271         * pred.c (pred_ok): Flush output before reading.  Use getchar
7272         instead of scanf.
7274         * pred.c (pred_prune): Return false if -depth given.
7275         * find.c: Apply the predicates to the dir when -depth and
7276         -prune are given.
7278 Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7280         * pred.c (pred_prune): Set new global var `stop_at_current_level'.
7281         * find.c (process_path): Test and reset it.
7283 Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)
7285         * modechange.c, modechange.h: New files.
7286         * parser.c (parse_perm): Use mode_compile and mode_adjust to
7287         parse arg, to allow symbolic mode for POSIX.
7289 Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)
7291         * parser.c (get_oct): Don't consider an empty string a valid number.
7293         * parser.c (parse_perm): If arg starts with '-', set flag bit
7294         for special comparison (POSIX).
7295         * pred.c (pred_perm): If flag bit set, compare s[ug]id &
7296         sticky bits as well, and return true if the given perms are
7297         set, ignoring other bits.
7299         * find.c: New global var `exit_status'.  Use it.  (POSIX)
7300         * parser.c: Set `exit_status' if lstat on -newer file fails.
7302         * fastfind.c: New file.
7303         * find.c (main): Call fastfind if given only 1 arg.
7304         * util.c (usage): Update message.
7305         * lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
7306         * Makefile: Add 'all' and 'install' targets.
7308 Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)
7310         * parser.c (parse_nogroup, parse_nouser): Implement.
7311         * pred.c (pred_nogroup, pred_nouser): Implement.
7313 Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)
7315         * find.c: Add variable `stay_on_filesystem' for -xdev.
7316         (process_path): Take an arg determining whether this call is
7317         the root of a tree.  Use lstat instead of stat.  If
7318         stay_on_filesystem, don't process a dir on a different
7319         filesystem.
7321         * parser.c (parse_newer): Use lstat instead of stat.  Is this right?
7322         (parse_xdev): Set stay_on_filesystem.
7324         * parser.c: Add dummy parse_nogroup, parse_nouser,
7325         parse_prune, and parse_xdev; to be written later.
7326         * pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.
7328         * find.c: Support System V directory library/headers.
7330         * find.c (process_path): Don't continue with a file that stat
7331         fails on.
7333         * defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
7334         'unsigned long' and 'unsigned short'.
7335         * find.c, defs.h: Remove 'convert_glob' variable.
7336         * parser.c (parse_fullregex): Function removed.
7337         (parse_name): Remove regular expression code.
7338         (parse_type): Recognize sockets.
7339         Add code to check for missing arguments to many parse_* functions.
7340         * pred.c (pred_name): Use glob_match instead of regex.
7342 Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7344         * Replace fprintf, simple_error, and mem_error with error and
7345         usage.
7347         * Fix string header includes for USG.
7349 Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7351         * defs.h: Change some #defines to enums.
7353 Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7355         * find.c (main): Don't take basename of argv[0].
7357         * util.c (xmalloc): New function.
7358         * find.c, parser.c, utils.c: Use xmalloc instead of malloc.
7360         * pred.c: Remove emulation of regex for BSD and use GNU
7361         library version in regcmp.c instead.
7362         * parser.c: Remove emulation of regcmp for BSD and use GNU
7363         library version in regcmp.c instead.
7364         * Makefile: Link with regex.o and regcmp.o.
7365         Add a DISTFILES macro and dist target.
7367         * Indent source code.  Move RCS logs to this file.
7369 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7371         * xargs.c: Indent.  Comment and rename some global variables.
7372         (main): Use getopt to parse options.  Open new global var
7373         `tty_stream' to /dev/tty if querying requested.
7374         (print_args): Read response from tty_stream, not stdin.
7375         (xmalloc): New function.
7376         Global: Use xmalloc instead of malloc.
7377         (usage): Revise message.
7379 87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)
7381         * pred.c: added guts to pred_size
7383 87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)
7385         * pred.c: added guts to perm and permmask.
7387 87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)
7389         * pred.c: made pred_name only look at the last component of
7390         the path.
7392 87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)
7394         * pred.c: added guts to name.  useds regex and regcmp to do
7395         regular expression handling.
7397 87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)
7399         * pred.c: added predicate newer
7401 87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)
7403         * pred.c: added guts to pred_ok
7405 87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)
7407         * pred.c: finished exec.
7409 87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)
7411         * parser.c: added guts to parse_size
7413 87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)
7415         * parser.c: added guts of perm and permmask.  added getoct
7416         routine for perm and permmask
7418 87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)
7420         * parser.c: added -fre, -fullregex predicate to turn off
7421         globbing conversion
7423 87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)
7425         * parser.c: reworked name so the regexpr pattern includes $ at
7426         the end to force globbing to work correctly.  End of the
7427         pattern refers to the end of the filename.
7429 87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)
7431         * parser.c: added guts to name.  uses a conversion from
7432         globbing to regexp format.  uses regex and regcmp to actually
7433         to the comparison.
7435 87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)
7437         * parser.c: added predicate newer
7439 87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)
7441         * parser.c: added ok guts.  consolidated exec and ok to using
7442         insert_exec_ok
7444 87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)
7446         * parser.c: minor bug in -fulldays predicate parser.  It
7447         should have set the flag full_days to true.
7449 87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)
7451         * find.c: changed where we are setting perm_mask to -1.  need
7452         to make sure that this happens before every apply_predicate.
7454 87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)
7456         * find.c: added error checking for no paths.  better error
7457         message if illegal ordering.
7459 87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)
7461         * find.c: added global convert_glob
7463 87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)
7465         * defs.h: added definition of BLKSIZE for size
7467 87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)
7469         * defs.h: added global convert_glob for name