cvsimport
[findutils.git] / ChangeLog
blobb4d4be909024b8523eabf2888a9ea84ec5c43600
1 2007-12-13  Eric Blake  <ebb9@byu.net>
3         Allow bootstrapping with autoconf 2.61a.
4         * configure.ac (AC_AIX, AC_ISC_POSIX): Delete, now that gnulib
5         takes care of this.
6         (jy_AC_TYPE_INTMAX_T): Delete, now that gnulib stdint module takes
7         care of this.
9 2007-12-09  James Youngman  <jay@gnu.org>
11         * doc/perm.texi: Updated from the upstream source.
13         * po/nl.po, po/pt.po: Updated from the Translation Project.
15 2007-12-08  James Youngman  <jay@gnu.org>
17         * xargs/xargs.1: Added examples on stdin handling and more
18         efficient core file deletion.
19         * NEWS: Mention this.
21         * doc/.cvsignore: Ignore regexprops-generic.texi.
22         * doc/.gitignore: ditto
24 2007-12-04  James Youngman  <jay@gnu.org>
26         Fix Savannah bug #15384, find misbehaves when parent directory is
27         not readable.
28         * find/testsuite/find.posix/parent.exp: New test
29         * find/testsuite/find.posix/parent.xo: New test
30         * find/testsuite/Makefile.am (EXTRA_DIST_EXP, EXTRA_DIST_XO):
31         Added parent.exp, parent.xo.
32         * find/find.c (safely_chdir): If safely_chdir_nofollow fails with
33         SafeChdirFailDestUnreadable, fall back on safely_chdir_lstat.
35         * find/find.1: Formatting fixes; options should be in bold.
37 2007-12-02  James Youngman  <jay@gnu.org>
39         Fix Savannah bug #20802, find -delete anomalies
40         * find/pred.c (pred_delete): Set find's exit status to nonzero if
41         -delete fails.
42         * find/find.1 (-delete): Document this.
43         * doc/find.texi (Delete Files): Document this.
44         * NEWS: Mention the fix.
46 2007-11-30  James Youngman  <jay@gnu.org>
48         Fix Savannah bug #20865 (-prune -delete without an explicit
49         -depth is now an error).
50         * find/parser.c (check_option_combinations): Diagnose the
51         situation where -delete and -prune are both used, because -delete
52         turns on -depth and -depth makes -prune do nothing.
53         * find/tree.c (build_expression_tree): call
54         check_option_combinations().
55         * find/defs.h (struct options): Add new boolean field
56         explicit_depth.
57         Also declare check_option_combinations.
58         * find/util.c (set_option_defaults): Initialise explicit_depth.
59         * NEWS: Mention this fix.
61 2007-11-29  James Youngman  <jay@gnu.org>
63         Support the generation of regexprops-generic.texi.
64         * lib/regextype.h (get_regex_type_context): Used to indicate if a
65         particular type of regular expression is of interest for
66         regexprops.texi (which is findutils-specific) or
67         regexprops-generic.texi (which is not).   The "context" is simply
68         a flag set in a word.
69         * lib/regextype.c (get_regex_type_context): Implement this.
70         (regex_map): Assign a context to each regular expression type.
71         * lib/regexprops.c: Use the context information from regextype.c
72         to decide which regular expression types to docuemnt in the
73         output.  The selection is indicated on the command line; "generic"
74         and "findutils" are supported.
75         (copying): New function, which emits a copyright header into the
76         output.
77         (comment): New function for emitting a comment.
78         (ignore): New function which returns nonzero when the indicated
79         type of regular expression is not of interest for this version of
80         the document.
81         (menu): Miss out the non-interesteing regex types.
82         (get_next): Returns the regex type name for the "next" pointer,
83         taking into account which regex types are ignored.
84         (describe_all): Take into account which regex types are ignored,
85         and emit a copying header also.   Include a comment indicating
86         which "context" was of interest when generating the output.
87         * doc/Makefile.am: Add regexprops-generic.texi.  Generate this
88         file from regexprops.c.
90         Check gnulib out with native git, rather than git-cvspserver.
91         This fixes Savannah bug #21568, for the second time.
92         * import-gnulib.config (gnulib_version): Switch to using a git
93         commit id and native git, since git-cvspserver silently fails to
94         support "cvs update -D".
95         * import-gnulib.sh (do_checkout): Check gnulib out with git rather
96         than CVS.
97         (main): Require 'git' to be available.
98         (move_cvsdir): Remove any pre-existing gnulib-cvs directory.
99         * doc/find-maint.texi (Using the GNU Portability Library): Desribe
100         how we now obtain gnulib.  Update the instructions on how we patch
101         gnulib.
102         * .gitignore: Ignore gnulib-git, not gnulib-cvs
103         * .cvsignore: Ditto
104         * Makefile.am (findutils-check-smells): Change from gnulib-cvs to
105         gnulib-git.
106         * README-CVS: Mention the extra dependency on git.
107         * NEWS: Mention this change.
109         Add test case for Savannah bug #20803 (-prune return value).
110         * find/testsuite/find.posix/prune-result.exp: New test for
111         Savannah bug #20803.
112         * find/testsuite/find.posix/prune-result.xo: Expected otuput for
113         new test prune-result.exp.
114         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Added
115         find.posix/prune-result.exp
116         (EXTRA_DIST_XO): Added find.posix/prune-result.xo
118 2007-11-27  James Youngman  <jay@gnu.org>
120         * find/pred.c (pred_prune): Always return true.  This fixes
121         Savannah bug #20803.
122         * doc/find.texi (Directories): Document the change to -prune.
123         * find/find.1: Document the change.
124         * NEWS: Mention the fix.
126 2007-11-26  James Youngman  <jay@gnu.org>
128         Fix Savannah bug #20970, handling of trailing slashes with -name.
129         * find/pred.c (pred_name_common): Strip trailing slashes from the
130         pathname before applying fnmatch() to it.  This fixes Savannah bug
131         #20970.
132         * find/testsuite/find.posix/nameslash.exp: Test case for bug #20970.
133         * find/testsuite/find.posix/nameslash.xo: Expected output file for
134         same.
135         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Added nameslash.exp.
136         (EXTRA_DIST_XO): Added nameslash.xo.
138         Fix Savannah bug #21634, No copy of FDL1.2 included in source
139         code.
140         * doc/find.texi: Change license to the GNU Free Documentation
141         License 1.2.
142         (GNU Free Documentation License): Include fdl.texi
143         * doc/find-maint.texi (GNU Free Documentation License): Include a
144         copy of the FDL (it was already under this license).
145         * doc/Makefile.am (find_maint_TEXINFOS): Include fdl.texi
146         (find_TEXINFOS): Include fdl.texi
147         * import-gnulib.config (modules): Include gpl-3.0 and fdl.
149         * doc/perm.texi: Added copyright license, following the license of
150         the original source document (perm.texi from coreutils).
152 2007-11-25  James Youngman  <jay@gnu.org>
154         * Makefile.am (jy-regex-fix): Comment that the regex.c fix needs
155         to stay until we no longer support Automate-1.9.
157         * doc/perm.texi (Mode Structure): Fix setgid/setuid typo.
159 2007-11-24  James Youngman  <jay@gnu.org>
161         * doc/find.texi (Mode Bits): Correct the warning about the change
162         in behaviour of -perm /000 to indicate that the change has
163         happened now.  This fixes Savannah bug #21628.
164         * NEWS: Mention this.
166 2007-11-22  James Youngman  <jay@gnu.org>
168         POSIXLY_CORRECT turns off warnings.
169         * find/defs.h (struct options): Added member posixly_correct.
170         This is set when the POSIXLY_CORRECT environment variable is set.
171         * find/util.c (set_option_defaults): Set options.posixly_correct
172         if the POSIXLY_CORRECT environment variable is set.
173         (set_option_defaults): Turn off warnings when POSIXLY_CORRECT is
174         in force.
175         * find/find.1: Document this.
176         (Environment Variables): Likewise.
177         (Warning Messages): Likewise.
179         Non-POSIX compliant arguments to -perm generate an error when
180         POSIXLY_CORRECT is set.
181         * find/parser.c (parse_table): Indicate which primaries are
182         defined by POSIX.
183         (non_posix_mode): New function; issues an error message when a
184         non-POSIX-compliant argument to -perm is used (and POSIXLY_CORRECT
185         is in force).
186         (parse_perm): Call non_posix_mode when a non-POSIX-compliant mode
187         argument is seen.
188         * find/testsuite/find.gnu/posix-perminvalid.exp: New file; tests
189         invalid arguments to -perm.
190         * find/testsuite/Makefile.am (EXTRA_DIST_EXP): Add
191         posix-perminvalid.exp.
192         * find/find.1: Document this.
193         * doc/find.texi (Mode Bits): Likewise
194         (Environment Variables): Likewise
197         * xargs/xargs.1: Options should be bold, not italic; filenames
198         should also be italic.  OPTIONS should be a section, not a
199         subsection.  In the description of --max-lines, "max-args" was
200         corrected to "max-lines".  Turn off hyphenation in the SYNOPSIS
201         section.  This fixes Savannah bug #21270.
203 2007-11-13  James Youngman  <jay@gnu.org>
205         * NEWS, configure.ac: Prepare for the release of findutils-4.3.10.
207         * import-gnulib.sh (usage): If the existing CVS working tree for
208         gnulib in the source tree does not yet point at the
209         git-cvs-pserver repository, move the old gnulib working tree out
210         of the way and do a fresh checkout.  This fixes Savannah bug
211         #21568.
213 2007-11-11  James Youngman  <jay@gnu.org>
216         * configure.ac: Prepared for release of findutils-4.3.9.
217         * NEWS: Likewise.
219         * po/POTFILES.in: Use gnulib/lib/getdate.y rather than
220         gnulib/lib/getdate.c, because the former is the source file, and
221         because without this change the update-po target of po/Makefile
222         fails.
224         * import-gnulib.config (gnulib_version): Move to gnulib
225         2007-11-10.
227         * po/hu.po, po/nl.po: Updated from Translation Project.
229 2007-09-08  James Youngman  <jay@gnu.org>
231         Better documentation on $PATH security checks.
232         * doc/find.texi (Single File): Better explanation of what makes
233         certain values of $PATH insecure.  This fixes Savannah bug
234         #20951.
235         * find/find.1 (-execdir): Likewise.
237         Document interaction of -depth/-delete/-prune.
238         * doc/find.texi (Directories): Mention that "-prune ... -delete"
239         will not do what you want and will cause the deletion of more
240         files than you probably intended.
241         (Delete Files): Likewise, suggest using "-depth" when testing
242         command lines you plan to eventually add "-delete" to.
243         (Cleaning Up): Add -depth explicitly to an example which uses
244         -delete.
245         * find/find.1 (-depth): Mention that -delete also implies -depth.
246         (-delete): Warn against putting -delete first.
247         (-prune): Also warn against -prune ... -delete.
248         NEWS: Mention these changes.
250 2007-08-23  Eric Blake  <ebb9@byu.net>
252         Pick up gnulib change to getline module.
253         * import-gnulib.config (gnulib_version): Bump date.
254         * locate/bigram.c: Use <stdio.h>, not getline.h.
255         * locate/code.c: Likewise.
256         * locate/frcode.c: Likewise.
257         * locate/locate.c: Likewise.
259         * po/ChangeLog: Delete, merge into this file.
261 2007-08-23  James Youngman  <jay@gnu.org>
263         * po/nl.po: Updated from Translation Project
265         * find/parser.c (check_path_safety): Assume the path is safe is
266         $PATH is not set.  This avoids a segfault in that situation
267         and thus fixes Savannah bug #20834.
269 2007-08-22  James Youngman  <jay@gnu.org>
271         * find/parser.c (parse_path): This is the 'canonical' name once
272         again.
273         (parse_wholename): This is not.
274         (parse_ipath): No longer deprecated.
275         * NEWS: Mention this.
277 2007-08-22  Eric Blake  <ebb9@byu.net>
279         Fix Savannah bug #20871.
280         * find/find.c (main): Remove bogus assertion.
281         * NEWS: Document the fix.
283         Update to recent gnulib addition of idcache.h.
284         * lib/listfile.c (getuser, getgroup): Use header rather than
285         declaring things ourself.
286         * po/POTFILES.in (locate/frcode.c): Add missing file.
288 2007-08-21  Eric Blake  <ebb9@byu.net>
290         Fix for Savannah bug #20273, find -ok with seekable stdin.
291         * find/find.c (main): Use close_stdin, not close_stdout.
292         * import-gnulib.config (gnulib_version): Pick up yesno tests.
293         * NEWS: Document the change.
294         * build-aux/.cvsignore: Ignore compile.
296 2007-08-20  Paul Eggert  <eggert@cs.ucla.edu>
297         and Eric Blake  <ebb9@byu.net>
299         Improve translation of xstrtol messages.
300         * import-gnulib.config (destdir): Upgrade gnulib to 2007-08-11.
301         * locate/locate.c (dolocate): Adjust to API change of xstrtol
302         gnulib module.
303         * po/POTFILES.in: Likewise.
304         * NEWS: Document the enhancement.
306 2007-08-20  James Youngman  <jay@gnu.org>
308         * doc/find.texi (Directories): Clarify that built commands which
309         have not been executed yet will be executed before find quits,
310         even with -quit.  Also clarify the difference between -prune and
311         -quit.
313 2007-08-18  Eric Blake  <ebb9@byu.net>
315         Fix Savannah bug #20751.
316         * lib/listfile.c (list_file): Accomodate gnulib change of 3 Jul
317         2006.
318         * NEWS: Document this.
319         Reported by Nigel Stepp.
320         * THANKS: Sort and update.
321         * AUTHORS: Add myself.
323 2007-08-05  Eric Blake  <ebb9@byu.net>
325         Fix Savannah bugs #20662, #20688.
326         * find/find.c (at_top): Avoid memory leak.
327         * find/pred.c (do_fprintf, pred_iname, pred_name): Likewise.
328         (pred_name_common): New function, factored from pred_iname and
329         pred_name.
330         * find/parser.c (check_name_arg): Let -nowarn silence -name /.
331         * locate/locate.c (visit_basename): Avoid memory leak.
332         * NEWS: Document the changes.
333         * doc/find.texi (Warning Messages): Document -nowarn's effect on
334         -name and -iname.
335         * find/testsuite/find.gnu/name-slash.exp: New test, to ensure
336         20662 doesn't regress on '-name /', and that 20688 silences the
337         warning.
338         * find/testsuite/find.gnu/printf-slash.exp: Likewise.
339         * find/testsuite/find.gnu/name-slash.xo: Expected results.
340         * find/testsuite/find.gnu/printf-slash.xo: Likewise.
341         * find/testsuite/Makefile.am (EXTRA_DIST_XO, EXTRA_DIST_EXP):
342         Distribute new tests.
344 2007-07-31  Eric Blake  <ebb9@byu.net>
346         Allow choice of default arg size, Savannah bug #20594.
347         * configure.ac (DEFAULT_ARG_SIZE): Check environment for a default
348         size override.
349         * lib/buildcmd.c (bc_use_sensible_arg_max): Use default size from
350         configure, if requested.
351         * README (DEFAULT_ARG_SIZE): Mention the ability to tune this at
352         configure time.
353         * NEWS: Document the change.
355 2007-07-29  James Youngman  <jay@gnu.org>
357         * po/tr.po: Updated from Translation Project.
359 2007-07-26  Eric Blake  <ebb9@byu.net>
361         * doc/.cvsignore: Ignore more generated documentation.
363 2007-07-23  Eric Blake  <ebb9@byu.net>
365         * find/parser.c (parse_version): Avoid compiler warning.
366         * locate/code.c (includes): Likewise.
368 2007-07-22  Eric Blake  <ebb9@byu.net>
370         * po/POTFILES.in: Add lib/findutils-version.c.
372 2007-07-22  James Youngman  <jay@gnu.org>
374         * find/find.1: Corrected a number of typos and fixed up the
375         alphabetical section ordering.  This fixes Savannah bug #20552.
377         Version banners now comply with the GNU coding standard.
378         * find/parser.c (parse_version): Use display_findutils_version()
379         instead of printing the information manually.  Don't include
380         gnulib-version.h since we no longer directly use that header.
381         * lib/findutils-version.c: Added
382         * lib/findutils-version.h: Added
383         * import-gnulib.config (modules): Added version-etc and
384         version-etc-fsf.
385         * lib/Makefile.am (libfind_a_SOURCES): added findutils-version.c.
386         * find/version.c: Removed
387         * find/Makefile.am: Remove version.c
388         * locate/Makefile.am: Don't link ../find/version.o
389         * xargs/Makefile.am: Ditto
390         * xargs/xargs.c (main): Use display_findutils_version()
391         * locate/code.c (main): Ditto
392         * locate/frcode.c (main): Ditto
393         * locate/locate.c (dolocate): Ditto
394         * locate/updatedb.sh (version): Display copyright information in
395         the right format.   Also ensure that we exit with a nonzero status
396         if there was an output error for --help and --version.
397         * find/testsuite/config/unix.exp (find_version): Adjust for
398         --version format change
399         * locate/testsuite/config/unix.exp (locate_version): Ditto
400         * xargs/testsuite/config/unix.exp (xargs_version): Ditto
401         * NEWS: Mention the change
403 2007-07-19  Eric Blake  <ebb9@byu.net>
405         * po/POTFILES.in: Update to reflect current location of
406         translatable strings.
408 2007-07-17  Eric Blake  <ebb9@byu.net>
410         Ensure 'make distcheck' can pass on cygwin.
411         * configure.in: Rename...
412         * configure.ac: ...to this, to match automake recommendations.
413         * NEWS: Add release dates.
414         * doc/find-maint.texi: Remove trailing whitespace.
415         (Documentation): Document where release dates are usefully
416         recorded.
417         * locate/Makefile.am (AM_INSTALLCHECK_STD_OPTIONS_EXEMPT): Be
418         aware of .exe.
419         * .cvsignore: Ignore 'make dist' files.
420         * po/.cvsignore: Ignore remove-potcdate.sed.
422 2007-07-14  Eric Blake  <ebb9@byu.net>
424         * import-gnulib.config (gnulib_version): Bump date, to pick
425         up fix in canonicalize module testing.
427 2007-07-06  James Youngman  <jay@gnu.org>
429         * po/uk.po, po/nl.po, po/vi.po: Updated from Translation Project.
431 2007-07-04  James Youngman  <jay@gnu.org>
433         * NEWS: Fixed typos in description of bugfix for bug #20310.
435 2007-07-03  James Youngman  <jay@gnu.org>
437         Fix Savannah bug #20310.
438         * m4/nullsort.m4: If we are cross compiling, assume "sort -z" does
439         not work on the target.
441         Manpage improvements.
442         * find/find.1: More consistent use of quotation marks.
443         *  locate/locate.1 (HISTORY): New section.
445 2007-07-02  James Youngman  <jay@gnu.org>
447         * import-gnulib.sh: (run_gnulib_tool): Don't pass --gpl3 to
448         gnulib-tool, since the program does not have that option (that was
449         a local change which proved not to be necessary).
451         GPL3 migration.
452         * COPYING: Migrate to version 3 of the GNU General Public license.
453         * Makefile.am: ditto
454         * build-aux/check-testfiles.sh: ditto
455         * build-aux/src-sniff.py: ditto
456         * debian/copyright: ditto
457         * doc/find-maint.texi: ditto
458         * find/defs.h: ditto
459         * find/find.c: ditto
460         * find/finddata.c: ditto
461         * find/fstype.c: ditto
462         * find/ftsfind.c: ditto
463         * find/parser.c: ditto
464         * find/pred.c: ditto
465         * find/testsuite/config/unix.exp: ditto
466         * find/tree.c: ditto
467         * find/util.c: ditto
468         * import-gnulib.config: ditto
469         * import-gnulib.sh: ditto
470         * lib/buildcmd.c: ditto
471         * lib/buildcmd.h: ditto
472         * lib/dircallback.c: ditto
473         * lib/dircallback.h: ditto
474         * lib/extendbuf.c: ditto
475         * lib/extendbuf.h: ditto
476         * lib/forcefindlib.c: ditto
477         * lib/gnulib-version.h: ditto
478         * lib/listfile.c: ditto
479         * lib/listfile.h: ditto
480         * lib/modetype.h: ditto
481         * lib/nextelem.c: ditto
482         * lib/nextelem.h: ditto
483         * lib/printquoted.c: ditto
484         * lib/printquoted.h: ditto
485         * lib/qmark.c: ditto
486         * lib/regexprops.c: ditto
487         * lib/regextype.c: ditto
488         * lib/regextype.h: ditto
489         * lib/savedirinfo.c: ditto
490         * lib/savedirinfo.h: ditto
491         * lib/strspn.c: ditto
492         * lib/wait.h: ditto
493         * lib/waitpid.c: ditto
494         * locate/bigram.c: ditto
495         * locate/code.c: ditto
496         * locate/frcode.c: ditto
497         * locate/locate.c: ditto
498         * locate/locatedb.h: ditto
499         * locate/testsuite/config/unix.exp: ditto
500         * locate/updatedb.sh: ditto
501         * locate/word_io.c: ditto
502         * po/fetch-po-files: ditto
503         * xargs/testsuite/config/unix.exp: ditto
504         * xargs/xargs.c: ditto
506         Typo fixes.
507         * doc/find.texi (Deleting Files): Fixed a typo.
508         (Deleting Files): Likewise.
510         New worked example for find.
511         * doc/find.texi (Copying A Subset of Files): Added a new worked
512         example.
514         * doc/find.texi (Updating A Timestamp File): Indicate that %A@ now
515         includes a sub-second part on many systems.
517         Include <fcntl.h> unconditionally.
518         * import-gnulib.config (modules): Also use the fcntl module.
519         * find/find.c: #include <fcntl.h> unconditionally, since
520         gnulib provides it if it is absent.
521         * find/fstype.c: Likewise.
522         * find/ftsfind.c: Likewise.
523         * find/parser.c: Likewise.
524         * find/util.c: Likewise.
525         * locate/locate.c: Likewise.
527 2007-06-30  Eric Blake  <ebb9@byu.net>
529         * find/pred.c (pred_timewindow): Avoid gcc warnings.
530         (format_date): Likewise.
531         * find/tree.c (calculate_derived_rates): Likewise.
532         * locate/word_io.c (getword): Likewise.
534 2007-06-30  James Youngman  <jay@gnu.org>
536         * find/find.1 (EXAMPLES): Added an example of using find and cpio -p
537         to copy a directory tree, with pruning and omitted files.
539         * find/pred.c (format_date): Use verify_true for constant
540         conditions rather than assert.
541         * xargs/xargs.c (main): Ditto.
543         Enhancements to the code smell detector.
544         * Makefile.am (findutils-check-smells): Automate the calling of
545         build-aux/src-sniff.py.
546         * build-aux/src-sniff.py: Rework to use a list of regex-based
547         sniffers, to allow checking types of file other than C.  Allow
548         file-based regex sniffers to give an indication of the line number
549         where they think the problem (or part of the problem) exists.
550         Added code smell detectors for a sample Bourne shell problem and
551         for out-of-date FSF addresses.
553         * find/tree.c (get_pred_cost): Eliminate unused variable.
555         Fix Savannah bug #20263 in a more portable way.
556         * find/tree.c (cost_table_comparison): Avoid casting function
557         pointers to poiter-to-object, since this is not portable (or
558         of course conforming).  Instead, use memcmp().
560 2007-06-28  Eric Blake  <ebb9@byu.net>
562         * import-gnulib.sh (run_gnulib_tool): Speed operation when
563         updating an existing tree.
565         Allow 'make check' to work without prior 'make all'.
566         * find/Makefile.am (SUBDIRS): Build in . before testsuite.
567         * locate/Makefile.am (SUBDIRS): Likewise.
568         * xargs/Makefile.am (SUBDIRS): Likewise.
570         Fix Savannah bug #20273, xargs -E with seekable stdin.
571         * import-gnulib.config (modules): Sort, add closein.
572         * xargs/testsuite/Makefile.am (EXTRA_DIST_EXP, EXTRA_DIST_XO)
573         (EXTRA_DIST_XI): Add new test.
574         * xargs/testsuite/config/unix.exp (xargs_start): Support optional
575         argument to allow test to run a subshell.
576         * xargs/testsuite/inputs/sv-bug-20273.xi: New file.
577         * xargs/testsuite/xargs.posix/sv-bug-20273.xo: Likewise.
578         * xargs/testsuite/xargs.posix/sv-but-20273.exp: Likewise.
579         * xargs/xargs.c (main): Use close_stdin, not close_stdout.
580         * NEWS: Document the fix.
582 2007-06-27  James Youngman  <jay@gnu.org>
584         Added a maintenance manual.
585         * doc/find-maint.texi: New file.
586         * doc/Makefile.am (info_TEXINFOS): Added doc/find-main.texi.
587         * doc/find.texi (Introduction): Fixed typo.
589 2007-06-26  Eric Blake  <ebb9@byu.net>
591         * import-gnulib.config (modules): Allow ./configure
592         --disable-assert.
594 2007-06-26  James Youngman  <jay@gnu.org>
596         * build-aux/src-sniff.py: Detect uses of struct stat where the
597         header file was not included.
598         * find/find.c: Fix this, and uses of assert without a following
599         space (the coding standard requires a space, but there are still
600         a number of cases where other functions are called with no
601         following space).
602         * find/fstype.c: Ditto.
603         * find/ftsfind.c: Ditto.
604         * find/parser.c: Ditto.
605         * find/pred.c: Ditto.
606         * find/tree.c: Ditto.
607         * find/util.c: Ditto.
608         * lib/buildcmd.c: Ditto.
609         * lib/buildcmd.h: Ditto.
610         * lib/extendbuf.c: Ditto.
611         * locate/frcode.c: Ditto.
612         * locate/locate.c: Ditto.
613         * locate/word_io.c: Ditto.
614         * xargs/xargs.c: Ditto.
616         * find/tree.c (cost_table_comparison): Avoid < comparison between
617         function pointer types.  Instead cast the function pointers to
618         (const void*).  Both alternatives are undefined C, but the former
619         actually fails to compile on some systems.   This fixes Savannah
620         bug #20263.
621         * NEWS: mention the fix
623         * find/tree.c (calculate_derived_rates): Removed assignment to
624         rate variable following an assert(0) call, which had been added to
625         silence a "used before initialised" warning, and replace it with a
626         call to abort, which (a) correctly halts execution if _NDEBUG is
627         defined and (b) more accurately documents what's happening.
629         * find/parser.c (get_stat_Ytime): Removed redundant call to abort.
631         * find/util.c (debug_stat): For consistency, use assert (0) rather
632         than assert (false).
634 2007-06-26  James Youngman  <jay@gnu.org>
636         * README-alpha: Mention the findutils-patches mailng list and the
637         archives for findutils-patches and bug-findutils.
639         * po/bg.po: Updated from Translation Project.
641 2007-06-25  James Youngman  <jay@gnu.org>
643         * po/sv.po: Updated Swedish translation.
645 2007-06-24  James Youngman  <jay@gnu.org>
647         * build-aux/.gitignore, debian/.gitignore, doc/.gitignore,
648         find/.gitignore, find/testsuite/.gitignore, .gitignore,
649         lib/.gitignore, locate/.gitignore, locate/testsuite/.gitignore,
650         m4/.gitignore, po/.gitignore, xargs/.gitignore,
651         xargs/testsuite/.gitignore: New files to make it more painless to
652         track findutils sources with git.
654         * NEWS: Mention the previous change to doc/find.texi.
656 2007-06-23  James Youngman  <jay@gnu.org>
658         * doc/find.texi (Introduction): Recommend that people check they
659         are using the latest version before reporting a bug.
661 2007-06-22  James Youngman  <jay@gnu.org>
663         Better documentation for the fractional part of seconds fields for
664         -printf and similar actions.
665         * doc/find.texi (Time Components): Point out that the seconds
666         field of the timestamp is often printed out with a fractional part
667         of unspecified length and precision.  The '%Tc' field has no
668         seconds part.
669         (Combined Time Formats): Point out the same thing for '%T@'.
670         * find/find.1 (%A): Point out the same thing.
671         * NEWS: Mention these changes.
673         Fix various lint-type complaints taken from the rules in the
674         coreutils Makefile.maint file (see build-aux/src-sniff.py).
675         * xargs/xargs.c: Removed unnecessary parentheses in "#if defined"
676         checks.
677         (main): Don't cast the return value of xmalloc.
678         (add_proc): Don't cast the return value of xmalloc.
679         * lib/regextype.c: Don't include quotearg.h, we don't need it.
680         * lib/dircallback.c, lib/nextelem.c, lib/prontquoted.c,
681         lib/qmark.c, lib/strspn.c, lib/waitpid.c: Assume config.h is available.
682         * lib/extendbuf.c: Ditto
683         * lib/listfile.c: Ditto.  Also removed unnecessary parentheses in
684         "#if defined" checks.
685         (get_link_name): Don't cast the result of xmalloc.
686         * lib/bigram.c: Removed unnecessary parentheses in "#if defined"
687         checks.
688         * lib/savedirinfo.c: Assume config.h is available.  Also removed
689         unnecessary parentheses in "#if defined" checks.
690         * lib/buildcmd.c (bc_do_insert): Don'tcast the result of xmalloc().
691         * find/tree.c (build_expression_tree): Don't cast the argument to free().
692         * find/ftsfind.c (set_close_on_exec): Removed unnecessary
693         parentheses in "#if defined" checks.  Also changed "filesystem" ->
694         "file system"
695         * find/util.c (check_nofollow): Removed unnecessary parentheses in
696         "#if defined" checks.
697         * find/parser.c (estimate_fstype_success_rate): ditto.
698         (insert_regex): Do not cast the result of xmaloc().  Removed unnecessary
699         parentheses in "#if defined" checks.  Also changed "filesystem" ->
700         "file system"
701         * find/pred.c: ditto
702         * find/find.c: "the the" -> "the", "filesystem" -> "file system"
703         * find/fstype.c: "filesystem" -> "file system" (in comments and
704         static functions)
705         * locate/frcode.c: Removed unnecessary parentheses in "#if
706         defined" checks.
707         * locate/locate.c (search_one_database): Don't cast the return
708         value of xmalloc.
709         (dolocate): Mark error message for translation.
711 2007-06-21  Eric Blake  <ebb9@byu.net>
713         * locate/.cvsignore: Ignore dblocation.texi.
714         * build-aux/.cvsignore: Ignore Makefile.
715         * locate/locate.c (set_max_db_age): Fix typo in error message.
717 2007-06-19  Eric Blake  <ebb9@byu.net>
719         Fix compilation on cygwin, Savannah bug #20210.
720         * import-gnulib.config (gnulib_version): Import strcasestr and
721         updated canonicalize-lgpl-tests.
722         * lib/dircallback.c (includes): Track gnulib changes.
724 2007-06-14  James Youngman  <jay@gnu.org>
726         * find/parser.c (parse_time): Use the variable comp, which holds
727         the planned comparison type, rather than the structure tval, which
728         has not been initialised yet and contains a random value.  This
729         fixes Savannah bug #20139.
730         * NEWS: Mention the bugfix.
732 2007-06-13  James Youngman  <jay@gnu.org>
734         * po/pl.po: Updated Polish translation.
736 2007-06-12  James Youngman  <jay@gnu.org>
738         Release 4.3.8.
740         * find/find.1 (HISTORY): Document when the find tests -readable,
741         -writable, -executable and the option -regextype were introduced.
743 2007-06-12  Nix  <nix@esperi.org.uk> (trivial change)
745         * locate/locate.c (drop_privs): Use groups[0] rather than
746         groups[1], since groups[] is a one-element array.  This is a
747         buffer overrun affecting root only.  In theory it could affect
748         setuid installations, but I (James Youngman) cannot find an explot
749         mechanism for it.  This fixes Savannah bug#20157.
750         * NEWS: Mention this fix.
752 2007-06-12  James Youngman  <jay@gnu.org>
754         Make the test suite work when run as root.
755         * find/testsuite/config/unix.exp (fs_superuser): Abstract out the
756         check which discovers if we have superuser privileges on the
757         filesystem (taken from access.exp).
758         * find/testsuite/find.gnu/access.exp: Call fs_superuser.
759         * find/testsuite/find.gnu/fprint-unwritable.exp: Use fs_superuser.
761         * po/vi.po, ga.po, nl.po: Updated translations
762         * po/findutils.pot: Updated template file
764 2007-06-09  James Youngman  <jay@gnu.org>
766         Release 4.3.7.
768         Check that we can correctly read old-format databases which are
769         big-endian or little endian.
770         * locate/testsuite/config/unix.exp (locate_from_db): New function;
771         supports testing locate against a provided database.
772         * locate/testsuite/locate.gnu/bigendian.exp: New test; make sure
773         we can read an old-format big-endian database.
774         * locate/testsuite/locate.gnu/bigendian.xo: Expected output from
775         bigendian.exp test.
776         * locate/testsuite/locate.gnu/littleendian.exp: New test; make sure
777         we can read an old-format little-endian database.
778         * locate/testsuite/locate.gnu/locateddb.old.powerpc.xi: Old format
779         big endian database file, for supporting bigendian.exp.
780         * locate/testsuite/locate.gnu/littleendian.xo: Expected output from
781         littleendian.exp test.
782         * locate/testsuite/locate.gnu/locateddb.old.x86.xi: Old format
783         little endian database file, for supporting littleendian.exp.
784         * locate/testsuite/Makefile.am: Distribute littleendian.exp,
785         bigendian.exp and related .xi and .xo files.
788         * doc/find.texi (Size Directives): Compare %b with %s/512, not
789         %s/1024.  This fixes (again) Savannah bug #19596.
790         * NEWS: mention the fix.
792         Avoid using the non-portable function putw().
793         * locate/locatedb.h: Declare putword().
794         * locate/frcode.c: Include <stdbool.h> as locatedb.h now requires
795         it.
796         * locate/code.c (main): Use putword() rather than putw(), because
797         the latter was removed from SUSv3. This fixes Savannah bug #19980.
798         Also include <stdbool.h> as locatedb.h now requires this.
799         * locate/word_io.c (putword): Define the new function putword.
801         Ensure that <config.h> is included before any system header
802         * find/defs.h: Do not include <config.h> from "defs.h".  Instead
803         just complain if it was not already included, since it needs  to
804         be included first of all, even before system headers (in case
805         gnulib had replaced a system header).  Check
806         ALREADY_INCLUDED_CONFIG_H to determine this.
807         * configure.in: Always define ALREADY_INCLUDED_CONFIG_H in
808         config.h.
809         * find/find.c: Include config.h before defs.h.
810         * find/finddata.c: ditto.
811         * find/fstfind.c: ditto.
812         * find/parser.c: ditto.
813         * find/pred.c: ditto.
814         * find/util.c: ditto
815         * find/tree.c: ditto (fixing Savannah bug #20128).
817         * m4/noreturn.m4 (jy_AC_ATTRIBUTE_NORETURN): Use AC_LANG_PROGRAM
818         inside AC_COMPILE_IFELSE.
820         * doc/find.texi (Security Considerations for locate): Discuss in
821         detail the buffer overrun when reading old-format locate
822         databases.  This is CVE reference CVE-2007-2452.
824 2007-06-05  James Youngman  <jay@gnu.org>
826         Guess the byte-order of old-format locate databases.
827         * locate/word_io.c (getword): Make the endian_state_flag parameter
828         an enum rather than an int.  If we are in the initial ("don't
829         know") byte-order guessing state and the swapped value is out of
830         range, use this as evidence that the byte order is native.
831         * locate/locatedb.h: Declare getword accordingly.
832         * locate/locate.c (struct process_data): Added endian_state
833         member, which remembers for us what the big/little endian order
834         guessing state is when we read an old-format database.
835         (visit_old_format): Use the procdata.endian_state rather than a
836         local variable, so that the information can persist across calls.
837         (i_am_little_endian): Locate figures out if we needed to byteswap
838         the words in an old-format database, but that is an implementation
839         detail.  Therefore we figure out our own byte order so that we can
840         produce a more relevant message for --statistics.  The
841         i_am_little_endian() returns nonzero if the current host has
842         little-endian byte order.
843         (search_one_database): Report the byte-order of old-format
844         databases.
846 2007-06-04  James Youngman  <jay@gnu.org>
848         * locate/testsuite/Makefile.am (EXTRA_DIST_XO, EXTRA_DIST_EXP):
849         Added old_prefix.exp and old_prefix.xo, a new test case for long
850         shared rpefixes with the old database format.
852         * locate/locate.c (visit_old_format): Use getword() from word_io.c
853         instead of getw(), because getw() is not in POSIX.
854         * locate/word_io.c: New file, providing replacement for getw().
855         * locate/locatedb.h: Declare getword()
856         * locate/Makefile.am (locate_SOURCES): Added word_io.c
858         * locate/testsuite/config/unix.exp (locate_start): Make the
859         failure messages slightly more explicit; indicate what went wrong
860         when a test fails.
862 2007-06-03  James Youngman  <jay@gnu.org>
864         * locate/locate.c (visit_old_format, extend, toolong): Extend the
865         buffer used to build the current pathname when reading an
866         old-format database.  The new function extend is called to do
867         this.  The new function toolong is called to report a fatal error
868         when the buffer size would otherwise exceed SIZE_MAX.  This fixes
869         Savannah bug #20014, which is a security-related problem with the
870         CVE identifier CVE-2007-2452.
872         * configure.in: Determine if the setgroups function is available,
873         and set HAVE_SETGROUPS if so.
874         * locate/locate.c (drop_privs): Call setgroups() only if
875         HAVE_SETGROUPS indicates that it is available.  This fixes
876         Savannah bug #19981.
878         * po/vi.po: Updated Vietnamese translation
880 2007-05-31  James Youngman  <jay@gnu.org>
882         * find/parser.c (parse_time): Once we have determined the
883         comparison type, restore the original time argument since
884         get_relative_timestamp() also wants to see it.  This fixes
885         Savannah bug #20005.
887         * po/findutils.pot, ga.po, pt.po, tr.po, pl.po: updated from the TP
888         website.
890 2007-05-31  Jakub Bogusz <qboosh@pld-linux.org>  (trivial change)
892         * find/parser.c (parse_group): Correct typo in error message.
893         (check_path_safety): same
895 2007-05-27  James Youngman  <jay@gnu.org>
897         * import-gnulib.config (modules): Import sys_stat.
898         (gnulib_version): Update to 2007-05-26.  This fixes a compilation
899         error in stdlib.h with the DEC C compiler.  This fixes Savannah
900         bug# 19983.
902         * find/parser.c (safe_atoi): New function, like atoi, but which
903         calls error(1, ...) when the argument is invalid or out of range.
904         (parse_group): Use safe_atoi.
905         (insert_depthspec): Use safe_atoi
906         (parse_user): Use safe_atoi
908         * configure.in: Check for fabs in libm (fixing a compilation error
909         on Solaris).
911         * import-gnulib.config (modules): Import the wcwidth module to
912         provide it on those systems (such as BeOS) which lack it.
914         * find/pred.c (file_sparseness): If st_blocks is not present in
915         struct stat, the file has a sparseness of 1.0.
917         * doc/find.texi (Size Directives): Document the %S format
918         directive for -printf.
920         * find/pred.c (mode_to_filetype): Don't use S_IFSOCK on systems
921         which lack that macro.  POSIX systems are allowed to lack
922         sockets (it's an XSI extension).
923         (file_sparseness): If struct stat lacks st_blocks, assume all
924         files have a spearseness of 1.0.
926         * import-gnulib.config (modules): Import fchdir inorder to fix an
927         undefined-symbol error for fchdir on BeOS.
929 2007-05-26  James Youngman  <jay@gnu.org>
931         Code refactoring in locate.
932         * locate/locate.c (visit): New function, into which we factor out
933         the traversal of the inspector list.
934         (process_simple): Use visit().
935         (process_or): Use visit().
936         (process_and): Use visit().
938         Speed improvements in locate for unibyte locales.
939         * locate/locate.c (visit_substring_match_nocasefold_wide): Renamed
940         from visit_substring_match_nocasefold.
941         (visit_substring_match_casefold_wide): Renamed from
942         visit_substring_match_casefold.
943         (visit_substring_match_casefold_narrow): Special case of
944         visit_substring_match_casefold_wide which we use for unibyte
945         locales; we use strcasestr() rather than mbscasestr().
946         (visit_substring_match_nocasefold_narrow): Ditto, using strstr()
947         instead of mbsstr().
949         * find/parser.c (parse_gid): Return an explicit boolean constant
950         rather than automatically converting from a pointer, because the
951         gnulib substitute for bool (or _Bool) in c89 environments lacking
952         bool does not support that conversion.  One affected system is Sun
953         WorkShop Compilers 5.0 98/12/15 C 5.0 on Solaris 7.  This is
954         Savannah bug #19970, reported by Nelson Beebe.
955         (parse_inum): Ditto.
956         (parse_links): Ditto.
957         (parse_uid): Ditto.
958         (check_path_safety): declarations need to go before code, not
959         interspersed.  Move declaration of char* s.
961         * xargs/testsuite/xargs.posix/rc-125.exp: Explain Savannah bug
962         #19969.   This bug is not yet fixed.
964         * find/defs.h: #include <stdint_.h>, for uintmax_t.  This should
965         fix a compilation error on DEC C V5.9-005 on Digital UNIX V4.0F
966         (Rev. 1229).  This is Savannah bug #19965, reported by Nelson
967         Beebe.
969         * find/defs.h: Don't include <errno.h>, since it is not needed in
970         the header file itself.  The "extern int errno;" declaration is
971         now obsolete.
972         * find/parser.c: Include <errno.h>
973         * find/pred.c: Dito
974         * find/util.c: Ditto
976 2007-05-24  James Youngman  <jay@gnu.org>
978         * find/util.c (check_nofollow): If O_NOFOLLOW is defined but 0,
979         act as if it is undefined.  This should prevent a runtime
980         assertion failure on IRIX 6.5.  This fixes Savannah bug #19948,
981         reported by Nelson Beebe.
983         * m4/noreturn.m4: New file, testing for support of __attribute__
984         ((__noreturn__)).  Defines jy_AC_ATTRIBUTE_NORETURN and sets
985         HAVE_ATTRIBUTE_NORETURN.
986         * configure.in: Call jy_AC_ATTRIBUTE_NORETURN.
987         * find/defs.h (ATTRIBUTE_NORETURN): Define to nothing if
988         HAVE_ATTRIBUTE_NORETURN is not set in config.h.  This should fix a
989         compilation error with non-GCC compilers.   This is Savannah bug
990         #19967, reported by Nelson Beebe.
992         * configure.in (FINDLIBS): Update FINDLIBS to link against -lm for
993         modf.   This fixed a link error on HP-UX.   This fixes Savannah
994         bug #19966, reported by Nelson Beebe.
995         * find/Makefile.am (LDADD): Use @FINDLIBS@
997 2007-05-21  James Youngman  <jay@gnu.org>
999         Release 4.3.6.
1001         * build-aux/Makefile.am (EXTRA_DIST): Added man-lint.sh.
1003         * locate/locate.c (drop_privs): pass the correct list of groups to
1004         setgroups().  Previously, if root invoked locate, their group ID
1005         would have been set to a random value.  The same bug also caused
1006         an array overrun past the end of the local array groups[].  The
1007         variable which gets overwritten by the buffer overrun on x86 is
1008         'what'.  The value of that variable is always changed before it is
1009         used, and so I believe that this buffer overrun will not cause a
1010         crash.  The only effect of the bug therefore would be for locate
1011         to change group to a random group ID since groups[0] is
1012         uninitialised.  On my test system this random group ID is 0
1013         anyway.  The effect does not depend on any externally-controllable
1014         information, so it is unlikely this is exploitable.   This bug is
1015         detailed as bug# 19923.
1017 2007-05-19  James Youngman  <jay@gnu.org>
1019         * find/find.1: Spurious .R directives (.R is not a directive)
1020         should be .B.   This fixes Savannah bug #19871.
1021         * build-aux/man-lint.sh: New file; verifies that the specified
1022         manual pages do not provoke error messages from troff.  This is
1023         used to detect further occurrences of Savannah bug #19871.
1024         * find/Makefile.am (dist-hook): Run findutils-check-manpages,
1025         which invokes man-lint.sh.
1026         * locate/Makefile.am (dist-hook): ditto
1027         * xargs/Makefile.am (dist-hook): ditto
1029         * .cvsignore: Ignore ylwrap, which automake-1.10 wants us to have
1030         a copy of for some reason
1032         * import-gnulib.sh (main): New option -a which just runs the
1033         autotools without reimporting gnulib.
1035         * Makefile.am (jy-regex-fix): The previous explanatory comment
1036         refers to the jy-regex-fix target, not to dist-hook, so it has
1037         been moved.
1039 2007-05-08  James Youngman  <jay@gnu.org>
1041         * find/defs.h (struct predicate.args): str is now const.
1043         * find/parser.c (get_comp_type): get_comp_type now takes a const
1044         char* parameter.
1045         (get_num): ditto
1046         (get_relative_timestamp): ditto.  Also use collect_arg().
1047         (collect_arg_stat_info): New function; collects a command-line
1048         argument and returns its xstat information, in one go.
1049         error(1,...)  is called if the stat fails.
1050         (parse_anewer): Use collect_arg().
1051         (parse_cnewer): ditto
1052         (parse_fprint): ditto
1053         (parse_fstype): ditto
1054         (parse_group): ditto
1055         (parse_ilname): ditto
1056         (parse_iname): ditto
1057         (parse_iwholename): ditto
1058         (parse_lname): ditto
1059         (insert_depthspec): ditto
1060         (parse_name): ditto
1061         (parse_newer): ditto
1062         (parse_wholename): ditto
1063         (parse_perm): ditto
1064         (parse_regextype): ditto
1065         (insert_regex): ditto
1066         (parse_samefile): ditto
1067         (parse_used): ditto
1068         (parse_user): ditto
1069         (insert_type): ditto
1070         (parse_time): ditto
1071         (parse_size): When the size argument is invalid but consists only
1072         of a valid suffix char, avoid issuing an error message about a
1073         blank argument.  Append the suffix letter again.
1074         (parse_xdev, parse_ignore_race, parse_noignore_race, parse_warn,
1075         parse_xtype): Remove casts to void for some function parameters
1076         that were, in fact, used.
1078         * find/testsuite/find.gnu/fprint-unwritable.exp: new test
1079         * find/testsuite/find.gnu/fprint0_stdout.exp: new test
1080         * find/testsuite/find.gnu/fprint0_stdout.xo: new test
1081         * find/testsuite/find.gnu/mindepth-arg.exp: new test
1082         * find/testsuite/find.gnu/mindepth-arg.xo: new test
1083         * find/testsuite/find.gnu/mindepth-badarg.exp: new test
1084         * find/testsuite/find.gnu/print_stdout.exp: new test
1085         * find/testsuite/find.gnu/print_stdout.xo: new test
1086         * find/testsuite/find.gnu/samefile-missing.exp: new test
1087         * find/testsuite/find.gnu/samefile-p-brokenlink.exp: new test
1088         * find/testsuite/find.gnu/samefile-p-brokenlink.xo: new test
1089         * find/testsuite/find.gnu/used-invarg.exp: new test
1090         * find/testsuite/find.gnu/used-missing.exp: new test
1091         * find/testsuite/find.gnu/user-invalid.exp: new test
1092         * find/testsuite/find.posix/group-empty.exp: new test
1093         * find/testsuite/find.posix/group-missing.exp: new test
1094         * find/testsuite/find.posix/name-missing.exp: new test
1095         * find/testsuite/find.posix/size-invalid.exp: new test
1096         * find/testsuite/find.posix/size-missing.exp: new test
1097         * find/testsuite/find.posix/typearg.exp: new test
1098         * find/testsuite/find.posix/user-empty.exp: new test
1099         * find/testsuite/find.posix/user-missing.exp: new test
1101 2007-05-06  James Youngman  <jay@gnu.org>
1103         * find/tree.c: (costlookup): Added pred_fls to the optimiser's
1104         predicate cost lookup table.
1106         * lib/printquoted.c (print_quoted): Change return value from void
1107         to int, to allow the caller to detect failures.
1108         * lib/printquoted.h (print_quoted): Change declaration
1109         accordingly.
1111         * find/defs.h (struct format_val): Incldue a 'filename' member so
1112         that we can provide more useful error messages (e.g. when we fail
1113         to flush or close an output file).
1114         (nonfatal_file_error): declare new function.
1116         * find/util.c (traverse_tree): Utility function which calls a
1117         callback on every node of the parse tree.
1118         (flush_and_close_output_files): Flush all output streams.  Close
1119         all output files.  Report any errors.
1120         (cleanup): Use traverse_tree() to invoke
1121         complete_pending_execdirs().
1122         (report_file_err): refactored error reporting function, extracted
1123         from fatal_file_error.
1124         (nonfatal_file_error): New function.
1126         * find/pred.c (checked_fprintf): New function, which performa an
1127         fprinf(), and checkes the result.  If the operation resulted in an
1128         error, a nonfatal error message is issued.
1129         (checked_print_quoted): Ditto, for print_quoted rather than
1130         fprintf.
1131         (checked_fwrite): Ditto for fwrite instead of fprintf.
1132         (checked_fflush): Ditto for fflush
1133         (do_fprintf): Use the checked_*() functions rather than their
1134         direct counterparts, to ensure that I/O errors are detected.  This
1135         fixes Savannah bug #19416.
1136         (pred_fls): Use args.printf_vec instead of args.stream, which has
1137         now been removed.
1138         (pred_ls): just call pred_fls.
1139         (pred_fprint0): use args.printf_vec, instead of the now removed
1140         args.stream.
1141         (pred_print0): just call pred_fprint0
1143         * find/parser.c: (insert_fprintf): Make the caller collect the
1144         format argument from the argument list.
1145         (open_output_file): Enhance to set up defaults in
1146         our_pred->args.printf_vec as well as opening the output file.
1147         Also record the filename for possible later use in an error
1148         message.
1149         (collect_arg): Convenience function for collecting an argument
1150         from the argument list.
1151         (insert_fls): Refactored the body of parse_fls out so that
1152         parse_ls can use it.
1153         (parse_fls): call insert_fls.
1154         (parse_ls): ditto
1155         (parse_fprint): Instead of setting up our_pred->args.printf_vec
1156         manually, call open_output_file() to do it.
1157         (parse_print): Same, but by calling open_stdout().
1158         (insert_fprint): Make the caller collect the filename argument,
1159         and delegate the setup of our_pred->args.printf_vec to either
1160         open_output_file() (for parse_fprint and parse_fprint0) or
1161         open_stdout (parse_print0).
1162         (parse_fprint0): Use collect_arg().
1163         (parse_print0): Use insert_fprint(), just like parse_fprint0.
1164         (parse_printf): Use collect_arg().
1165         (parse_fprintf): Use collect_arg().
1167 2007-05-05  James Youngman  <jay@gnu.org>
1169         Release 4.3.5.
1171         * find/parser.c (parse_samefile): Hold a file descriptor open on
1172         the reference file in order to prevent pred_samefile getting
1173         fooled by inode reuse.  Pay attention to race conditions on
1174         systems lacking O_NOFOLLOW when the -P option is in force.  This
1175         fixes Savannah bug #19806.
1177         * find/defs.h (struct samefile_file_id): New struct, like dir_id
1178         but including a file descriptor on the reference file.
1180         * find/pred.c (pred_type): -type should return false if the file
1181         has mode 00000, as opposed to having an assertion failure.   This
1182         fixes Savannah bug #16378.
1184         * find/ftsfind.c (consider_visiting): Issue a warning message if
1185         none of the mode bits are set for a file (i.e. st_mode==00000).
1186         * find/util.c (get_statinfo): ditto
1187         * find/util.c (hook_fstatat): Introduced debug code (normally
1188         disabled) for testing Savannah bug #16378.
1190 2007-05-01  James Youngman  <jay@gnu.org>
1192         * find/find.c (wd_sanity_check): corrected the type of %ld fprintf
1193         arguments in error messages.
1194         * find/fstype.c: include "error.h" for the declaratio of error().
1195         * find/ftsfind.c: include "error.h" for the declaratio of
1196         error().  Include dircallback.h for the correct declararion of
1197         run_in_dir().
1198         * find/parser.c: include getdate.h (for declaration of getdate)
1199         and error.h (for the declaration of error).
1200         (find_parser): Removed unused variable p.
1201         * find/pred.c (pred_timewindow): Removed unused variable delta.
1202         (do_fprintf): Removed unused variable cc.
1203         * find/tree.c: Include error.h (for the declaration of error()).
1204         (build_expression_tree): removed sourious extra arguments in call
1205         to error().
1206         * find/util.c: include error.h.
1207         * lib/buildcmd.h (get_line_max): Comment out unused function.
1208         * lib/listfile.c: Include dircallback.h.
1209         * locate/code.c: Include errno.h, erorr.h, progname.h and
1210         xlloc.h.
1211         (inerr): New function for reporting read errors.
1212         (outerr): New function for reporting output errors.
1213         (main): Call inerror when fgets fails.  Call outerr when fwrite
1214         or putc or putw fails.
1215         * locate/frcode.c (put_short): Return boolean value indicating
1216         success.
1217         (outerr): New function for reporting write errors.
1218         (main): Call outerr if call to putc() or puts() or put_short()
1219         fails.
1220         * locate/locate.c (search_one_database): diagnose corruption if a
1221         traditional-style database is too short to include a complete
1222         bigram table.
1224 2007-04-30  James Youngman  <jay@gnu.org>
1226         * find/defs.h: Change all predicate functions to take a const
1227         char* argument as the pathname, not a char*.  Modify the parser
1228         table definition accordingly.
1229         * find/parser.c: Ditto
1230         * find/pred.c: Ditto
1231         * find/pred.c (do_fprintf): copy the pathname string for the %H
1232         and %h cases, since we can no longer modify the string in place.
1233         * lib/listfile.c (print_name, list_file,
1234         print_name_without_quoting, print_name_with_quoting): Use const
1235         char * param for pathname.
1236         * lib/listfile.h (list_file): Use const char * param for
1237         pathname.
1239 2007-04-29  James Youngman  <jay@gnu.org>
1241         * find/defs.h: Declare fatal_file_error(), a function for
1242         reporting immediately-fatal file errors, which appropriately
1243         quotes the file name.  The function does not return.  Also define
1244         ATTRIBUTE_NORETURN.  Record the currently-required quoting style
1245         in struct options.
1247         * find/find.c, find/ftsfind.c, find/parser.c, find/pred.c,
1248         find/util.c: Call fatal_file_error() for fatal file errors.  Use
1249         quotearg_n_style() to quote filenames which are used in error
1250         message that aren't fatal.  Use options.err_quoting_style as the
1251         quoting style.  This fixes Savannah bug #18203.
1252         * locate/locate.c: ditto
1253         * xargs/xargs.c: ditto
1255         * lib/listfile.c: To use alloca, just #include <alloca.h>.  Gnulib
1256         handles the rest.  Also these days, <stdlib.h> and <string.h> can
1257         just be included unconditionally.
1258         * lib/qmark.c: Fixed comment on first line describing the module.
1260 2007-04-29  Michael Haubenwallner <michael.haubenwallner@salomon.at> (Trivial Change)
1262         * find/defs.h (pred_open) Rename to pred_openparen to avoid
1263         problems with the macrtos which build the parser tabnles on
1264         platforms where 'open' is in fact a macro whcih expands to
1265         open64.   The problem was that token pasting put pred_open64 into
1266         the parser table, but the function was still defined as
1267         parse_open.   This fixes Savannah bug #19371.
1268         (pred_close): ditto
1269         * find/parser.c (parse_open, parse_close): ditto.  Also change
1270         repferences to pred_open and pred_close similarly.
1271         * find/parser.c (parse_openparen, parse_closeparen): ditto
1273 2007-04-28  James Youngman  <jay@gnu.org>
1275         * find/testsuite/find.gnu/deletedir.exp,
1276         find/testsuite/find.gnu/deletedir.xo: New test.
1277         * find/testsuite/find.gnu/deletefile.exp,
1278         find/testsuite/find.gnu/deletefile.xo: New test.
1279         * find/testsuite/Makefile.am: Distribute the new tests
1280         deletefile.exp and deletedir,exp, with their expected-output (.xo)
1281         files too.
1282         * find/testsuite/config/unix.exp (find_start): Add a new "setup"
1283         parameter called just before each time find is invoked.  This
1284         allows last-minute tasks to be performed.  This feature is
1285         essential for find commands that modify the filesystem, since
1286         otherwise we cannot use our strategy of invoking both binaries at
1287         each optimisation level.
1289         * find/util.c (optionh_stat, optionp_stat, optionl_stat): Assert
1290         that state.cwd_dir_fd is valid.
1292         * find/parser.c (parse_delete): Set need_stat to false, since we
1293         don't need the stat information in pred_delete.
1294         * find/pred.c (pred_delete): If unlinkat() with a zero flags
1295         parameter fails with errno==EISDIR, just try again with
1296         flags=AT_REMOVEDIR.  That way we normally avoid the cost of a
1297         stat.  If we happen to have the stat information to hand anyway,
1298         we make sure we get it right the first time.
1300         * lib/buildcmd.c (bc_init_controlinfo): Eliminate confusing extra
1301         variable arg_max.  Add return value
1302         BC_INIT_CANNOT_ACCOMODATE_HEADROOM for the case where the
1303         environment itself is not too large, but the required headroom
1304         cannot also be accomodated.  The caller now passes in the amount
1305         of headroom required.
1306         (bc_use_sensible_arg_max): Use the environment size consistently;
1307         this is accounted for already in posix_arg_size_max, so there is
1308         no need to re-measure the size of the environment.
1309         * lib/buildcmd.h: Define BC_INIT_CANNOT_ACCOMODATE_HEADROOM and
1310         add the headroom parameter to the prototype of bc_init_controlinfo().
1311         * xargs/xargs.c (main): Define XARGS_POSIX_HEADROOM as 2048 and
1312         use that symbolic value.  Pass XARGS_POSIX_HEADROOM to
1313         bc_init_controlinfo().  Handle the case where
1314         BC_INIT_CANNOT_ACCOMODATE_HEADROOM is returned by
1315         bc_init_controlinfo().
1316         * find/parser.c (new_insert_exec_ok): Pass the required headroom to
1317         bc_init_controlinfo() and handle the error return
1318         BC_INIT_CANNOT_ACCOMODATE_HEADROOM.
1320         * xargs/xargs.1: Correct the description of the default value and
1321         maximum value for the -s option of xargs.
1323         * xargs/xargs.c (main): Modify the assertions not to assume that
1324         bc_ctl.arg_max is 2KiB less than ARG_MAX, since sysconfig() may
1325         have returned a value for _SC_ARG_MAX which is greater.  For
1326         example, AIX 5.3 can do this.  This should fix Savannah bug
1327         #19391.
1329 2007-04-25  James Youngman  <jay@gnu.org>
1331         * find/tree.c (predlist_dump, predlist_merge_nosort): These
1332         functions were unused and commented out.  Removed.
1333         (mark_stat) No longer used.  Removed.
1334         (mark_type) No longer used.  Removed.
1336         * find/parser.c (new_insert_exec_ok): When checking for {} in the
1337         arguments to -exec..., use mbsstr() rather than strstr() in order
1338         to cope bettwe with multibyte locales.
1340         * lib/buildcmd.c: Don't define mbsstr() locally.  Instead, call
1341         gnulib's mbsstr().
1343 2007-04-24  James Youngman  <jay@gnu.org>
1345         * lib/buildcmd.c: Added some comments outlining how we might
1346         change the implementation to support figuring out the real ARG_MAX
1347         limit.
1349 2007-04-23  James Youngman  <jay@gnu.org>
1351         * find/defs.h (struct predicate_performance_info): New data
1352         structure for holding perofmance statistics.
1353         (struct predicate: include predicate_performance_info
1354         (apply_predicate): change from macro to function
1355         (pred_is): new macro, for predicate identity testing
1356         (enum DebugOption): Added DebugSuccessRates
1357         * find/find.1: Document option "-D rates" which turns on
1358         DebugSuccessRates.
1359         * doc/find.texi: ditto
1360         * find.c (main): Call show_success_rates() before exiting.
1361         (apply_predicate): remove the macro defintion, declare equivalent
1362         function in defs.h.
1363         * find/ftsfind.c (main): Call show_success_rates() before
1364         exiting.  Use apply_predicate().
1365         (show_outstanding_execdirs): use pred_is().
1369 2007-04-22  Eric Blake  <ebb9@byu.net>
1371         * xargs/xargs.c (main): Don't assume LINE_MAX exists (i.e. is
1372         #defined).
1374         * locate/updatedb.sh (PRUNEPATHS): Exclude /proc by default.
1376 2007-04-22  James Youngman  <jay@gnu.org>
1378         * doc/Makefile.am: When cross-compiling, 'make clean' should not
1379         delete doc/regexprops.texi, becaue we can't regenerate it.  Fixes
1380         Savannah bug #19658.
1382         * locate/Makefile.am (BUILT_SOURCES): Automatically generate
1383         dblocation.texi, which records the default database location.
1384         * doc/find.texi: Collect the default database location from
1385         ../locate/dblocation.texi, and use LOCATE_DB in various places.
1386         Document the fact that updatedb can generate slocate-compatible
1387         databases.  Document the --dbformat option of updatedb.
1388         * locate/frcode.c (main): Implemented the -S option which allows the
1389         generation of an slocate secure database.
1390         * locate/updatedb.sh: New option --dbformat which selects which
1391         database format to use.
1392         * locate/updatedb.1 (--dbformat): Document the new option.
1395         * find/testsuite/find.gnu/access.exp: fixed a typo which prevented
1396         the test correctly being skipped when run as root.   This re-fixes
1397         Savannah bug# 18414, I hope.
1399 2007-04-21  James Youngman  <jay@gnu.org>
1401         Release 4.3.4.
1403         * find/locate/locatedb.5: Clarifications to the description of the
1404         LOCATE02 format.  Organised the material under a number of
1405         headings.  Documented the slocate database format.
1407 2007-04-21  James Youngman  <jay@gnu.org>
1409         * find/testuite/Makefile.am (EXTRA_DIST_EXP): added
1410         find/testsuite/find.posix/sv-bug-19617.exp
1412 2007-04-20  Maxim V. Dziumanenko <dziumanenko@gmail.com>
1414         * po/uk.po: New Ukranian translation.
1415         * configure.in: Added "uk" for Ukranian.
1417 2007-04-19  Peter Breitenlohner <peb@mppmu.mpg.de> (Trivial change)
1419         * locate/bigram.c (main): Set the initial pathname to the empty
1420         string, to avoid decompression problems if the initial pathname
1421         begins with a space.  This fixes Savannah bug #19484.
1422         * locate/code.c (main): ditto
1424 2007-04-19  James Youngman  <jay@gnu.org>
1426         * locate/updatedb.1 (--help): Option name should be bold, not
1427         italic.
1429         * find/testsuite/find.gnu/execdir-hier.exp: Avoid running
1430         -execdir based tests if "." is on $PATH.  Fixes Savannah bug
1431         #19634.
1432         * find/testsuite/find.gnu/execdir-in-unreadable.exp: ditto
1434         * find/testsuite/config/unix.exp (touch): New procedure touch,
1435         replacing "exec touch" for greater efficiency.
1436         * find/testsuite/find.posix/depth1.exp: Change "exec touch" to
1437         "touch".
1438         * find/testsuite/find.posix/files-not-expressions1.exp: ditto
1439         * find/testsuite/find.posix/files-not-expressions2.exp: ditto
1440         * find/testsuite/find.posix/files-not-expressions3.exp: ditto
1441         * find/testsuite/find.posix/links.exp: ditto
1442         * find/testsuite/find.posix/perm-vanilla.exp: ditto
1443         * find/testsuite/find.posix/sv-bug-15235.exp: ditto
1444         * /find/testsuite/find.posix/sv-bug-19613.exp: ditto
1446         * find/testsuite/find.gnu/access.exp: Fix savannah bug #18414 by
1447         skipping the test if the user can read any file (e.g. is root or
1448         is an Admin user under Cygwin).
1450 2007-04-17  James Youngman  <jay@gnu.org>
1452         * import-gnulib.config (gnulib_version): Use the 2007-04-17
1453         version of gnulib to fix a compilation error on Cygwin.  This
1454         fixes Savannah bug #19619.
1456         * find/testsuite/find.posix/sv-bug-19605.exp: New test, for
1457         Savannah bug #19605.
1458         * find/testsuite/find.posix/sv-bug-19617.exp: New test, for
1459         Savannah bug #19617.
1460         * find/ftsfind.c (consider_visiting): if fts_read() returns
1461         enf->fts_info==FTS_NS, check for and diagnose a symbolic link
1462         loop.  This fixes Savannah bugs #19605 and #19617.
1464         * find/find.c (process_path): collect the stat information for
1465         directories even if we already have the mode information, because
1466         we need to use the members st_nlink and st_rdev in for the leaf
1467         optimisation and loop detection, respectively.  This fixes
1468         Savannah bug #19616.
1470         * find/ftsfind.c (is_fts_enabled): Return a copy of ftsoptions,
1471         not a copy of the (uninitialised) input argument.  This fixes
1472         Savannah bug #19615.
1474         * find/ftsfind.c (consider_visiting): If fts_read() returned
1475         FTS_NS, then remember that the stat information is not valid, and
1476         therefore don't set state.have_type or state.have_stat.  This
1477         fixes Savannah bug #19613.
1479         * find/testsuite/find.posix/sv-bug-91613.exp,
1480         * find/testsuite/find.posix/sv-bug-91613.xo: New test for Savannah
1481         bug 19613 (assertion failure on symbolic link loop).
1483         * find/testsuite/config/unix.exp: Correctly diagnose a test case
1484         which fails because find was expected to fail and instead
1485         succeeded.
1486         * find/testsuite/find.gnu/exec-many-rtn-failure.exp: The child
1487         process in this test should return non-zero, not zero.  Therefore
1488         run "false" instead of "true".
1490 2007-04-15  James Youngman  <jay@gnu.org>
1492         Release 4.3.3.
1494         * find/find.1: "-printf %b": blocks are 512 bytes.   Fixes
1495         Savannah bug #19596.
1497         * doc/Makefile.am (regexprops.texi): Do not use $(RM) because many
1498         versions od make do not set it, and so it expands to nothing.
1499         This avoids suprious emission of the regexprops.texi file to stdout.
1501         * find/find.c (main, safely_chdir_lstat, safely_chdir_nofollow):
1502         Only use O_LARGEFILE if it is #defined (NetBSD-3.1 does not define
1503         it).
1504         * find/ftsfind.c (main): ditto
1505         * find/pred.c (pred_empty, prep_child_for_exec): ditto
1508         * import-gnulib.config: Update to gnuliv 2007-04-14.
1510         * lib/Makefile.am, import-gnulib.sh: Create lib/gnulib-version.c
1511         in import-gnulib.sh, not in lib/Makefile.
1513         * build-aux/Makefile.am: New file; distribute check-tstfiles.sh.
1515         * locate/Makefile.am: mkinstalldirs is now in build-aux.
1517         * doc/Makefile.am: We also need getdate.texi.
1519 2007-04-14  James Youngman  <jay@gnu.org>
1521         * doc/.cvsignore: Ignore getdate.texi
1523         * find/defs.h: #include "buildcmd.h" near the top of the file, not
1524         in the middle.
1526         * all: Pass O_LARGEFILE when opening directories.
1528         * all: Changes to allow us to use the FTS_CWDFD mode of fts().
1529         These are quite extensive changes, and are detailed below.
1531         * find/defs.h (struct exec_val): New member dirfd, the directory
1532         in which the exec should take place.
1533         (is_fts_enabled): Tell the caller which flags are passed to
1534         fts_open().
1535         (get_start_dirfd): New function.  Returns value of start_desc.
1536         (get_current_dirfd): New function.  Returns the fd of the
1537         directory fts is currently traversing.  If this is the current
1538         directory, AT_FDCWD is returned.
1539         (complete_pending_execdirs): takes a new argument, indicating
1540         where the exec is to take place.  Ugh.
1541         (get_info): the file name is taken from state.rel_pathname, so
1542         we don't need it as a function argument.
1543         (enum DebugOption): Added DebugExec ("-D exec").
1544         (struct state): Added cwd_dir_fd, the directory we are examining
1545         with fts().  If fts() is not in use, this is AT_FDCWD.  Also added
1546         execdirs_outstanding, which is a boolean which tells us if there
1547         are any not-yet-execed -execdir or -okdir actions (with +).  This
1548         is not really used yet.
1549         * find/ftsfind.c (set_close_on_exec): New function.
1550         (get_current_dirfd): Return an fd open on the directory that fts()
1551         is currently examining.
1552         (left_dir): Signal that our previous ides of which dirctory fts is
1553         searching is now out of date.
1554         (inside_dir): Indicate which directory fts is now searching.
1555         (complete_execdirs_cb): Callback for run_in_dir() to complete
1556         pending execdirs in this directory.
1557         (show_outstanding_execdirs): Supports "-D exec"
1558         consider_visiting(): Do not allow building-up of pending execdirs,
1559         as a workaround to Savannah bug #18466.
1560         (ftsoptions): Make this a static module variable.
1561         * find/parser.c (insert_exec_ok): New parameter describing which
1562         directory the exec should occur in.
1563         (parse_version): for FTS, add a list of options being used.
1564         * find/pred.c (pred_and, pred_comma): No need to pass the relative
1565         path name to get_info(), it can pull it from state.rel_pathname.
1566         (pred_delete): use unlinkat().
1567         (pred_empty): use openat().
1568         (new_impl_pred_exec): Accept an fd parameter describing where the
1569         exec is to take place.
1570         (pred_executable, pred_writable, pred_readable): Use run_in_dir()
1571         to ensure that access() is called in a working directory which is
1572         suitable for the pathname we pass in.
1573         (prep_child_for_exec): In the child process, change to the
1574         appropriate directory becore the exec().
1575         * find/util.c (debugassoc): Support "-D exec".
1576         (get_info): No longer need to pass the relative path to
1577         get_statinfo().
1578         (do_complete_pending_execdirs): Refactored body of what used to be
1579         complete_pending_execdirs().
1580         (complete_pending_execdirs): Pull body out into
1581         do_complete_pending_execdirs() and call that only if there is work
1582         to do.
1583         (fallback_stat, optionh_stat, optionp_stat, optionl_stat): Use fstatat().
1584         (get_start_dirfd): New access function for starting_desc.
1585         * find/testsuite/find.gnu/execdir-hier.exp: New test
1586         * find/testsuite/find.gnu/execdir-hier.xo: Expected outut for new test
1587         * lib/dircallback.c, lib/dircallback.h: New function,
1588         run_in_dir(), which runs a callback function in a specified
1589         directory.
1590         * lib/listfile.c: Use run_in_dir() to call readlink() in the right
1591         directory.
1592         (get_link_name_at): Call get_link_name_cb via run_in_dir.
1593         (get_link_name_cb): New callback function, wrappting
1594         get_link_name().
1596         * find/testsuite/find.gnu/execdir-pwd.exp: Since we have disabled
1597         thebuilding-up of command lines for -execdir, Savannah bug #18466
1598         has been neutralised (but not fixed - we just don't allow the
1599         problem circumstance to occur).
1601 2007-04-09  James Youngman  <jay@gnu.org>
1603         * doc/find.texi: Change fully-specified @node directives to
1604         single-argument @node directives in order to accomodate the
1605         inclusion of getdate.texi.
1607         * doc/find.texi: Document -newerXY.
1609         * doc/find.texi (Security Considerations): updated to describe
1610         differences in the fts-based implementation.
1612         * find/find.1: Indicate that testing the birth time where this is
1613         not supported produces a negative result for files where the birth
1614         time is not known (or a fatal error if the file of interest is a
1615         reference file).
1617 2007-04-08  James Youngman  <jay@gnu.org>
1619         * configure.in: Set @AUXDIR@ (to the location of the build-aux
1620         directory).
1621         * build-aux/check-testfiles.sh: New script, which checks that all
1622         the DejaGnu test files have been included in the distribution and
1623         (more helpfully) lists any that are missing.
1624         * Makefile.am (findutils-check-testfiles): Use
1625         build-aux/check-testfiles.sh.
1626         * locate/testsuite/Makefile.am (EXTRA_DIST_EXP): distribute
1627         locate/testsuite/locate.gnu/sv-bug-14535.exp.
1629         * config.rpath, depcomp, missing: Moved into build-aux/.
1630         * configure.in(AC_CONFIG_AUX_DIR): Find aux files in $SRCDIR/build-aux,
1631         not in $SRCDIR.
1633 2007-03-31  James Youngman  <jay@gnu.org>
1635         * find/tree.c (build_expression_tree): Issue more specific error
1636         messages; distinguish the case where the predicate is invalid from
1637         the cases where a required argument is missing, and a supplied
1638         argument is invalid.
1640         * import-gnulib.config (gnulib_version): Update to 2007-03-30
1641         version of gnulib.
1643 2007-03-28  James Youngman  <jay@gnu.org>
1645         * find/defs.h (set_stat_placeholders): utility function for
1646         initialising the sturct stat fields that NetBSD doesn't always set
1647         (like st_birthtime where the file is on a filesystem not
1648         supporting birthtime).
1649         * find/util.c: set_stat_placeholders(): new function
1650         (get_statinfo): Call set_stat_placeholders().
1651         (optionh_stat, optionl_stat, optionp_stat): ditto
1652         * find/find.c (main, wd_sanity_check, safely_chdir_lstat,
1653         process_dir): use set_stat_placeholders().
1654         * find/parser.c (parse_anewer, parse_cnewer, parse_newer,
1655         parse_newerXY): ditto.
1656         (get_stat_Ytime): Support birth time ('B').
1657         (parse_newerXY): Support st_birthtime.
1658         * find/fstype.c (set_fstype_devno): Use set_stat_placeholders().
1659         * find/pred.c (pred_xtype): Use set_stat_placeholders().
1660         (pred_newerXY): Support birth time.
1661         (pred_fprintf, format_date): ditto ("%Bx").
1663 2007-03-25  James Youngman  <jay@gnu.org>
1665         * xargs/xargs.c (main): For "xargs --show-limits" where stdin is a
1666         terminal, warn the user that the program specified (or /bin/echo)
1667         will be run at least once, if that is what will happen.
1669 2007-03-24  James Youngman  <jay@gnu.org>
1671         * import-gnulib.sh: Added option -d, allowing the user to use a
1672         local version of gnulib, perhaps because they have local changes.
1674 2007-03-13  James Youngman  <jay@gnu.org>
1676         * find/parser.c (parse_quit): Estimated success rate of -quit is
1677         100%.
1679 2007-03-08  James Youngman  <jay@gnu.org>
1681         * find/find.1 (TESTS): Document -newerXY, indicate that reference
1682         files are only examined once.
1683         (HISTORY): Indicate when various features were added
1684         (BUGS): Indicate that -ok ignores LC_COLLATE.
1686 2007-03-07  James Youngman  <jay@gnu.org>
1688         * import-gnulib.config: (gnulib_version): Use gnulib version
1689         2007-03-05
1690         (modules): Added getdate
1692         * find/Makefile.am (LDADD): Added @LIB_CLOCK_GETTIME@ for
1693         clock_gettime(), if it is available.
1695         * find/defs.h: (enum xval): New enumeration, representing the
1696         value of X used in the -newerXY test.  It is stored in the reftime
1697         member of 'union args'.
1698         (struct predicate): reftime is also used by -newerXY.
1699         (enum arg_type): Added ARG_SPECIAL_PARSE for -newerXY, because the
1700         parsing function needs to look at the name of the test.
1701         (struct options): start_time is now a struct timespec, not a
1702         time_t.
1704         * find/parser.c: (parse_newerXY): New parsing function for
1705         -newerXY, a feature copied from FreeBSD (also present other BSD
1706         implementations too)
1707         (get_stat_Ytime): New function; returns st_atime, st_mtime or
1708         st_ctime from struct stat, as a timespec, as required according to
1709         the value of Y in -newerXY.
1710         (found_parser): Factored the tail out of find_parser.
1711         (find_parser): Moved tail into found_parser.  Add special handling
1712         for -newerXY.
1713         (do_parse_xmin): New argument xv, indicating the value to which
1714         predicate->reftime.xval should be set.
1715         (parse_amin): Pass XVAL_ATIME to do_parse_xmin.
1716         (parse_cmin): Pass XVAL_CTIME to do_parse_xmin.
1717         (parse_mmin): Pass XVAL_MTIME to do_parse_xmin.
1718         (parse_newer): Set args.reftime.xval to XVAL_MTIME.
1720         * find/pred.c (pred_table): added pred_XY.
1721         (pred_fls): options.start_time is now a struct timespec, so just
1722         pass the tv_sec member to list_file.
1723         (pred_ls): ditto
1724         (pred_newerXY): New function, implementing -newerXY.
1726         * find/tree.c (costlookup): pred_newerXY needs stat information.
1727         (build_expression_tree): For predicates of type ARG_SPECIAL_PARSE,
1728         pass them in the name of the predicate (that is, don't advance
1729         argc).
1731         * find/util.c (now): New function for setting options.start_time.
1732         Use nanoseconds where it is available.
1733         (set_option_defaults): Use now() rather than time().
1735 2007-03-03  James Youngman  <jay@gnu.org>
1737         * import-gnulib.sh: Pass --with-tests to gnulib-tool so that relevant
1738         gnulib unit tests are built and are run for "make check".
1740         * configure.in (AC_CONFIG_FILES): Add tests/Makefile (the makefile
1741         for the gnulib unit tests).
1743         * Makefile.am: Add 'tests' to SUBDIRS.
1745         * .cvsignore: Add 'tests'.
1747         * import-gnulib.config (modules): Also use Gnulib modules
1748         mbscasestr and mbsstr in order to perform correct string searching
1749         in multibyte strings, in order to fix Savannah bug #14535.
1751         * locate/testsuite/locate.gnu/sv-bug-14535.exp: new test case for
1752         Savannah bug #14535.
1754         * locale/locate.c (visit_substring_match_nocasefold): Use mbsstr
1755         rather than strstr, in order to correctly support multibyte
1756         strings.
1757         (visit_substring_match_casefold): Use mbscasestr rather than
1758         strstr in order to correctly support case-folding in a multibyte
1759         environment (e.g. with UTF-8 characters outside the normal ASCII
1760         range).  This fixes Savannah bug #14535.
1761         (struct casefolder): No longer needed, removed
1762         (visit_casefold): No longer needed, removed.
1763         (lc_strcpy): No longer needed, removed.
1764         (search_one_database): Removed redundant variable need_fold and
1765         the code which used to set it.  It had controlled the adding of
1766         the visitor function visit_casefold, but that function itself is
1767         no longer required.  Also there is now no need to pass in a
1768         lower-case argument to visit_substring_match_casefold, so don't
1769         pass that in the context argument.
1771         * locate/locate.c (usage): Fixed typo.
1773 2007-03-01  James Youngman  <jay@gnu.org>
1775         * doc/find.texi (Multiple Files): Document the construct
1776         -exec sh -c 'cmd "$@" final-args' {} + - fixing Savannah bug
1777         #18554.
1779 2007-02-28  James Youngman  <jay@gnu.org>
1781         * import-gnulib.config: New file.  Specifies which version of
1782         Gnulib we need to check out and build from.
1784         * import-gnulib.sh: Use import-gnulib.config.
1786         * README-CVS: Describe the new method of building from CVS.
1788         * lib/gnulib-version.h, lib/gnulib-version.sh: New files; code for
1789         reporting which version of Gnulib we built findutils from.
1791         * lib/Makefile.am: Build gnulib-version.c out of
1792         ./gnulib-version.config by using lib/gnulib-version.sh.
1794         * Makefile.am: Ship import-gnulib.config and import-gnulib.sh.
1796         * .cvsignore: Ignore gnulib-cvs
1798         * lib/.cvsignore: Ignore gnulib-version.c
1800         * find/parser.c, locate/code.c, locate/locate.c, xargs/xargs.c:
1801         Report which version of Gnulib we were built from.
1803 2007-02-25  James Youngman  <jay@gnu.org>
1805         * find/find.c (process_dir): Removed duplicated (shadow)
1806         declaration of did_stat.  Assert that we did not use subdirs_left
1807         if subdirs_unreliable is true.
1809         * find/parser.c (parse_size): Removed unused variable rate.
1810         (parse_time): Removed unused variable num_days_approx.
1811         (get_num): Removed unused variables ok and suffixes.
1813         * find/pred.c (do_fprintf): Indicate that the function needs a
1814         return value (referring to Savannah bug #19146).
1816         * find/tree.c (predlist_dump): Commented out unused function
1817         (predlist_merge_nosort): Commented out unused function
1818         (getrate): Returns type is float, so return 1.0f not 1.0.
1819         (calculate_derived_rates): Removed unused variable rate.  Use a
1820         switch statement rater than ifs.
1822         * find/util.c (usage): Removed unused variable i.
1824         * lib/buildcmd.c (bc_do_insert): Removed unused variable
1825         need_prefix.
1826         (bc_init_controlinfo): annotate a line (with #warning) which is
1827         probably a bug.
1829         * locate/locate.c: #include <grp.h> for the benefit of the
1830         setgroups() call in drop_privs.
1831         (slocate_db_pathname): Commented out unused variable.
1832         (set_max_db_age): error command has no format directive, so
1833         remove the unused extra argument.
1834         (looking_at_slocate_db): Removed unused variables magic and
1835         lenwanted.  Fix bug where result is indeterminate (due to falling
1836         off the end of the function) if the first character is a nondigit.
1837         (search_one_database): Eliminate (spurious) compiler warning
1838         rlating to possible use before initialisation of slocate_seclevel.
1840         * xargs/xargs.c (get_char_oct_or_hex_escape): Eliminate spurious
1841         compiler warning on variable p.
1842         (main): Removed unused varible env_too_big
1845 2007-02-24  James Youngman  <jay@gnu.org>
1847         * find/parser.c (pred_sanity_check): define this function even for
1848         _NDEBUG, but do nothing in that case.
1849         (estimate_timestamp_success_rate): correct (invert) the sense of
1850         the subtraction used to find the file's age.
1852         * import-gnulib.sh (findutils_modules): Import Gnulib modules
1853         xstrtod and timespec.
1855         * find/parser.c (get_comp_type): Refactored out of get_num.
1856         (get_num): call get_comp_type to find the comparison type.
1857         (get_relative_timestamp): new function replacing get_num_days.
1858         (get_num_days): Remove.
1859         (do_parse_xmin): Support fractional arguments and
1860         nanosecond timestamps.
1861         (parse_used): ditto
1862         (parse_time): ditto
1864         * xargs/xargs.c (read_line): Give a warning message if a NUL is
1865         found in the input (this function is called only when -0 is not in
1866         effect).
1868         * xargs/xargs.c (nullwarning_given): New variable indicating if
1869         the NULL character warning had already been issued.
1871         * doc/find.texi (Multiple Files): Describe how trailing blanks are
1872         handled when -L is in effect.
1874         * xargs/xargs.c (read_line): Use an enum rather than
1875         preprocessor macro values for the lexer state.
1877         * lib/savedirinfo.c (free_dirinfo): Fixed memory leak (trivial
1878         patch from Supriya Kannery)
1880 2007-01-22  James Youngman  <jay@gnu.org>
1882         * .cvsignore (install-sh): Ignore, since the install-sh file is no
1883         longer held in the findutils CVS repository.
1885         * find/testsuite/config/unix.exp (find_start): allow a test to be
1886         skipped for either the old or the new find executable.
1887         * find/testsuite/find.gnu/execdir-pwd.exp,
1888         find/testsuite/Makefile.am:
1889         New test, covering Savannah bug #18466.  This test currently fails
1890         for the ftsfind binary and passes for the oldfind binary.  Due to
1891         a limitation in  the way that we perform the test, we can't tell
1892         the test suite to expect a failure in the new binary but not the
1893         old.  Therefore we skip the test for the old binary.
1895         * lib/regeprops.c (describe_regex_syntax): fixed a typo in the text
1896         * doc/find.texi (Multiple Files): fixed a typo
1898 2007-01-16  James Youngman  <jay@gnu.org>
1900         (ctime_format): format the time manually (rather than using ctime)
1901         in order to include the sub-second part of the time.
1902         (weekdays, months): new static variables used by ctime_format.
1903         (format_date): append a the sub-second part of the timestamp to
1904         the seconds part of date/time output.
1906 2007-01-15  James Youngman  <jay@gnu.org>
1908         * find/defs.h (time_val): define struct; use timespec to hold time
1909         in the 'reftime' member.
1910         (args): use struct timespec instead of time_t for predicates
1911         -newer, -anewer, -cnewer.  * find/parser.c (includes): include
1912         stat-time.h.
1913         (parse_anewer, parse_cnewer, parse_newer): use struct timespec to
1914         hold timestamps.  * find/pred.c (compare_ts): new function for
1915         comparing timestamps in struct timespec.
1916         (pred_anewer, pred_cnewer, pred_newer): use compare_ts() to
1917         compare timestamps (hence takinng acoung of sub-second
1918         granularity).
1919         * find/ftsfind.c: Various improvements to comments.
1920         (is_fts_enabled): Newline before function name to comply with GNU
1921         coding standard.
1923 2007-01-13  James Youngman  <jay@gnu.org>
1925         * lib/regexprops.c (describe_regex_syntax): fixed typo
1927         * xargs/xargs.c (read_line): Fixed Savannah bug# 18714; VT and FF
1928         are not separators, according to POSIX (in the POSIX locale).
1930         * xargs/testsuite/Makefile.am,
1931           xargs/testsuite/input/formfeeds.xi,
1932           xargs/testsuite/input/verticaltabs.xi,
1933           xargs/testsuite/xargs.posix/sv-bug-18714.exp,
1934           xargs/testsuite/xargs.posix/sv-bug-18714.xo,
1935           xargs/testsuite/xargs.posix/sv-bug-18714b.exp,
1936           xargs/testsuite/xargs.posix/sv-bug-18714b.xo: Tests for Savannah
1937           bug #18714.
1939         * xargs/xargs.c (usage): Removed suprious "[" in --help output
1940         (fixes Savannah bug #18384).
1942         * locate/locate.c: Implement the option --max-database-age.
1943         (main) Accept the option.
1944         (set_max_db_age): Parse the argument.
1946         * locate/locate.c (dolocate): If the database is more than N days
1947         old, indicate its actual age in the warning message we produce.
1949         * locate/locate.1, docs/find.texi: Document --max-database-age
1951         * THANKS: Thank Dean Gaudet for the idea of -sparse.
1953         * po/findutils.pot: Updated from Translation Project
1955         * po/ga.po, po/pl.po, po/nl.po, po/tr.po, po/hu.po: Updated from
1956         the Translation Project
1958 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1960         * doc/find.texi: Fix some typos. (trivial change)
1962 2007-01-07  James Youngman  <jay@gnu.org>
1964         * find/parser.c (parse_perm), find/testsuite/find.gnu/perm000.exp,
1965           find/testsuite/find.gnu/perm000.xo: -perm /000 is now quivalent
1966           to -perm -000, as dscussed in Savannah bug #14748.  The warning
1967           message we issue when the user does this now explains that the
1968           defintion changed as we promised it would in 2005.
1970         * xargs/xargs.c (read_line): Correctly handle quoted empty
1971         arguments occurring first or last on a line (by adding an empty
1972         argument to the output).  Fixes Savannah bug #18713.
1974         * xargs/testsuite/xargs.sysv/sv-bug-18713.exp,
1975         xargs/testsuite/xargs.sysv/sv-bug-18713.xo,
1976         xargs/testsuite/input/empty.xi: Test case for Savannah bug #18713.
1979 2006-12-29  James Youngman  <jay@gnu.org>
1981         * find/testsuite/config/unix.exp:
1982         Verify that find_start is invoked with wither a p (pass) or an f
1983         (fail) argument.
1985         * lib/listfile.c, lib/listfile.h:
1986         define find_blocksize() and provide a declaration for get_link_name()
1988         * find/testsuite/config/unix.exp: Updated copyright years.
1990         * 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:
1991         Avoid tests using -execdir if $PATH contains a relative directory
1993         * find/parser.c:
1994         Also flag $PATH values containing relative directories as being dangerous.
1996         * find/parser.c, find/defs.h, find/util.c:
1997         Instead of selecting the old or new exec handling code with the NEW_EXEC macro, just use the new code all the time
1999         * locate/testsuite/config/unix.exp:
2000         Fixed Savannah bug #13252, test suite failure caused by the fact that 'file normalize' is not available in Tcl 8.3
2002         * NEWS, find/pred.c:
2003         Fixed Savannah bug #18433, compilation failure with configure --enable-debug
2005 2006-12-28  James Youngman  <jay@gnu.org>
2007         * NEWS: Document addition of %S.
2009         * find/defs.h, find/find.1, find/parser.c, find/pred.c:
2010         Implemented %S (sparseness) printf format, and general refactoring and cleanup of printf predicate
2012 2006-12-01  James Youngman  <jay@gnu.org>
2014         * NEWS, configure.in: Begin work on findutils 4.2.30
2016         * find/find.c:
2017         Fix compilation error for oldfind if --enable-debug was passed to configure
2019         * NEWS, configure.in: Prepare for work on findutils-4.3.3
2021 2006-11-25  James Youngman  <jay@gnu.org>
2023         Release 4.3.2.
2025         * find/testsuite/Makefile.am: Added test case for Savannah bug #17782
2027         * doc/textinfo.tex: Removed; we now use the version supplied
2028         by automake.
2030         * m4/mkinstalldirs.m4: Added this file.  It's an excerpt from an
2031         old version of gnulib's m4/nls.po file.  The current version of
2032         gnulib does not expand MKINSTALLDIRS, but gettext-0.14.6's version
2033         of po/Makefile.in.in expects it to be expanded.  This m4 file
2034         fills the gap.
2036 2006-11-20  James Youngman  <jay@gnu.org>
2038         * po/et.po, po/bg.po, po/pl.po, po/nl.po, po/tr.po: Updated
2039         translations for Bulgarian, Estonian, Dutch, Polish and Turkish.
2041 2006-11-08  James Youngman <jay@gnu.org>
2043         * find/testsuite/Makefile.am:
2044         Oops, indicate the right directory for the new test files
2046         * 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:
2047         Savannah bug#18222 - test case
2049         * ChangeLog, lib/buildcmd.c:
2050         Fixed Svannah bug #17782 ('./' prefix added at start of arg while it should be added at the start of the expansion of {})
2052         * find/ftsfind.c (process_all_startpoints): Set
2053         state.starting_path_length for every pathname argument.
2054         This fixes Savannah bug #18222.
2056         * find/pred.c (pred_prune): -prune should have an effect only if we are
2057          currently considering a directory (Savannah bug #15531).
2059 2006-10-15  James Youngman <jay@gnu.org>
2061         * lib/buildcmd.c: Fixed Savannah bug #17782, in which "find
2062         -execdir echo "foo {}" runs 'echo ./foo filename' instead of the
2063         correct command 'echo foo ./filename'.
2065         * po/hu.po, po/sl.po: Updated Hungarian and Slovenian po files
2067 2006-08-21  James Youngman <jay@gnu.org>
2069         * find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-17490.exp:
2070         Fixed Savannah bug #17490, which was a coiredump when -regex ZZZ was the final test on the command line
2072 2006-08-20  James Youngman <jay@gnu.org>
2074         * find/parser.c: Merged the fix for the trailing % in "find -printf".
2076 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
2078         Port recent fixes for symbolic modes involving X from gnulib,
2079         and clarify the documentation in this area.
2080         * doc/find.texi: Use "file mode bits" when talking about
2081         all the file mode bits (including setuid, setgid, and sticky),
2082         and "permissions" when talking only about permissions bits
2083         (read, write, execute/search).  Use "execute/search" to
2084         talk about the x bit, since it means both.  You do not need
2085         permission to the linked-to file to follow a symlink for
2086         syscalls like "stat", but you do need search permission for
2087         the directories you traverse.  Clarify the explanation of
2088         -perm.  Use "that" instead of "which" when "which" isn't
2089         quite correct English.
2090         (Mode Bits): Renamed from Permissions.  All uses changed.
2091         * doc/perm.texi: Sync from coreutils 6.0.
2092         * find/defs.h (struct perm_val.val): Now an array of two items,
2093         one for non-directories, and one for directories.  This is
2094         to handle symbolic modes like +X correctly.
2095         * find/parser.c (parse_perm): Likewise.  Also, adjust to
2096         latest gnulib interface for mode_adjust.
2097         * find/pred.c (pred_perm): Likewise.
2098         * find/testsuite/Makefile.am (EXTRA_DIST_XO): Add find.posix/perm-X.xo.
2099         (EXTRA_DIST_EXP): Add find.posix/perm-X.exp.
2100         * find/testsuite/find.posix/perm-X.exp: New file.
2101         * find/testsuite/find.posix/perm-X.so: New file.
2103 12006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
2105         Port to latest gnulib, and simplify the bootstrapping procedure.
2106         * intl: Remove this directory and everything in it.
2107         * depcomp, install-sh, missing, mkinstalldirs, doc/texinfo.tex:
2108         Remove these files from CVS, as they are now gotten from gnulib.
2109         * README-CVS: Don't recommend "autoreconf -i", as it doesn't work
2110         for us.
2111         * import-gnulib.sh (findutils_files): New var.  Grab this stuff
2112         from gnulib.
2113         (findutils_modules): Add fopen-safer; remove stdio-safer.  This
2114         adjusts to latest gnulib.
2115         (modules): Remove obsolete reference to intl_modules.
2116         * .cvsignore: Remove stamp-h; add stamp-h1.
2117         * doc/.cvsignore: Add regexprops.texi.
2118         * find/.cvsignore: Add oldfind.
2119         * lib/.cvsignore: Add .deps, regexprops.
2120         * m4/.cvsignore: Add Makefile.
2121         * po/.cvsignore: Add stamp-po.
2123 2006-08-19  James Youngman <jay@gnu.org>
2125         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp:
2126         Explicit checks for parefixes which are within range of a short, but outside the one-byte range
2128         * locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
2129         New file.
2131         * locate/testsuite/Makefile.am, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
2132         Patch from Tavis Ormandy; check frcode handles initial space end encodes paths with more than 2^16 characters in the common prefix (trivial change)
2134         * locate/frcode.c: Changes to avoid overflows
2136 2006-08-11  James Youngman <jay@gnu.org>
2138         * locate/frcode.c:
2139         Avoid producing an invalid database if the first item begins with a space
2141 2006-08-10  James Youngman <jay@gnu.org>
2143         * find/pred.c, import-gnulib.sh, lib/listfile.c:
2144         Updated callers of the gnnulib filemode module so that they work with the 2006-07-09 version of gnulib
2146         * config.rpath: Updated config.rpath from autotools
2148 2006-08-08  James Youngman <jay@gnu.org>
2150         * locate/locatedb.h:
2151         Automatically verify (at compile time) that the frcode datastream
2152         cannot get desynchronised.
2154         * find/ftsfind.c:
2155         Fixed Savannah bug #10494 (-maxdepth does not yield the same stat savinf in ftsfind as oldfind)
2157         * find/ftsfind.c: display fts_level for find -D search
2159         * find/util.c: Support find -D search
2161         * locate/locate.c:
2162         If the user specified -E but the database is an slocate database, do
2163         not produce a list of files they cannot stat.  Issue an error message
2164         explaining the problem.
2166         * locate/locate.c:
2167         Issue states messages in a way which indicates more clearly what's
2168         happening when the numbers are reduced because not every filename
2169         matched the pattern.
2171         * locate/locate.c: Better error checking in drop_privs().
2173 2006-08-07  James Youngman <jay@gnu.org>
2175         * NEWS, locate/locate.c, locate/locatedb.h:
2176         Added support for slocate database format
2178         * xargs/xargs.c:
2179         Removed unused code (tivial patch from Miloslav Trmac).
2181         * xargs/xargs.c: Removed unused code.
2183         * doc/find.texi:
2184         Clarify that the output format for locate -S differs from BSD's.
2186         * NEWS, find/find.1:
2187         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
2189         * NEWS: Typo in subsection header (* should be **).
2191         * NEWS, find/find.1:
2192         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
2194         * doc/find.texi: Fixed some clumsy phrasing
2196         * NEWS, configure.in:
2197         Now diverging again from the released tarball, so change once more to -CVS version number suffixes
2199 2006-08-06  James Youngman <jay@gnu.org>
2201         * locate/locate.c: Fixed a typo in a comment.
2203         * NEWS, configure.in: Moving on towards 4.3.2...
2205         Release 4.3.1.
2207         * find/testsuite/config/unix.exp:
2208         Check that we can see the find.o file in the right position relative
2209         to $base_dir to ensure that we are indeed testing the program we just built.
2211         * find/testsuite/config/unix.exp:
2212         Be more paranoid about whether we're really checking the right version
2213         of find.
2215         * NEWS, configure.in: Prepare for release of 4.3.1
2217         * doc/find.texi: Document the -O and -D options
2219         * find/defs.h, find/find.1, find/util.c:
2220         'find -D help' now explains the available debugging options
2222         * 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:
2223         Make dist changed all the po files again
2225 2006-08-05  James Youngman <jay@gnu.org>
2227         * NEWS: Described more changes in 4.3.1.
2229         * locate/testsuite/config/unix.exp:
2230         Set the  environment variable so that updatedb knows where to find it; it's not in BINDIR yet during 'make check'
2232         * 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:
2233         Make dist changed all the po files again :)
2235         * po/et.po, po/vi.po: UPdated the Estonian and Vietnamese translations
2237         * NEWS, configure.in: Prepare for release of findutils-4.2.28
2239         * 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:
2240         Make dist changed all the po files again :)
2242         * configure.in: Added Bulgarian translation.
2244         * po/bg.po: Include Bulgarian translation
2246         * configure.in: Added Bulgarian translation.
2248         * po/et.po, po/vi.po: Updated Estonian and Vietnamese translations
2250         * NEWS: Removed spurious comma.
2252         * NEWS: Listed the updated translations.
2254         * find/parser.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
2255         Fixed Savannah bug#16738, find does not subtract environment size in find .. -exec {} +
2257         * NEWS: Updated the list of bugfixes etc.
2259 2006-06-15  James Youngman <jay@gnu.org>
2261         * NEWS: Described recent changes
2263         * configure.in: fix to how we invoke the gnulib regex module
2265         * find/find.1:
2266         Savannah bug #16269: avoid confusion over what type of quotes to use
2267         in an example.
2269         * find/parser.c: Option -nowarn should not itself produce a warning
2271         * find/defs.h: Remoevd useless declaration of last_pred
2273 2006-06-14  James Youngman <jay@gnu.org>
2275         * 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:
2276         Updated translation files ga pl sv tr nl ca vi bg fr
2278         * locate/updatedb.sh:
2279         Fixed Savannah bug #16579 (su false should be su -c false)
2281 2006-04-01  James Youngman <jay@gnu.org>
2283         * find/find.c:
2284         Fixed Savannah bug #15800: "Hard link count is wrong" reports wrong
2285         directory name.
2287 2006-03-31  James Youngman <jay@gnu.org>
2289         * po/hu.po: Updated Hungarian translation
2291 2006-01-04  James Youngman <jay@gnu.org>
2293         * find/testsuite/find.posix/sizetype.exp, find/testsuite/find.posix/sizetype.xo, find/testsuite/find.posix/typesize.exp, find/testsuite/find.posix/typesize.xo:
2294         Additional tests for -type -size and -size -type
2296         * 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:
2297         Initial implementation of a cost-based optimiser
2299 2005-12-23  James Youngman <jay@gnu.org>
2301         * find/parser.c: Refactor of parse_[acm]time
2303         * find/defs.h, find/find.c, find/finddata.c, find/ftsfind.c, find/tree.c, find/util.c:
2304         last_pred can be a static in tree.c rather than a global variable
2306         * find/tree.c, find/finddata.c:
2307         Moved some global data out of finddata.o and into static variables in tree.c
2309         * 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:
2310         Fixed many compilation warnings
2312         * find/find.c, find/ftsfind.c, find/util.c:
2313         Evaluating the predicates can change the contents of the data structure (for example to add another exec item)
2315         * find/defs.h, find/find.c, find/ftsfind.c, find/tree.c, find/util.c:
2316         Re-factored a lot of common expression-handling code out of find.c and ftsfind.c, mainly into tree.c
2318         * find/find.c, find/ftsfind.c, find/tree.c:
2319         Savannah bug #15271: more helpful error messages for cases where there is a missing expression
2321 2005-12-20  James Youngman <jay@gnu.org>
2323         * 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:
2324         Savannah bug #15195: more helpful error messages for 'find . ( )' or 'find . \!'
2326         * ChangeLog: Added entries for recent changes.
2328         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/find.posix/bracket-depth.exp, find/util.c:
2329         Further fix to bug# 15235: a leading comma is a filename not an expression
2331         * find/defs.h, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.posix/empty-parens.exp, find/tree.c:
2332         Accept 'find ( -depth )' but reject 'find ( )'
2334         * 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:
2335         did make dist
2337         * find/testsuite/find.gnu/delete.exp:
2338         Use the new find program, and the new way of locating it (/ instead of )
2340         * find/testsuite/Makefile.am: Added bracket-depth.exp.
2342         * NEWS, configure.in: We have moved on from 4.3.0
2344         * 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:
2345         Avoid getting confused by filename arguments of which the first
2346         character looks like a predicate, for example ',x' or '!x' or
2347         '(x' (Savannah bug #15235).
2349 2005-12-20  James Youngman <jay@gnu.org>
2351         * find/defs.h, find/find.c, find/ftsfind.c,
2352         find/testsuite/find.posix/bracket-depth.exp, find/util.c: Further
2353         fix to bug# 15235: a leading comma is a filename not an expression
2355         * find/defs.h, find/parser.c, find/testsuite/Makefile.am,
2356         find/testsuite/find.posix/empty-parens.exp, find/tree.c: Accept
2357         'find ( -depth )' but reject 'find ( )'
2359         * find/testsuite/find.gnu/delete.exp: Use the new find program,
2360         and the new way of locating it ($OLDFIND/$FTSFIND instead of $FIND)
2362         * find/testsuite/Makefile.am: Added bracket-depth.exp.
2364         * NEWS, configure.in: We have moved on from 4.3.0
2366         * find/defs.h, find/find.c, find/ftsfind.c,
2367         find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
2368         find/testsuite/find.posix/files-not-expressions1.exp,
2369         find/testsuite/find.posix/files-not-expressions1.xo,
2370         find/testsuite/find.posix/files-not-expressions2.exp,
2371         find/testsuite/find.posix/files-not-expressions2.xo,
2372         find/testsuite/find.posix/files-not-expressions3.exp,
2373         find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
2374         Avoid getting confused by filename arguments of which the first
2375         character looks like a predicate, for example ',x' or '!x' or '(x'
2376         (Savannah bug #15235).
2378 2005-12-19  James Youngman <jay@gnu.org>
2380         * find/testsuite/config/unix.exp:
2381         Run every test twice, once with the old (non-fts) binary and once with
2382         the new (fts-enabled) binary.
2384 2005-12-19 Eric Blake <ebb9@byu.net>
2386         * find/testsuite/Makefile.am,
2387         find/testsuite/find.posix/sv-bug-15235.xo,
2388         find/testsuite/find.posix/sv-bug-15235.exp: New tests for Savannah
2389         bug 15235.
2391         * NEWS, find/find.1, doc/find.texi (Invoking find): Document bug
2392         fix for Savannah bug 15235.
2394 2005-12-16  James Youngman <jay@gnu.org>
2396         * xargs/xargs.1, xargs/xargs.c: Fixed bug# 15211, that xargs
2397         --show-limits is not documented in the manpage or in the usage
2398         message
2400 2005-12-12  James Youngman <jay@gnu.org>
2402         Release 4.3.0.
2404         * find/testsuite/find.gnu/access.exp:
2405         Don't leave junk files lying around the place
2407         * README-CVS: Update the the instructions for getting gnulib; the
2408         CVS arrangements at Savannah have changed.
2410         * ChangeLog, NEWS, doc/find.texi, doc/perm.texi, find/defs.h, find/parser.c:
2411         Merged changes from 4.2.x branch again
2413         * NEWS, doc/find.texi, find/defs.h, find/find.c, find/ftsfind.c,
2414         find/parser.c, find/pred.c, find/util.c, lib/listfile.c,
2415         lib/listfile.h: Initial code to allow control over how -ls quote
2416         (or does not quote) control characters; not enabled yet
2418 2005-12-11  James Youngman <jay@gnu.org>
2420         * ChangeLog, THANKS, xargs/xargs.c:
2421         Fixed spelling errors in Bob Proulx's name.  Sorry, Bob.
2423 2005-12-10  James Youngman <jay@gnu.org>
2425         * doc/perm.texi:
2426         Aaron Hawley: Updated perm.texi from the coreutils distribution
2428         * find/parser.c:
2429         Avoid using entries which have the same name as POSIX library
2430         functions (fprintf, printf, exec) as the implementation is allowed to
2431         #define these.  That generates hard-to-grok compilation errors.
2433 2005-12-10  Andreas Metzler <gnu@downhill.at.eu.org>
2435         * ChangeLog, NEWS, configure.in, find/defs.h, find/parser.c:
2436         Applied patch from Andreas Metzler fixing Savannah bug #15181:
2437         implicit declaration of parse_openparen
2439 2005-12-08  James Youngman  <jay@gnu.org>
2441         * doc/find.texi: Typo and spelling corrections from Aaron Hawley
2443 2005-12-05  James Youngman  <jay@gnu.org>
2445         * Released findutils-4.2.27
2447 2005-12-05  James Youngman  <jay@gnu.org>
2449         * doc/find.texi, find/find.1, locate/locate.1, xargs/xargs.1:
2450         Savannah patch #3775 from Aaron Hawley: reconciling man pages
2451         differences; did not apply the patch, but resolved all the
2452         remaining issues manually by updating the documentation (mostly
2453         the Texinfo documentation, which was missing a number of specific
2454         technical statements about the behaviour of various options)
2456 2005-12-04  James Youngman  <jay@gnu.org>
2458         * doc/find.texi: Document --show-limits
2460         * xargs/xargs.c:
2461         Correctly display the size of the argument buffer we really allocated.
2463         * doc/find.texi, find/find.1, find/parser.c, find/pred.c, NEWS:
2464         Savannah bug #14748 (which this change does NOT fix): issue
2465         warning of future changes in the behaviour of -perm /000
2467 2005-11-30  James Youngman  <jay@gnu.org>
2469         * xargs/xargs.c:
2470         Typo correction from Benno Schulenberg <benno@nietvergeten.nl>
2471         (trivial change)
2473 2005-11-29  James Youngman  <jay@gnu.org>
2475         * xargs/xargs.c:
2476         Typo "Ilegal"; change to "Invalid" since this is not really illegal!
2477         Bug report by Primoz Peterlin.
2479         * lib/regexprops.c, xargs/xargs.c:
2480         Prefer the word 'Invalid' or the phrase 'not allowed' over
2481         'Illegal', as per the GNU coding standards, and as per the
2482         suggestion from Benno Schulenberg
2484 2005-11-24  James Youngman  <jay@gnu.org>
2486         * NEWS, lib/buildcmd.c, lib/buildcmd.h: Merge to trunk from 4.2.x fixes
2488         * lib/buildcmd.h:
2489         Deleted inaccurate comment about the default value of ctl->args_per_exec.
2491         * NEWS, lib/buildcmd.c, lib/buildcmd.h:
2492         Be more conservative about the total number of arguments we will
2493         allow (to avoid exec limits on Linux/PPC)
2495 2005-11-23  James Youngman  <jay@gnu.org>
2497         * NEWS: Bug #14921 has been fixed.
2499         * find/fstype.c:
2500         Savannah bug #14921: when a Linux bind filesystem is in use, find
2501         would expand '-printf %F' to 'none' if a bind mount targetted the same
2502         filesystem as the one containing the file to be described.
2504         * NEWS: Updated to describe recent changes
2506         * doc/find.texi, find/find.1: Documented find -printf %M
2508         * lib/buildcmd.c, xargs/testsuite/Makefile.am,
2509         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2510         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2511         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2512         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo:
2513         Ensure that the test suite still passes even if the current
2514         system's value of ARG_MAX is different from the development/test
2515         system
2517         * lib/buildcmd.c: reindent and untabify
2519         * configure.in: The CVS code is moving on from the previous release.
2521 2005-11-22  James Youngman  <jay@gnu.org>
2523         * ChangeLog: Updated with recent changes.
2525 2005-11-21  James Youngman  <jay@gnu.org>
2527         * locate/testsuite/config/unix.exp:
2528         Even if we expect locate to return a nonzero status, the test should
2529         still fail if updatedb fails!
2531         * locate/testsuite/locate.gnu/ignore_case2.exp:
2532         Set the current directory for updatedb.  This test case is supposed to
2533         fail because the filename is not matched, not because updatedb fails!
2535         * locate/updatedb.sh:
2536         Check the binaries actually exist in the place we expect.
2538 2005-11-20  James Youngman  <jay@gnu.org>
2540         * locate/locate.1, xargs/xargs.1: Escape '-' as '\-' where appropriate.
2542         * find/find.1:
2543         Escape '-' as '\-' where appropriate.   Fixes last part of bug #14556.
2545 2005-11-19  James Youngman  <jay@gnu.org>
2547         * doc/find.texi, find/find.1:
2548         Applied edited form of Andreas Metzler's -perm /mode documentation
2549         patch resolving Savannah bug #14619.
2551         * lib/extendbuf.c:
2552         In the success case, extendbuf() should preserve the previous value of
2553         errno.  Fixes Savannah bug #14842.
2555         * xargs/testsuite/Makefile.am: Added new test files
2557         * find/find.1:
2558         Correctly indicate the default regular expression syntax (fixes
2559         Savannah bug #14836).
2561         * NEWS, configure.in: Released findutils-4.2.26
2563         * ChangeLog, NEWS, lib/buildcmd.c,
2564         xargs/testsuite/inputs/16383-ys.xi,
2565         xargs/testsuite/inputs/32767-ys.xi,
2566         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2567         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2568         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2569         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: Applied
2570         bugfix from Jim Meyering (tiny change), where many short arguments
2571         would cause xargs (and probably find -exec .. {} +) to fail
2572         because execve() returns E2BIG, which we should avoid
2574         * xargs/testsuite/inputs/16383-ys.xi,
2575         xargs/testsuite/inputs/32767-ys.xi,
2576         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
2577         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
2578         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
2579         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: New file.
2581         * po/be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2582         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2583         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2584         ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po,
2585         zh_TW.po: Updated Portuguese .po file and did update-po
2587 2005-11-18  Jim Meyering  <jim@meyering.net> (tiny change)
2589         * lib/buildcmd.c (bc_push_arg): When exec'ing, don't exceed
2590         Linux's limit on the maximum number of command line arguments.
2592 2005-11-11  James Youngman  <jay@gnu.org>
2594         * NEWS, find/find.c, find/fstype.c: Savannah bug #14922: if we need the
2595         list of mounted filesystems but it is not available, exit fatally
2596         with a message.  If it is not available but we don't need it,
2597         there is no need for an error.
2599         * po/ro.po, ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po,
2600         zh_CN.po, zh_TW.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po,
2601         pt_BR.po, be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po,
2602         fi.po, findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po,
2603         it.po, ja.po: Updated Polish translation
2605 2005-10-31  James Youngman  <jay@gnu.org>
2607         * doc/find.texi:
2608         Removed redundant additional description of "--regextype".
2610 2005-10-08  James Youngman  <jay@gnu.org>
2612         * find/find.c, lib/regextype.c: Fixed Savannah bug #14616, which
2613         was that c99 code had crept in and it didn't compile on c89
2614         compilers
2616         * doc/find.texi: Savannah patch #4371 from Andreas Metzler; the
2617         argument of -I is mandatory
2619 2005-09-21  James Youngman  <jay@gnu.org>
2621         * xargs/xargs.1, xargs/xargs.c: Clarified the -E option
2623 2005-09-20  James Youngman  <jay@gnu.org>
2625         * NEWS, configure.in, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
2626         Documentation clarification: -L and -I take a mandatory argument;
2627         -l and -i do not
2629 2005-09-17  James Youngman  <jay@gnu.org>
2631         * xargs/xargs.c:
2632         Fixed Savannah bug #14550 - if environment is too large to allow
2633         exec() to work, we cannot even use "xargs --help".
2635         * find/find.1:
2636         Avoid the use of -perm +mode, using -perm /mode instead.  From comment
2637         by Andreas Metzler (though I didn't read the patch).
2639         * ChangeLog, doc/find.texi, find/find.1, xargs/xargs.1:
2640         Typo fix from A Costa (tiny change)
2642         * NEWS: Corrections for find manual page - symbolic permissions.
2644         * find/find.1:
2645         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
2646         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
2648 2005-09-17  A Costa <agcosta@gis.net>  (tiny change)
2650         docs/find.texi: Fixed typo
2651         find/find.1: Fixed typo
2652         xargs/xargs.1: Fixed typo
2654 2005-09-17  James Youngman  <jay@gnu.org>
2656         * NEWS: Corrections for find manual page - symbolic permissions.
2658         * find/find.1:
2659         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
2660         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
2662 2005-09-06  James Youngman  <jay@gnu.org>
2664         * xargs/xargs.c: Typo in "IEEE" in a comment.
2666 2005-09-04  James Youngman  <jay@gnu.org>
2668         * find/defs.h, find/find.c, find/parser.c, find/pred.c,
2669         Work around compilation failure with GCC 4 and AIX 5.1, in which
2670         open is #defined to open64
2672         * po/be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2673         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2674         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2675         ru.po, rw.po, sk.po, sl.po, sr.po, sv.po, tr.po, vi.po, zh_CN.po,
2676         zh_TW.po: Work around compilation failure with GCC 4 and AIX 5.1,
2677         in which open is #defined to open64
2679 2005-09-03  James Youngman  <jay@gnu.org>
2681         * find/testsuite/find.gnu/quit.exp: Fixed Savannah bug#14390, by
2682         avoiding an accidental assumption in quit.exp that directory
2683         entries are returned by readir() in any particular order
2685         * NEWS, configure.in, doc/find.texi, xargs/testsuite/Makefile.am,
2686         xargs/testsuite/inputs/helloworld.xi,
2687         xargs/testsuite/xargs.gnu/delim-o.exp,
2688         xargs/testsuite/xargs.gnu/delim-o.xo, xargs/xargs.1,
2689         xargs/xargs.c: Added the --delimiter option to xargs, resolving
2690         Savannah support request sr #102914
2692         * ChangeLog, NEWS, configure.in: Released findutils-4.2.25
2694         * po/sr.po, sv.po, tr.po, vi.po, zh_CN.po, zh_TW.po, sl.po, be.po,
2695         ca.po, da.po, de.po, el.po, eo.po, es.po, et.po, fi.po,
2696         findutils.pot, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, it.po,
2697         ja.po, ko.po, lg.po, ms.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
2698         ru.po, rw.po, sk.po: Did update-po
2700 2005-09-02  James Youngman  <jay@gnu.org>
2702         * doc/find.texi, find/find.1:
2703         Improved documentation in response to Savannah bug #14376
2705 2005-09-01  James Youngman  <jay@gnu.org>
2707         * po/ChangeLog, ChangeLog: Updated with recent changes.
2709         * locate/locate.c: Removed unused struct stringbuf.soffs.
2711         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
2713 2005-09-01  Jim Meyering  <jim@meyering.net>
2715         * locate/locate.c (struct stringbuf) [soffs]: Remove unused member.
2716         (locate): Remove initialization, too.
2718 2005-09-01  James Youngman  <jay@gnu.org>
2720         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
2722 2005-08-30  James Youngman  <jay@gnu.org>
2724         * find/defs.h, find/find.c, find/fstype.c, find/pred.c:
2725         Attempted fix for compilation when AFS is #defined
2727 2005-08-24  James Youngman  <jay@gnu.org>
2729         * po/sl.po: Updated from Translation Project
2731 2005-08-13  James Youngman  <jay@gnu.org>
2733         * find/find.1: Remind the user to quote the pattern argument to -iname.
2735 2005-08-12  James Youngman  <jay@gnu.org>
2737         * NEWS: Corrected typo.
2739 2005-08-11  James Youngman  <jay@gnu.org>
2741         * po/fr.po: Updated French translation and added new PO file zh_TW.po
2742         for Chinese (traditional)
2744 2005-08-09  James Youngman  <jay@gnu.org>
2746         * NEWS: Indicate that regexprops.texi is built on Cygin now that
2747         Savannah bug #14025 has been fixed.
2749         * lib/Makefile.am, lib/regexprops.c: Fixed compilation failure on
2750         Cygwin - Savannah Bug #14025 (tiny change, three lines), reported
2751         and fixed by Eric Blake
2753         * find/testsuite/Makefile.am,
2754         find/testsuite/find.posix/sv-bug-14070.exp,
2755         find/testsuite/find.posix/sv-bug-14070.xo: Added new test case for
2756         SourceForge bug #14070
2758         * find/testsuite/find.posix/sv-bug-14070.exp,
2759         find/testsuite/find.posix/sv-bug-14070.xo: New file.
2761         * find/defs.h, find/ftsfind.c, find/pred.c, find/util.c:
2762         Ensure we can still build with --enable-debug
2764         * find/testsuite/config/unix.exp,
2765         find/testsuite/find.gnu/execdir-one.exp,
2766         find/testsuite/find.gnu/execdir-root-only.exp,
2767         find/testsuite/find.gnu/sv-bug-12230.exp: If . is on $PATH,
2768         indicate that the -execdir tests cannot be carried out, as opposed
2769         to indicating that those tests fail
2771 2005-08-07  James Youngman  <jay@gnu.org>
2773         * NEWS: Indicated that some test suite files have been renamed.
2775         * xargs/testsuite/Makefile.am, xargs/testsuite/inputs/eof.xi,
2776         xargs/testsuite/inputs/eof1.xi,
2777         xargs/testsuite/xargs.sysv/eof.exp,
2778         xargs/testsuite/xargs.sysv/eof.xo,
2779         xargs/testsuite/xargs.sysv/eof1.exp,
2780         xargs/testsuite/xargs.sysv/eof1.xo,
2781         xargs/testsuite/xargs.posix/lc_l2.exp,
2782         xargs/testsuite/xargs.posix/lc_l2.xo,
2783         xargs/testsuite/xargs.sysv/l2.exp,
2784         xargs/testsuite/xargs.sysv/l2.xo,
2785         xargs/testsuite/xargs.sysv/lc_l2.exp,
2786         xargs/testsuite/xargs.sysv/lc_l2.xo,
2787         xargs/testsuite/xargs.posix/L2.exp,
2788         xargs/testsuite/xargs.posix/l2.exp,
2789         xargs/testsuite/xargs.posix/L2.xo,
2790         xargs/testsuite/xargs.posix/l2.xo,
2791         xargs/testsuite/xargs.posix/uc_L2.exp,
2792         xargs/testsuite/xargs.posix/uc_L2.xo: Work around problems with
2793         CVS clients on case-insentitive operating systems
2795         * debian/Changelog: Removed Changelog file since changelog is the
2796         one we should be using and having both files upsets Cygwin
2797         systems which cannot tell the dirrerence between changelog and
2798         Changelog
2800         * find/ftsfind.c:
2801         If DEBUG is defined, show the symbolic names fro fts_info values.
2803         * find/ftsfind.c: Added additional diagnostics.
2805 2005-08-02  James Youngman  <jay@gnu.org>
2807         * po/tr.po, vi.po:
2808         Updated Vietnamese and Turkish translations from Translation Project
2810         * 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:
2811         Did update-po
2813         * po/et.po, sk.po, ro.po:
2814         Updated Romanian, Slovak and Estonian translations from Translation Project
2816 2005-08-01  James Youngman  <jay@gnu.org>
2818         * ABOUT-NLS, INSTALL, Makefile.am, configure.in, depcomp,
2819         doc/texinfo.tex, install-sh, missing, mkinstalldirs: By adding the
2820         missing AM_GNU_GETTEXT_VERSION call, allowed autopoint to update
2821         those files of which it has updated copies.
2823         * po/Makevars.template, po/Makefile.in.in, po/findutils.pot:
2824         Using AM_GNU_GETTEXT_VERSION, allowed gettext to update the infrastructure
2826         * po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed:
2827         Files added by autopoint now that we are using AM_GNU_GETTEXT_VERSION
2829         * find/testsuite/Makefile.am: Added find.gnu./perm-slash.{exp,xo}.
2831         * po/nl.po: Updated Dutch translation from Translation Project
2833         * po/ga.po: Updated Irish translation from the Translation Project
2835         * po/da.po: Updated Danish translation from the Translation Project
2837         * po/ca.po: Updated Catalan translation from Translation Project
2839 2005-07-31  James Youngman  <jay@gnu.org>
2841         * find/testsuite/excuses.txt: We now have tests for -perm.
2843         * NEWS, configure.in, find/parser.c,
2844         find/testsuite/find.gnu/perm-slash.exp,
2845         find/testsuite/find.gnu/perm-slash.xo: Fixed bug which caused find
2846         -perm /440 to be treated the same as find -perm 440
2848         * find/testsuite/Makefile.am:
2849         Generic tests for -perm -NNN and -perm NNN
2851         * find/testsuite/excuses.txt: New file - list of test cases that
2852         still need to be written, along with excuses why they haven't been
2853         done yet
2855         * find/testsuite/find.posix/perm-vanilla.exp,
2856         find/testsuite/find.posix/perm-vanilla.xo: Generic tests for -perm
2857         -NNN and -perm NNN
2859         * find/testsuite/find.gnu/inum.exp:
2860         Ensure that the test would fail if -inum just always returned true
2862         * find/testsuite/Makefile.am, find/testsuite/find.gnu/ilname.exp,
2863         find/testsuite/find.gnu/ilname.xo,
2864         find/testsuite/find.gnu/inum.exp, find/testsuite/find.gnu/inum.xo,
2865         find/testsuite/find.gnu/lname.exp,
2866         find/testsuite/find.gnu/lname.xo,
2867         find/testsuite/find.gnu/xtype.exp,
2868         find/testsuite/find.gnu/xtype.xo,
2869         find/testsuite/find.posix/links.exp,
2870         find/testsuite/find.posix/links.xo: New test cases for -ilname,
2871         -inum, -lname, -xtype
2873         * find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
2874         find/testsuite/find.gnu/delete.xo,
2875         find/testsuite/find.gnu/iregex1.exp,
2876         find/testsuite/find.gnu/iregex1.xo,
2877         find/testsuite/find.gnu/regex1.exp,
2878         find/testsuite/find.gnu/regex1.xo,
2879         find/testsuite/find.gnu/regex2.exp,
2880         find/testsuite/find.gnu/regex2.xo,
2881         find/testsuite/find.gnu/samefile-copy.exp,
2882         find/testsuite/find.gnu/samefile-copy.xo,
2883         find/testsuite/find.gnu/samefile-link.exp,
2884         find/testsuite/find.gnu/samefile-link.xo,
2885         find/testsuite/find.gnu/samefile-same.exp,
2886         find/testsuite/find.gnu/samefile-same.xo,
2887         find/testsuite/find.gnu/samefile-symlink.exp,
2888         find/testsuite/find.gnu/samefile-symlink.xo: Further test cases
2890         * find/find.1: Indicate that -delete implies -depth (find.texi
2891         already mentioned this).
2893         * find/testsuite/Makefile.am:
2894         Brought the list of .exp and .xo files in Makefile.am into sync with
2895         the actual contents of the CVS repository.
2897         * find/testsuite/Makefile.am, find/testsuite/find.gnu/depth-d.exp,
2898         find/testsuite/find.gnu/depth-d.xo,
2899         find/testsuite/find.gnu/empty.exp,
2900         find/testsuite/find.gnu/empty.xo,
2901         find/testsuite/find.gnu/execdir-one.exp,
2902         find/testsuite/find.gnu/execdir-one.xo,
2903         find/testsuite/find.gnu/false.exp,
2904         find/testsuite/find.gnu/false.xo,
2905         find/testsuite/find.gnu/follow-basic.exp,
2906         find/testsuite/find.gnu/follow-basic.xo,
2907         find/testsuite/find.gnu/gnu-or.exp,
2908         find/testsuite/find.gnu/gnu-or.xo,
2909         find/testsuite/find.gnu/gnuand.exp,
2910         find/testsuite/find.gnu/gnuand.xo,
2911         find/testsuite/find.gnu/gnunot.exp,
2912         find/testsuite/find.gnu/gnunot.xo,
2913         find/testsuite/find.gnu/iname.exp,
2914         find/testsuite/find.gnu/iname.xo,
2915         find/testsuite/find.gnu/ipath.exp,
2916         find/testsuite/find.gnu/ipath.xo,
2917         find/testsuite/find.gnu/iwholename.exp,
2918         find/testsuite/find.gnu/iwholename.xo,
2919         find/testsuite/find.gnu/path.exp, find/testsuite/find.gnu/path.xo,
2920         find/testsuite/find.gnu/print0.exp,
2921         find/testsuite/find.gnu/print0.xo,
2922         find/testsuite/find.gnu/quit.exp, find/testsuite/find.gnu/quit.xo,
2923         find/testsuite/find.gnu/true.exp, find/testsuite/find.gnu/true.xo,
2924         find/testsuite/find.gnu/wholename.exp,
2925         find/testsuite/find.gnu/wholename.xo,
2926         find/testsuite/find.posix/and.exp,
2927         find/testsuite/find.posix/and.xo,
2928         find/testsuite/find.posix/exec-one.exp,
2929         find/testsuite/find.posix/exec-one.xo,
2930         find/testsuite/find.posix/grouping.exp,
2931         find/testsuite/find.posix/grouping.xo,
2932         find/testsuite/find.posix/name.exp,
2933         find/testsuite/find.posix/name.xo,
2934         find/testsuite/find.posix/posixnot.exp,
2935         find/testsuite/find.posix/posixnot.xo,
2936         find/testsuite/find.posix/prune.exp,
2937         find/testsuite/find.posix/prune.xo: Added new test cases for many
2938         of the actions and tests of find
2940         * find/find.c (default_prints):
2941         not a static function, so do not declare it as one.
2943         * m4/withfts.m4: Fixed underquoted definition of FIND_WITH_FTS.
2944         [this change is currently on a branch only]
2946 2005-07-30  James Youngman  <jay@gnu.org>
2948         * find/finddata.c, find/ftsfind.c, find/parser.c, find/pred.c,
2949         find/util.c, m4/Makefile.am, m4/withfts.m4: Initial attempt to
2950         convert find to use gnulib's fts()
2951         [this change is currently on a branch only]
2953         * find/finddata.c, find/ftsfind.c, m4/withfts.m4: New file.
2954         [this change is currently on a branch only]
2956         * NEWS, configure.in, find/Makefile.am, find/defs.h, find/find.c,
2957         import-gnulib.sh: Initial attempt to convert find to use gnulib's
2958         fts() [this change is currently on a branch only]
2960 2005-07-29  James Youngman  <jay@gnu.org>
2962         * NEWS, configure.in
2963         Prepared for the release of findutils-4.2.24
2965         * ChangeLog: Updated with recent changes.
2967         * NEWS, find/find.1, doc/find.texi:
2968         Indicate that -ok and -okdir redirect stdin from /dev/null.
2970         * NEWS: Explain the directory link count change more throroughly.
2972         * NEWS: Fixed bug #13973.
2974         * find/pred.c (pred_fprintf): Fix Savannah bug #13973: Modify the
2975         handling of -printf %Y so that it no longer modifies stat_buf
2977         * find/testsuite/find.gnu/printf-symlink.exp,
2978         find/testsuite/find.gnu/printf-symlink.xo: Detect Savannah bug
2979         #13973: pollution of stat_buf by the %Y directive (trivial change
2980         from Andreas Metzler)
2982         * INSTALL, depcomp, doc/texinfo.tex, install-sh, missing, mkinstalldirs:
2983         Updated auxilliary files from the automake-1.9 distribution
2985         * configure.in:
2986         Introduce new Automake conditional, CROSS_COMPILING, true when we are corss compiling
2988         * find/find.c:
2989         If we decline to follow a symbolic link due to the safety check, issue a more self-explanatory warning message
2991         * lib/Makefile.am: Don't build regexprops if we are cross compiling
2993         * doc/Makefile.am:
2994         Depend on the regex.h file rather than the 'regexprops' binary,
2995         because the header file will always exist even if we are doing "make
2996         dist".  Otherwise "make distcheck" fails because it tries to rebuild
2997         find.info while the source-directory is read-only.
2999 2005-07-28  James Youngman  <jay@gnu.org>
3001         * find/find.1:
3002         Say "other users" rather than "rest of the world" when talking about
3003         Unix permissions.  Fixes Savannah bug #4246.
3005 2005-07-27  James Youngman  <jay@gnu.org>
3007         * xargs/testsuite/Makefile.am: Added new test case 'childfail.exp'.
3009         * doc/find.texi:
3010         Updated the description of the safe-dir-change operation to reflect
3011         what find now does on systems that lack O_NOFOLLOW.
3013         * NEWS, find/parser.c: Indicate in the output of find --version if
3014         the leaf optimisation is enabled or not
3016         * find/find.c: Fixed typo.
3018         * find/find.c: If the link count of a directory starts off less
3019         than two, disable the leaf optimisation for this directory.
3021 2005-07-26  James Youngman  <jay@gnu.org>
3023         * lib/regexprops.c: Further small corrections from Karl.
3025         * doc/find.texi:
3026         Reordered the sections in the manual to put the "Common Tasks" and
3027         "Worked Examples" chapters together.
3029         * configure.in, find/find.c: Allow the leaf optimisation to be
3030         disabled by default with the configure option
3031         --disable-leaf-optimisation
3033         * find/find.c: Removed old code for antuqie version of savedir().
3035         * lib/regextype.c: Put the syntaxes in alphabetical order.
3037         * lib/regexprops.c: Karl made some more readability suggestions.
3039 2005-07-24  James Youngman  <jay@gnu.org>
3041         * doc/Makefile.am: If the regexprops program has changed we should
3042         re-run it, since it will probably now produce different output
3044         * lib/regextype.h:
3045         Allow the caller to detect if one regex type is identical to another.
3047         * configure.in:
3048         Define the preprocessor macro FINDUTILS for that code int he lib/
3049         directory can be slightly more reusable.
3051         * lib/regextype.c:
3052         Allow the caller to detect if one regex type is identical to another.
3054         * lib/regexprops.c:
3055         Made Texinfo style corrections suggested by Karl Berry.
3057 2005-07-22  James Youngman  <jay@gnu.org>
3059         * xargs/testsuite/xargs.posix/childfail.exp, xargs/xargs.c: Fix
3060         Savannah bug #13878, in which xargs deals incorrectly with child
3061         failure, returning 0 when it should return 123
3063 2005-07-17  James Youngman  <jay@gnu.org>
3065         * find/find.1: (tiny change) Corrections by Greg Wooledge
3067 2005-07-16  James Youngman  <jay@gnu.org>
3069         * doc/find.texi: Updates following comments by Dave Gilbert.
3071         * NEWS: Corrected a typo.
3073         * doc/find.texi:
3074         Added in the example about updating an aggregate timestamp file.
3076 2005-07-15  James Youngman  <jay@gnu.org>
3078         * po/da.po: Updated Danish translation from translation project
3080 2005-07-14  James Youngman  <jay@gnu.org>
3082         * NEWS, doc/Makefile.am, doc/find.texi, lib/Makefile.am,
3083         lib/regexprops.c, lib/regextype.c, lib/regextype.h: Added
3084         --regextype and -regextype options to locate and find
3085         respectively, and documented these
3087         * doc/find.texi: We use GNU Emacs regexps by default now.
3089         * doc/find.texi:
3090         We require GNU sort in order for locate to handle newlines correctly,
3091         not just GNU find.
3093 2005-07-10  James Youngman  <jay@gnu.org>
3095         * doc/find.texi:
3096         Applied several documentation improvement patches from Aaron Hawley
3098         * ChangeLog, NEWS: Updated with recent changes.
3100         * NEWS: Recent gnulib changed have fixed -iregex
3102         * doc/find.texi, xargs/xargs.1:
3103         Tiny patch from Andreas Metzler: xargs -I is like xargs -i, but the latter is deprecated
3105 2005-07-06  James Youngman  <jay@gnu.org>
3107         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
3108         Fixed Savannah bug #13650; programs run by -exec cannot read stdin
3110 2005-07-04  James Youngman  <jay@gnu.org>
3112         * NEWS: *** empty log message ***
3114         * doc/find.texi:
3115         Added a "Worked Examples" section.   It currently only contains a
3116         (long) example about deleting files.
3118         * .cvsignore: Some extra stuff to ignore.
3120 2005-07-03  James Youngman  <jay@gnu.org>
3122         * find/Makefile.am: Don't need regexprops.c really...
3124         * lib/regextype.c, lib/regextype.h:
3125         New files for selecting regex type based on a keyword
3127         * locate/locate.1: Documented the fact that we now use Emacs-style
3128         regexps, not POSIX EREs, for compatibility with find -regex.
3130         * lib/Makefile.am, locate/locate.c, doc/find.texi,
3131         find/Makefile.am, find/defs.h, find/find.1, find/find.c,
3132         find/parser.c: Fixed Savannah bug #13495: find now uses
3133         Emacs-style regexps by default
3135 2005-07-02  James Youngman  <jay@gnu.org>
3137         * configure.in, find/defs.h, find/fstype.c, find/parser.c,
3138         intl/dcigettext.c, lib/buildcmd.c, lib/listfile.c,
3139         lib/savedirinfo.c, locate/locate.c, xargs/xargs.c: Assume unistd.h
3140         is present - avoid using HAVE_UNISTD_H
3142 2005-07-01  Jim Meyering  <jim@meyering.net>
3144         With `-fprint F' or `-fprintf F', don't write diagnostics
3145         to F when stderr is closed.
3147         * find/parser.c: Include "stdio-safer.h".
3148         (open_output_file): Use fopen_safer, not fopen.
3149         * import-gnulib.sh (findutils_modules): Add stdio-safer.
3151 2005-07-01  James Youngman  <jay@gnu.org>
3153         * doc/find.texi:
3154         Aaron pointed out a potentially-confusing sentence.  I fixed it.
3156         * find/defs.h, find/find.1, find/find.c, find/parser.c,
3157         find/pred.c, find/util.c: Allow consistency-checking of the
3158         predicates, checking for example that actions all have side
3159         effects
3161 2005-06-29  James Youngman  <jay@gnu.org>
3163         * doc/find.texi: Applied patch from Aaron Hawley (Savannah patch
3164         #3751: Typos and small suggestions to find.texi)
3166 2005-06-27  James Youngman  <jay@gnu.org>
3168         * ChangeLog, locate/locate.c: Applied patch from Bas Van Gompel to
3169         move match counting into a (new) visitor function
3171         * NEWS, configure.in: No longer 4.2.23, as we're moving on now
3173 2005-06-24  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3175         * locate/locate.c (visit_count, visit_limit): New functions.
3176         (locate): Use visit_limit or visit_count. Simplify main loop.
3177         (main) Bail out early when limit is reached.
3179 2005-06-20  James Youngman  <jay@gnu.org>
3181         * xargs/xargs.c:
3182         Removed some code which had already been disabled via the preprocessor.
3184 2005-06-19  Dmitry V. Levin <ldv@altlinux.org>
3186         * lib/savedirinfo.c: Fix two compilation warnings (which would
3187         prevent compilation if "-Wall -Werror" is in effect).
3189 2005-06-19  James Youngman  <jay@gnu.org>
3191         * ChangeLog: Indicate that we made (are making) a release.
3193         * ChangeLog, NEWS, configure.in: Preparing to release 4.2.23
3195         * doc/find.texi: Fixed Texinfo syntax error in previous change
3197         * doc/find.texi, xargs/xargs.1:
3198         Document the fact that the -i and -L options are currently
3199         incompatible (Savannah bug 13041).
3201         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
3202         reject trailing slashes in updatedb's --prunepaths, bacsue these
3203         will never be matched
3205         * NEWS: Released findutils-4.2.23.
3207         * doc/find.texi, xargs/xargs.1:
3208         Document the fact that the -i and -L options are currently
3209         incompatible (Savannah bug 13041).
3211         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
3212         reject trailing slashes in updatedb's --prunepaths, because these
3213         will never be matched.
3215 2005-06-18  James Youngman  <jay@gnu.org>
3217         * po/ga.po, tr.po: Updated Irish and Turkish translations.
3219         * po/pl.po: Did update-po
3221         * po/pl.po:
3222         Updated Polish translation file from the Translation Project
3224         * 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:
3225         Did update-po
3227 2005-06-18  Martin Buchholz (trivial patch applied by James Youngman)
3229         * find/defs.h, find/find.c, find/parser.c, doc/find.texi: Fix
3230         typos/spelling errors (mostly in source code comments).
3232 2005-06-18  Dmitry V. Levin  <ldv@altlinux.org>
3234         Additional documentation tweaks for -execdir/-okdir actions.
3235         * find/parser.c (parse_help): Mention -execdir and -ordir options.
3236         * doc/find.texi, find/find.1: Additionally document new options.
3238 2005-06-12  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3240         * locate/locate.c: Implement --all (-A).
3242         * NEWS, doc/find.texi, locate/locate.1: Document locate --all (-A)
3244 2005-06-12  James Youngman  <jay@gnu.org>
3246         * find/find.c, NEWS:
3247         Savannah bug #13381 (Debian bug 313081): if we have O_NOFOLLOW,
3248         safely_chdir() does not need to call stat().  However, process_dir()
3249         used to rely on using that stat information.  To work around this
3250         problem, there is now an output parameter in safely_chdir() which
3251         indicates if the stat buffer is valid.
3252         This bug has possible security implications.
3254         * find/find.1, doc/find.texi:
3255         Applied patch from Andreas Metzler, improving the wording for the
3256         documentation of the %k and %b format directives.  This patch does
3257         not require a copyright assignment as it consists of several
3258         copies of the same small wording change.
3260 2005-06-11  James Youngman  <jay@gnu.org>
3262         * find/find.1: Corrected spelling error 'writeable' to 'writable'.
3264         * find/find.1, locate/locate.1:
3265         Fixed Savannah bug #13363, typos in manpages (trivial change)
3267 2005-06-10  James Youngman  <jay@gnu.org>
3269         * find/find.c, lib/savedirinfo.c, lib/savedirinfo.h: Switch to a
3270         new scheme for saving directory entry data which is extensible to
3271         allow additional data to be saved.
3273 2005-06-09  James Youngman  <jay@gnu.org>
3275         * locate/testsuite/config/unix.exp:
3276         Use the new normalize_dir procedure throughout.
3278         * locate/testsuite/config/unix.exp: Move the normalisation into a
3279         procedure.  Don't rely on the "file normalize" command being
3280         available (it's new in Tcl 8.4).
3282 2005-06-08  James Youngman  <jay@gnu.org>
3284         * ChangeLog, NEWS, configure.in: Updated for recent changes
3286         * doc/find.texi:
3287         Explain that you should put the argument of -name in quotes.
3289         * find/find.1:
3290         Added a new "NON-BUGS" section pointing out things that look like bugs
3291         but are caused by mistakes or misunderstandings.
3293         * doc/find.texi, locate/locate.1: Applied Bas van Gompel's patch
3294         which allows the database to be read from stdin.
3296         * locate/locate.c:
3297         Read the database in by using the "visitor" pattern.  Modified file
3298         header comment to indicate that we no longer use the efficient
3299         algorith described in ;login:.  Emit an error message if the
3300         LOCATE_PATH variable implies that we should read stdin twice.
3301         Most of this code is from Bas van Gompel.
3303         * AUTHORS: Credit Bas van Gompel for his work on locate.
3305         * lib/printquoted.h: Appled patch from Bas - fixing compiler warning.
3307 2005-06-07  James Youngman  <jay@gnu.org>
3309         * ChangeLog, NEWS, configure.in: Updates prior to release
3311         * config.rpath: Added file required for 'make dist'
3313         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
3314         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
3315         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3316         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3317         po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
3318         po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
3319         updated the po files for release
3321         * xargs/testsuite/Makefile.am:
3322         Added in all the test files from Dmitry V. Levin.
3324 2005-06-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3326         * NEWS, locate/locate.1, doc/find.texi: Document usage of `-'
3327         to refer to stdin in database-path for locate.
3328         * locate/locate.c: Change prototype for visitors and processors
3329         throughout. Move reading the database and generating base_name
3330         into visitors. Allow `-' to refer to stdin in database-path.
3332         * lib/printquoted.h: Include stdio.h.
3334 2005-06-07  James Youngman  <jay@gnu.org>
3336         * COPYING, debian/copyright, depcomp, doc/texinfo.tex,
3337         find/defs.h, find/find.c, find/fstype.c, find/parser.c,
3338         find/pred.c, find/testsuite/config/unix.exp, find/tree.c,
3339         find/util.c, import-gnulib.sh, intl/Makefile.in,
3340         intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
3341         intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
3342         intl/dngettext.c, intl/explodename.c, intl/finddomain.c,
3343         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
3344         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
3345         intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h,
3346         intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias,
3347         intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y,
3348         intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c,
3349         lib/buildcmd.c, lib/buildcmd.h, lib/extendbuf.c, lib/extendbuf.h,
3350         lib/forcefindlib.c, lib/listfile.c, lib/listfile.h,
3351         lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c,
3352         lib/printquoted.h, lib/qmark.c, lib/savedirinfo.c,
3353         lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c,
3354         locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c,
3355         locate/locatedb.h, locate/testsuite/config/unix.exp,
3356         locate/updatedb.sh, missing, po/fetch-po-files,
3357         xargs/testsuite/config/unix.exp, xargs/xargs.c:
3358         Updated the FSF's postal address
3360         * ChangeLog: Corrected Bas's email address.
3362         * locate/locate.c: Updated copyright years.
3364 2005-06-07  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3366          * locate/locate.c: Fold case once, only when needed.
3368 2005-06-07  James Youngman  <jay@gnu.org>
3370         * NEWS: Updated with recent changes.
3372         * mdate-sh: Use the mdate-sh from automake
3374         * find/parser.c, find/pred.c, find/tree.c, find/util.c,
3375         lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c,
3376         lib/listfile.h, locate/code.c, locate/locate.c, find/defs.h,
3377         find/find.c: Fix Savannah bug #13324: Fix compiler warnings for
3378         GCC-3.4
3380         * locate/locate.c:
3381         Fixed Savannah bug #13325: Quoting of output filenames in locate
3382         should match find.
3384         * find/parser.c:
3385         Fixed Savannah bug #13319: C9X-ism in parser.c (declaration after
3386         statements).
3388         * find/pred.c, lib/Makefile.am, lib/listfile.c, lib/nextelem.c,
3389         lib/printquoted.c, lib/printquoted.h, lib/qmark.c, NEWS,
3390         doc/find.texi, find/defs.h, find/find.1, find/parser.c: Fixed
3391         Savannah bug #13303, find should filter out non-printable
3392         characters if outputting to tty
3394 2005-05-30  James Youngman  <jay@gnu.org>
3396         * locate/locate.c: rename new_locate() to locate() since
3397           old_locate() has gone the way of the dodo.
3399 2005-05-29  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3401         Add a ``--print'' (``-p'') option. (to cancel side-effects of -c/-S)
3402         Allow ``--statistics'' in combination with non-options.
3403         * doc/find.texi: Add documentation for locate --print (-p), and the
3404         use of non-options with --statistics.
3405         * locate/locate.1: ditto.
3406         * locate/locate.c: Read each database only once.
3408 2005-05-23  Paul Eggert  <eggert@cs.ucla.edu>
3410         Adjust to recent gnulib changes.
3411         * import-gnulib.sh: Get config.rpath from gnulib/build-aux,
3412         not gnulib/config.
3413         * find/parser.c (parse_perm): Ignore umask when parsing
3414         symbolic permissions.  Adjust to new modechange API.
3416 2005-05-16  James Youngman  <jay@gnu.org>
3418         * find/find.c, find/parser.c, find/pred.c, find/tree.c:
3419         Trivial change: don't use i18n support for debug-only messages
3421         * ChangeLog: Added ChangeLog entry crediting Dmitry
3423 2005-05-09  James Youngman  <jay@gnu.org>
3425         * find/parser.c:
3426         The previous change fixed Savannah bug #12999.  This change doesn't do
3427         anything, it's only intended to be a place to record the Savannah bug
3428         ID we've just fixed.
3430         * find/parser.c:
3431         Oops.  Initialise the variable which indicates which regex syntax to
3432         use.  We use POSIX basic regular expressions.
3434         * find/parser.c:
3435         Suggestion by Ed Avis: point out that "-name foo/bar" will almost
3436         always evaluate to false.   Suggest to the user what alternatives they
3437         might find useful.
3439 2005-05-02  James Youngman  <jay@gnu.org>
3441         * AUTHORS:
3442         Added Dimitry (his new test suite contribution required a copyright
3443         assignment).
3445 2005-05-03  Dmitry V. Levin
3447         * Added xargs test suite tests by Dmitry V. Levin, together with
3448           bugfixes which ensure that the tests pass.
3450 2005-04-18  James Youngman  <jay@gnu.org>
3452         * Added test suite tests for Bas van Gompel's changes.
3454 2005-04-18  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3456         * doc/find.texi: Document locate --non-existing (-E).
3457         * locate/locate.1: Ditto.
3458         * locate/locate.c: Implement --non-existing (-E).
3460 2005-04-04  James Youngman  <jay@gnu.org>
3462         * configure.in, import-gnulib.sh:
3463         We no longer need gnulib/m4/Makefile.am
3465         * po/vi.po: Updated Vietnamese translation
3467         * locate/updatedb.sh:
3468         Savannah bug #12491: Only use the "-s" option to "su" if it is
3469         supported.
3471 2005-04-01  James Youngman  <jay@gnu.org>
3473         * locate/locate.1, locate/updatedb.1, xargs/xargs.1: Trivial
3474         change from A Costa <agcosta@gis.net>, fixing typos in manual
3475         pages for xargs, locate and updatedb; fixes Savannah bug #12500,
3476         Debian bug #301934
3478 2005-03-22  James Youngman  <jay@gnu.org>
3480         * import-gnulib.sh: Include the new gnulib module stat-macros
3482         * configure.in:
3483         CVS code is (will shortly be) no longer identical to the 4.2.20 release
3485 2005-03-17  James Youngman  <jay@gnu.org>
3487         * configure.in: Preprare for release of 4.2.20.
3489         * NEWS: Updated prior to release of 4.2.20.
3491         * ChangeLog: Updated with recent changes.
3493         * THANKS: Thank Bas van Gompel, but only once.
3495         * THANKS: Thank Bas van Gompel and Aaron S. Hawley.
3497         * po/vi.po: Updated Vietnamese PO file
3499 2005-03-10  James Youngman  <jay@gnu.org>
3501         * po/nl.po: Updated Dutch PO file
3503 2005-03-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
3505         * import-gnulib.sh: Re-enable creation of gnulib/m4/Makefile.am.
3507 2005-03-07  James Youngman  <jay@gnu.org>
3509         * Released findutils-4.2.19.
3511         * find/testsuite/find.posix/sizes.exp:
3512         Use 2>/dev/null instead of 2>&1, because Tcl understands the former
3513         but not the latter.
3515         * find/testsuite/Makefile.am: Also distribute sv-bug-12181.xo.
3517         * find/testsuite/Makefile.am: Distribute sv-bug-12181.
3519         * find/testsuite/Makefile.am: Distribute sv-bug-12230.
3521         * NEWS: Updated with new news.
3523         * ChangeLog: Brought up to date.
3525         * lib/buildcmd.c, find/testsuite/find.gnu/sv-bug-12230.exp: Fixed
3526         Savannah bug #12230, in which '-exec echo == {} +' is always run,
3527         even if there were no matched files.
3529 2005-03-06  James Youngman  <jay@gnu.org>
3531         * ChangeLog: Added latest changes.
3533         * po/pt.po, configure.in: Added Portuguese translation
3535 2005-03-04  James Youngman  <jay@gnu.org>
3537         * configure.in: Modernized the way we call AC_INIT and
3538         AM_INIT_AUTOMAKE
3540         * locate/locate.c, find/pred.c, find/find.c:
3541         Eliminated some compiler warnings
3543         * find/pred.c: Clarified the meaning of a comment.
3545         * find/testsuite/Makefile.am: Added sizes.exp, sizes.xo.
3547         * find/testsuite/find.posix/sizes.xo,
3548         find/testsuite/find.posix/sizes.exp: Added tests for -size
3549         predicate
3551 2005-03-03  James Youngman  <jay@gnu.org>
3553         * find/find.c:
3554         safely_chdir_lstat(): if we didn't end up in the right place, and then
3555         fchdir() fails, we can't return to the directory we started in.
3556         Therefore, issue a fatal error message and exit.
3558 2005-03-01  James Youngman  <jay@gnu.org>
3560         * find/find.c, find/testsuite/find.posix/sv-bug-12181.exp,
3561         find/testsuite/find.posix/sv-bug-12181.xo: Fixed SourceForge bug
3562         12181 (find -H symlink-to-dir reports 'Too many Symbolic links')
3563         and bug 12044 (find still hangs on dead NFS filesystems on
3564         Solaris)
3566 2005-02-28  James Youngman  <jay@gnu.org>
3568         * doc/find.texi: Typo: O_NOFOLLOW, not O_FOLLOW
3570         * import-gnulib.sh:
3571         Suggestion from Martin Buchholz; unset CDPATH to prevent "cd" echoing
3572         the new directory.
3574 2005-02-27  James Youngman  <jay@gnu.org>
3576         * README: Indicate how the reader can verify the release.
3578 2005-02-26  James Youngman  <jay@gnu.org>
3580         * po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po,
3581         po/zh_CN.po, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po,
3582         po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot,
3583         po/fr.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3584         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3585         po/pt_BR.po, po/ro.po, po/ru.po: Added new Vietnamese translation
3587         * configure.in: Added new Vietnamese translation.
3589 2005-02-25  James Youngman  <jay@gnu.org>
3591         * po/ga.po: Updated Irish po file
3593 2005-02-23  James Youngman  <jay@gnu.org>
3595         * Makefile.am: Fix Savannah bug #12064 - 'make distclean' deletes
3596         regex.c but should not.
3598         * find/testsuite/Makefile.am,
3599         find/testsuite/find.gnu/printf-h.exp,
3600         find/testsuite/find.gnu/printf-h.xo: Added test case for Savannah
3601         bug #12085 (-printf %h).
3603         * NEWS, doc/find.texi, find/find.1, find/pred.c:
3604         %h now expands to '.' instead of nothing.
3606 2005-02-22  James Youngman  <jay@gnu.org>
3608         * find/find.c:
3609         Fixed Savannah bug #12099 (misinterpretation of system versions
3610         leading to possible incorrect disabling of O_NOFOLLOW).  Reported by
3611         Dmitry V. Levin.
3613         * find/pred.c:
3614         For the %h format, don't bail out early as the format might contain
3615         something else too.
3617 2005-02-21  James Youngman  <jay@gnu.org>
3619         * find/find.c: Fixed accidental C99 dependency.
3621 2005-02-20  James Youngman  <jay@gnu.org>
3623         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
3624         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
3625         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
3626         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
3627         po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po,
3628         po/sv.po, po/tr.po, po/zh_CN.po: Updated italian translation
3630         * doc/find.texi: Corrected a typo.
3632         * find/find.c:
3633         Read the mounted device list afer parsing the command line, so that
3634         for example "find --version" still works (in response to Savannah bug
3635         #12044).
3637         * configure.in: We've moved on from findutils-4.2.18.
3639 2005-02-19  James Youngman  <jay@gnu.org>
3641         * NEWS: Corrected the summary of the "find -depth" bug.
3643 2005-02-16  James Youngman  <jay@gnu.org>
3645         * NEWS, configure.in: Prepared for release of 4.2.18.
3647         * ChangeLog: Updated prior to release of 4.2.18.
3649         * find/testsuite/Makefile.am:
3650         Distribute the test cases for the recent "find -depth" bug.
3652         * find/testsuite/find.posix/depth1.exp, find/testsuite/find.posix/depth1.xo:
3653         Added test case for find -depth bug reported by Joseph S. Myers
3655         * find/find.c:
3656         If -depth is in effect, processing of the subdirectories invalidates
3657         the information in 'state'.  Therefore once we get around to
3658         processing the predicates, restore the information that we keep in
3659         'state' and in 'stat_buf'.
3661 2005-02-15  James Youngman  <jay@gnu.org>
3663         * ChangeLog: Updated with recent changes
3665         * find/find.1:
3666         Emphasise that -L causes find to recurse into subdirectories pointed
3667         to by symbolic links.
3669         * find/find.1:
3670         Patch to find.1 from Aaron Hawley <Aaron.Hawley@uvm.edu>:
3672         * Notes about -H actually apply to -L.
3673         * Said paragraph is duplicated two paragraphs later.
3674         * Typos: nno, ibmue, surrpounding
3676 2005-02-15  Aaron Hawley  <Aaron.Hawley@uvm.edu>
3678         * find/find.1: Notes about -H actually apply to -L.  Said
3679         paragraph is duplicated two paragraphs later.  Also typos: nno,
3680         ibmue, surrpounding
3682 2005-02-13  James Youngman  <jay@gnu.org>
3684         * find/find.1: Miscellaneous small clarifications and improvements.
3686         * doc/find.texi: Added Info nodes and menus under "Changing the
3687         Current Working Directory" so that it doesn't generate such a huge
3688         Info page.
3690         * find/find.c: Parenthesise #if defined(...).
3692 2005-02-13  Dmitry V. Levin  <ldv@altlinux.org>
3694         * find/find.c: remove test code snippet (time(NULL) was used to
3695         place a marker for spotting with strace(), but was not actually
3696         needed).
3698         * find/find.c (safely_chdir_nofollow): must not fall back on
3699         safely_chdir_lstat() because that will expose it to race condition
3700         exploits, making it pointless.
3702         * find/find.c (safely_chdir_lstat): Move
3703         complete_pending_execdirs() up into safely_chdir(), because we
3704         need to do that in either case.
3706 2005-02-12  James Youngman  <jay@gnu.org>
3708         * configure.in, doc/find.texi, find/defs.h, find/find.c,
3709         find/parser.c: Fix for Savannah bug #11879, that
3710         init_mounted_dev_list() causes find to hang on systems which are
3711         clients to dead NFS servers
3713 2005-02-10  James Youngman  <jay@gnu.org>
3715         * doc/find.texi: Talk about the problem where find will not work
3716         if you have a filesystem mounted from an unresponsive NFS server.
3718 2005-02-09  James Youngman  <jay@gnu.org>
3720         * find/find.1: Indicate that $TZ affects from printf-format
3721         results, and add extra cross-references in the SEE ALSO section.
3723 2005-02-08  James Youngman  <jay@gnu.org>
3725         * xargs/testsuite/Makefile.am: Distribute the .xe files also.
3727         * Makefile.am: Check that we have the right number of .xe files in
3728         the distribution also.
3730         * ChangeLog, NEWS, configure.in
3731         Preparing to release findutils-4.2.17
3733 2005-02-07  James Youngman  <jay@gnu.org>
3735         * find/testsuite/config/unix.exp: Re-sort the .xo file using the
3736         calling user's locale, because our 'pre-sorted' .so output file
3737         may not be sorted with the same collating order as 'sort' used to
3738         order the output of "find.  Bug spotted by Vin Shelton and Dimitry
3739         V. Levin.
3741         * find/testsuite/Makefile.am:
3742         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
3744         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
3745         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
3746         Fix for starting point /foo/bar/baz where bar is a symlink but baz
3747         is not - we should chdir into bar there even if it is a symbolic
3748         link
3750 2005-02-07  James Youngman  <jay@gnu.org>
3752         * find/testsuite/Makefile.am:
3753         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
3755         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
3756         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
3757         Fix for starting point /foo/bar/baz where bar is a symlink but baz
3758         is not - we should chdir into bar there even if it is a symbolic
3759         link
3761 2005-02-06  James Youngman  <jay@gnu.org>
3763         * doc/find.texi:
3764         -size: Clarification - -size gives a result consistent with 'wc -c'
3765          for example.
3767         * Makefile.am, find/testsuite/Makefile.am,
3768         find/testsuite/find.gnu/execdir-root-only.exp,
3769         find/testsuite/find.gnu/execdir-root-only.xo,
3770         locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
3771         dist-hook: Ensure that we distribute all the .po files and all the
3772         testsuite files
3774         * po/pl.po: Updated Polish translation from TP website
3776 2005-02-05  Dmitry V. Levin  <ldv@altlinux.org>
3778         * find/parser.c, find/pred.c: Additional tweaks for
3779         -execdir/-okdir actions.
3781         * find/parser.c (new_insert_exec_ok): Disable ignore_readdir_race
3782         for -execdir/-okdir.
3784         * find/pred.c (pred_execdir, pred_okdir): Use state.rel_pathname
3785         instead of basename(pathname).  Do not add "./" prefix for
3786         absolute pathnames.
3788         * find/find.c (process_top_path): Treat "/" similarly to ".".
3790         * xargs/testsuite/xargs.posix/savannah-11865.exp,
3791         xargs/testsuite/xargs.posix/savannah-11865.xo, xargs/xargs.c:
3792         Fixed Savannah bug #11866 (not resetting number of used chars in
3793         the command buffer) - reported by Dimitry V. Levin
3795 2005-02-05  James Youngman  <jay@gnu.org>
3797         * THANKS:
3798         Added thanks for Dimitry - has produced many patches, bugfixes and
3799         suggestions.
3801         * find/pred.c:
3802         Fixed Savannah bug #11866: typo in pred_okdir() renders it useless
3804         * find/pred.c:
3805         Savannah bug #11861: undefined symbol 'basename' on IRIX 5.3
3807         * NEWS, configure.in, po/be.po, po/ca.po, po/el.po, po/eo.po,
3808         po/fi.po, po/ga.po, po/hr.po, po/hu.po, po/ja.po, po/lg.po,
3809         po/ms.po, po/ro.po, po/sl.po, po/sr.po, po/zh_CN.po: Added new
3810         translations
3812         * ChangeLog: Updated from CVS prior to release of 4.2.16.
3814         * po/ChangeLog: Updated from CVS.
3816         * NEWS, configure.in: Preparing to release 4.2.16
3818         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
3819         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
3820         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl.po, po/sv.po,
3821         po/tr.po: make update-po prior to 'make distcheck'
3823         * po/fetch-po-files: This is the first version we actually used.
3825         * find/find.c: process_top_path() fixed compilation warning.
3827         * find/find.c: process_top_path(): avoid processing this item if
3828         we can't chdir to the basename of the named file.
3830         * lib/Makefile.am: Always build forcefindlib.c
3832         * locate/locate.c: Say 'base name' rather than 'basename' in comments
3834         * find/pred.c, find/find.c: process_top_path(): Proper bugfix for
3835         correct handling of items at depth 0 (i.e. specified on the
3836         command line) - do an extra chdir to ensure that we're in the
3837         directory containing the item before calling process_path().
3838         Hnece also undo the previous 'quick fix' for the same problem
3840         * doc/find.texi:
3841         -execdir no longer has to treat anything as special, even at depth 0.
3843 2005-02-03  James Youngman  <jay@gnu.org>
3845         * doc/find.texi, find/pred.c: When state.curdepth is 0, our
3846         working directory is not the directory containing the file we are
3847         processing.
3849 2005-02-02  James Youngman  <jay@gnu.org>
3851         * find/pred.c:
3852         To allow compilation on cygwin, use base_name(), not basename().
3854         * po/tr.po: Updated Turkish translation from TP
3856         * po/ro.po: Updated Romanian translation from TP
3858         * po/da.po, po/et.po: Updated translations from MT project website
3860 2005-02-01  James Youngman  <jay@gnu.org>
3862         * ChangeLog: Updated from CVS log.
3864 2005-01-31  James Youngman  <jay@gnu.org>
3866         * find/find.c, lib/nextelem.c, lib/nextelem.h, locate/code.c,
3867         locate/frcode.c, locate/testsuite/config/unix.exp,
3868         xargs/testsuite/config/unix.exp, xargs/xargs.c: Updated/corrected
3869         the email address for David MacKenzie, one of the original authors
3870         of findutils
3872         * doc/Makefile.am: The HTML version of the manual generated for
3873         the GNU project website has each node in a separate file, not each
3874         chapter in a separate file; adjust filenames accordingly
3876         * find/parser.c, find/pred.c, lib/savedirinfo.c:
3877         Removed some unused variables (patch from Dmitry V. Levin)
3879         * find/find.c:
3880         Patch from Dmitry V. Levin <ldv@altlinux.org>: Add subfs to the list
3881         of filesystems which are likely to be automounted.
3883         * m4/findlib.m4: Corrected typo (pointed out by Dmitry V. Levin).
3885         * find/testsuite/config/unix.exp,
3886         find/testsuite/find.gnu/name-period.xo,
3887         find/testsuite/find.gnu/posix-dflt.xo,
3888         find/testsuite/find.gnu/posix-h.xo,
3889         find/testsuite/find.gnu/posix-l.xo,
3890         find/testsuite/find.gnu/printf.exp,
3891         find/testsuite/find.gnu/printf.xo: Systems differ in the order in
3892         which filenames are returned by readdir.  Hence sort the output of
3893         'find' before comparing against the expected-output file.  We
3894         therefore also have the lines in the .xo files ready-sorted.
3896         * po/ca.po: Updated from Translation Project
3898         * po/ChangeLog: Updated from CVS logs.
3900         * po/de.po, es.po, et.po, fr.po, gl.po, id.po, it.po, ko.po, nl.po,
3901         pl.po, pt_BR.po, ru.po, sk.po, sv.po, tr.po, da.po: Ran update-po
3903         * po/be.po, ca.po, el.po, eo.po, fi.po, hr.po, hu.po, ja.po, lg.po,
3904         ms.po, ro.po, sl.po, sr.po, zh_CN.po: Added new translation files
3905         from the Translation Project web site
3907         * po/da.po, de.po, es.po, et.po, fr.po, ga.po, gl.po, id.po, it.po,
3908         ko.po, nl.po, pl.po, pt_BR.po, ru.po, sk.po, sv.po, tr.po: Updated
3909         .po files from the Translation Project site
3911 2005-01-30  James Youngman  <jay@gnu.org>
3913         * doc/Makefile.am:
3914         Added rules for extra targets that we buld to update the web site.
3916 2005-01-29  James Youngman  <jay@gnu.org>
3918         * configure.in: No longer version 4.2.15 - we've changed the manual.
3920         * doc/find.texi:
3921         Clarified the txt about adding extra tests with post-processing via
3922         xargs, and recommend -execdir instead for security reasons.
3924         * doc/find.texi: Patch from Karl Berry:
3925         - more entries for the dir file
3926         - use @copying so the copyright ends up in the HTML etc. output.
3927           (This is the only really important change.)
3928         - put @contents after the title page, for conventional toc location.
3929         - use @ifnottex to wrap the Top node instead of @ifinfo, for the sake of
3930           HTML output, etc.
3932         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
3933         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
3934         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
3935         po/sv.po, po/tr.po: Prepared to release findutils-4.2.15
3937         * ChangeLog: Updated from CVS log.
3939 2005-01-28  James Youngman  <jay@gnu.org>
3941         * configure.in:
3942         Make --enable-d_type-optimization and --enable-d_type-optimisation
3943         both work.
3945         * configure.in: Assume --enable-d_type-optimisation by default
3947         * find/parser.c: Indicate which features are enabled/disabled
3949         * locate/testsuite/config/unix.exp:
3950         Clean up the files left behind by the locate_textonly test
3952 2005-01-27  James Youngman  <jay@gnu.org>
3954         * doc/find.texi: Documented --regex.
3956         * NEWS, locate/locate.1, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/regex1.exp:
3957         Implemented locate --regex - but needs documenting in Texinfo manual.
3959 2005-01-25  James Youngman  <jay@gnu.org>
3961         * configure.in: Bumped version no.
3963         * doc/find.texi:
3964         Document --mmap and --stdio as being synonyms of -m and -s.
3966         * locate/locate.1:
3967         Document --mmap and --stdio as synonyms of -m and -s.
3969         * locate/locate.c:
3970         Document -m and -s (both no-ops) in the usage message.
3972         * doc/find.texi, locate/locate.1: Document -m and -s as no-ops.
3974         * ChangeLog: Updated for release of findutils-4.2.14.
3976         * 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:
3977         Preparing to release findutils-4.2.14
3979 2005-01-25  James Youngman  <jay@gnu.org>
3981         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
3982         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
3983         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
3984         po/sv.po, po/tr.po: Preparing to release findutils-4.2.14
3986 2005-01-24  James Youngman  <jay@gnu.org>
3988         * Makefile.am: Work around the fact that automake-1.7 actually
3989         works, and correctly distributes regex.c; hence dist-hook should
3990         only copy gnulib/lib/regex.c if this has not already been done.
3992         * find/defs.h, find/find.c, find/pred.c,
3993         find/testsuite/Makefile.am,
3994         find/testsuite/find.gnu/printf-symlink.exp,
3995         find/testsuite/find.gnu/printf-symlink.xo,
3996         find/testsuite/find.gnu/xtype-symlink.exp,
3997         find/testsuite/find.gnu/xtype-symlink.xo: Fixes for -xtype and
3998         -printf %Y, which had been the wrong way around.
4000         * NEWS: Avoid including the find.gnu subdirectory in the
4001         distributed file more than once
4003         * locate/locate.c:
4004         Move the printing of the statistics into a new function, print_stats()
4006         * find/testsuite/Makefile.am: Avoid including the find.gnu
4007         subdirectory in the distributed file more than once
4009         * import-gnulib.sh:
4010         We need the regex module anyway, to allow compilation on Solaris
4012 2005-01-23  James Youngman  <jay@gnu.org>
4014         * configure.in:
4015         Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
4016         systems like Solaris, which lacks those functions in libc (fixes GNU
4017         Savannah bug #11710).
4019         * locate/locate.1: -S is a synonym for --statistics
4021         * doc/find.texi: Documented the new -H, -L and -P options.
4023         * locate/locate.1, locate/locate.c: Implement options -L
4024         (default), -H and -P, which mean the same things as for find,
4025         except for the fact that the default is -L rather than -P
4027         * find/find.1: Corrected definition of the exit status for -quit.
4029         * find/find.c, find/pred.c: If DEBUG_STAT is set, issue a debug
4030         message when we call chdir() so that we can figure out what is
4031         actually being stat()ed
4033         * locate/updatedb.sh:
4034         Removed spurious newline from help message (bug report from Karl
4035         Berry).
4037         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
4038         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
4039         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po,
4040         Makefile.am, NEWS, configure.in, find/defs.h, find/find.c,
4041         find/parser.c, find/pred.c, find/tree.c, find/util.c,
4042         import-gnulib.sh, lib/savedirinfo.c: Merged the d_type
4043         optimisation code; this is disabled by default, and can be enabled
4044         with 'configure --enable-d_type-optimisation'
4046         * NEWS:
4047         Updated optimisation NEWS item to indicate the effect on runtime.
4049 2005-01-22  James Youngman  <jay@gnu.org>
4051         * NEWS, configure.in: Prepare for release of findutils-4.2.12
4053         * ChangeLog: Brought up to date with recent changes.
4055         * Makefile.am, import-gnulib.sh, po/Makefile.in.in, po/Makevars,
4056         po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
4057         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
4058         po/pl.po, po/pt_BR.po, po/remove-potcdate.sin, po/ru.po, po/sk.po,
4059         po/sv.po, po/tr.po: Switch to using the gnulib gettext module, to
4060         ensure that 'make distcheck' works with current xgettext,
4061         autoconf, etc.
4063         * find/testsuite/config/unix.exp:
4064         Oops, we do need to clean up after all.
4066 2005-01-21  James Youngman  <jay@gnu.org>
4068         * xargs/testsuite/Makefile.am: Added name of missing input file.
4070         * find/testsuite/Makefile.am:
4071         Distribute a few files that we had forgotten about
4073         * xargs/testsuite/Makefile.am: Added some missing files.
4075         * lib/Makefile.am: Also need buildcmd.h.
4077         * xargs/testsuite/Makefile.am: Fixed a typo.
4079         * NEWS: Indicate the d_type performance improvement
4081 2005-01-18  James Youngman  <jay@gnu.org>
4083         * lib/savedirinfo.h: Added on d_type_optimisation also
4085         * lib/savedirinfo.c: Added on branch d_type_optimisation also.
4087         * find/pred.c: Added assert that we actually know the file type by
4088         the time pred_type() is called
4090         * find/find.c: Always initialise state.have_stat = false when
4091         starting to work with a new file
4093 2005-01-17  James Youngman  <jay@gnu.org>
4095         * ChangeLog: Brought up to date with recent changes.
4097         * NEWS: Documented the changes so far.
4099         * find/testsuite/find.gnu/exec-many-rtn-success.xo:
4100         Expected output for exec-many-rtn-success.exp
4102         * find/find.1:
4103         Indicate that -quit still ensures that pending commands are invoked
4105         * doc/find.texi:
4106         Indicate that -quit still causes partial command lines to be invoked,
4107         but there are some types of fatal error which leave such commands
4108         uninvoked.
4110         * find/defs.h, find/find.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
4111         Fixed savannah bug  #11625 Wrong return status for -exec ... \; when command fails; also execute any pending commands when doing -quit
4113         * 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:
4114         Various test cases for succeeding and failing forms of -exec \; and -exec {} +
4116         * find/pred.c: "-exec ... {} +" always returns "true".
4118         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
4119         Implemented d_type optimisation but not working correctly, so currently disabled
4121         * lib/savedirinfo.h, lib/savedirinfo.c:
4122         Initial implementation (temporarily disabled).
4124         * lib/Makefile.am: Resolved merge conflict.
4126         * lib/Makefile.am:
4127         Make sure nextelem.h is included in the list of sources.
4129         * find/parser.c, lib/nextelem.c, lib/nextelem.h, locate/locate.c:
4130         Use prototypes for next_element() to make sure it is called correctly.
4132 2005-01-16  James Youngman  <jay@gnu.org>
4134         * find/find.c, find/pred.c:
4135         When completing incomplete multiple execs, use 'eval_tree' not 'predicates'
4137         * lib/buildcmd.c:
4138         Oops, initialise state->cmd_initial_argv_chars to zero.
4140         * find/find.1:
4141         Document the way that -execdir and -okdir will refuse to wqork if ">"
4142         is on $PATH.  Also document -okdir in the manpage.
4144         * find/parser.c:
4145         -execdir and -okdir are insecure if $PATH includes the current
4146          directory, and so they refuse to work if the user has done that.
4148         * find/pred.c:
4149         Oops; for -exec ... {} +, pass arguments to bc_push_arg() in the right
4150         order.   Problem spotted by Geoff Clare.
4152         * TODO: Removed items which have now been done.
4154         * lib/buildcmd.c: Tidied up formatting of arg list for bc_do_insert
4156 2005-01-15  James Youngman  <jay@gnu.org>
4158         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo:
4159         Added extra tests for more printf formats; patch by Andreas Metzler
4161         * locate/locate.c:
4162         Ensure that the new long options have a relevang short option too.
4163         Also bring usage message into line with the options actually
4164         supported.  Thanks to Bas van Gompel for noticing this defect.
4166         * locate/locate.1:
4167         Escape "-" in SYNOPSIS.  Thanks to Bas van Gompel for noticing this
4168         defect.
4170         * ChangeLog: Fixed typos.
4172         * doc/find.texi:
4173         Documented -execdir, and the "+" variants of -exec and -execdir.
4175         * find/find.1: Documented -execdir.
4177         * xargs/xargs.c:
4178         Updated to bring into line with bc_*() interface changes
4180         * ChangeLog: Updated with recent changes.
4182         * find/defs.h, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h:
4183         Implemented -execdir and -okdir
4185         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4186         First working version of -exec ...+
4188 2005-01-09  James Youngman  <jay@gnu.org>
4190         * find/defs.h, find/find.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4191         Initial implementation of -exec ..{} +, but currently disabled since not yet working
4193 2005-01-08  James Youngman  <jay@gnu.org>
4195         * find/find.c: Fixed typo in comment.
4197         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
4198         We now understand but do not implement -execdir (a *BSD invention, and a very useful security enhancement) and -okdir (the obvious companion to it)
4200         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
4201         The GNU coding standard requires a space between the function name and
4202         its parenthesised argument list.
4204         * find/defs.h:
4205         Understand the -exec ... {} \+ construction (for multiple
4206         replacement).  No support yet.
4208         * locate/locate.1:
4209         Indicate that empty elements in the dbpath are treated as synonyms for
4210         the default database.
4212         * locate/locate.c:
4213         Support empty elements in the dbpath as synonyms for the default
4214         database.  These colons can be leading, trailing or in the middle of
4215         the string.  We no longer com,plain if the user does this.
4217         * lib/nextelem.c:
4218         If curdir_ok is 0 and an element is empty, return "" instead of NULL
4219         so that the caller knows to keep calling us.
4221         * find/find.c, find/pred.c, import-gnulib.sh, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
4222         Savannah bug 11517: find, xargs, locate, etc. should not hide write failures; patch from Jim Meyering
4224         * 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:
4225         changed .pot creation date
4227         * THANKS, AUTHORS: Take into account the FSF copyright-assignments list
4229         * doc/find.texi:
4230         If -quit is used, the exit value can be nonzero if errors have occurred.
4232         * find/find.1:
4233         Removed incorrect comment about -H, -P and -follow in HISTORY.
4235 2005-01-07  James Youngman  <jay@gnu.org>
4237         * lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
4238         Refactored xargs to use an external library function from the new file buildcmd.c
4240         * configure.in: no longer the same as the released 4.2.11 version
4242 2005-01-06  James Youngman  <jay@gnu.org>
4244         * xargs/testsuite/inputs/lines.xi, xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/Makefile.am:
4245         Tests for the -L option
4247         * xargs/testsuite/config/unix.exp: When a test fails, show the diffs
4249         * xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/xargs.posix/l2.xo:
4250         tests for the -l option
4252         * xargs/testsuite/Makefile.am: Added extra test files
4254         * xargs/testsuite/xargs.sysv/trace.exp, xargs/testsuite/xargs.sysv/trace.xe, xargs/testsuite/xargs.sysv/trace.xo:
4255         Added tests for the -t option
4257         * 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:
4258         Use a blanks-only input file for cases where there is supposed to be no output
4260         * xargs/testsuite/inputs/blank.xi: Initial version.
4262         * xargs/xargs.1:
4263         Corrected a typo; also indicate that it's impossible to use xargs
4264         securely due to the race condition.
4266 2005-01-05  James Youngman  <jay@gnu.org>
4268         * find/parser.c:
4269         Fixed Savannah bug 11495: fallthrough from -printf format processing
4270         from 'n' case to 'd' case.
4272 2005-01-03  James Youngman  <jay@gnu.org>
4274         * doc/find.texi:
4275         Oops.  Had duplicated an entire section.  Fortunately this was after
4276         @bye, so there was no adverse effect.
4278         * NEWS: locate -b.
4280         * doc/find.texi, locate/locate.1: document locate -S
4282         * configure.in, doc/find.texi, locate/locate.1, locate/locate.c:
4283         Support locate -b as a synonym for locate --basename
4285         * 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:
4286         distcheck
4288         * find/testsuite/config/unix.exp:
4289         Clean up (delete) find.out at at the end of the test.
4291         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c:
4292         Implemented the -samefile test for find
4294 2005-01-02  James Youngman  <jay@gnu.org>
4296         * ChangeLog: Updated with recent changes.
4298         * NEWS:
4299         Bas van Gompel: two-line patch to locate.c to make locate's -i and -w
4300         options work if -e is in use.
4302         * THANKS: Added Bas van Gompel.
4304         * locate/locate.c:
4305         Bas van Gompel: (visit_exists) when testing for the existence of the
4306         file, check the real filename [printname], not the case-converted
4307         filename [testname].  Really these argument names are badly chosen.
4309         * find/find.1, doc/find.texi:
4310         Improved the documentation for -perm, with plenty of examples,
4311         following a comment by Dan Jacobson that the comment "Symbolic modes
4312         use mode 0 as a point of departure" is baffling and unhelpful.
4314         * locate/locate.c:
4315         Suggestion and patch from Bas van Gompel: (new_locate): Fix display of
4316         negative compression ratios.
4318 2004-12-31  James Youngman  <jay@gnu.org>
4320         * NEWS: Brought up to date with recent changes
4322         * doc/find.texi:
4323         Don't need to nest the "race conditions with..." sections so deeply.
4325         * doc/find.texi: Corrected some spelling errors.
4327         * doc/find.texi: Added new "Security Considerations" chapter.
4329 2004-12-23  James Youngman  <jay@gnu.org>
4331         * locate/locate.c:
4332         Applied bugfixes from Bas van Gompel <patch-findutils.buzz@bavag.tmfweb.nl>.
4333         (lc_strcpy): Zero-terminate result.
4334         (add_visitor): Update lastinspector.
4335         (visit_substring_match_casefold): fix off-by-one error.
4336         (new_locate): Move visit_exists down to improve performance.
4337         (new_locate): Don't fold case when getting stats.
4339 2004-12-19  James Youngman  <jay@gnu.org>
4341         * doc/find.texi:
4342         Indicate that "cd /; find tmp -wholename /tmp" will never match anything.
4344         * doc/find.texi: Documented locate --statistics.
4346         * locate/locate.1: Documented the --statistics option.
4348         * locate/locate.c: Added support for the -S option.
4350 2004-12-12  James Youngman  <jay@gnu.org>
4352         * NEWS: Added a summary of the changes so far.
4354         * find/tree.c: Made some of the error messages more self-explanatory
4356         * find/pred.c: Print pointers with %p, not %x.
4358         * find/find.c: Moved option data into struct options.
4360         * find/find.1: clarifications
4362         * find/testsuite/find.gnu/comma.exp:
4363         Limit the amount of searching with maxdepth.
4365         * doc/find.texi: clearer description of how -prune works
4367         * ChangeLog: Removed duplicate entry.
4369         * configure.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
4370         Separated ariables representing current state from variable representing option information
4372 2004-12-11  James Youngman  <jay@gnu.org>
4374         * find/parser.c: Readability improvement to the usage message.
4376         * find/find.c: Oops.  Fixed unmatched #endif.
4378         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo, THANKS, configure.in, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
4379         Fixed Savannah bug #11280
4381         * find/find.c:
4382         Remember to set path_length and curdepth in process_top_path().
4384 2004-12-07  James Youngman  <jay@gnu.org>
4386         * find/fstype.c: Use xstat() not stat() to examine things.
4388         * find/find.c: Explain why #ifdef EOVERFLOW.
4390         * find/find.c: EOVERFLOW is not defined on UNICOS.
4392         * NEWS: Corrected typo.
4394 2004-12-06  James Youngman  <jay@gnu.org>
4396         * ChangeLog: Brought up to date.
4398         * NEWS, configure.in: releasing 4.2.10
4400         * 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:
4401         distcheck
4403         * ChangeLog: Updated prior to release of finsutils-4.2.10.
4405         * import-gnulib.sh, find/fstype.c:
4406         Use gnulib's mountlist module instead of grokking it ourselves.
4408         * configure.in:
4409         Removed all the out-of-date cruft for grokking getmntent().
4411         * xargs/xargs.c:
4412         Added the -I and -L options; also -E takes an argument which is not optional.
4414 2004-12-05  James Youngman  <jay@gnu.org>
4416         * README, configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c:
4417         Allow debug output to be turned on or off by saying --enable-debug on the configure command line
4419         * README:
4420         Removed disparaging (it is now, it probably wasn't then) comment about
4421         the production-readiness of Automake.
4423         * README: Qualify remarks about POSIX compliance.
4425         * NEWS, configure.in: Preparation for release 4.2.9
4427         * 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:
4428         distcheck
4430         * ChangeLog: Brought up to date.
4432         * find/find.c:
4433         Avoid duplicate error message when we cannot chdir() into a subdirectory.
4435         * THANKS: Added recent thankees.
4437         * NEWS:
4438         Brought up to date with respect to the current set of fixed bugs.
4440         * NEWS, xargs/xargs.1, xargs/xargs.c:
4441         Implemented POSIX options -L, -I and -E
4443 2004-12-03  James Youngman  <jay@gnu.org>
4445         * find/parser.c:
4446         -xdev is an option, not a test.   Fixes Savannah bug 11192.
4448         * find/find.1, xargs/xargs.1:
4449         Escape dashes with a backslash (for fix Savannah bug 11189).
4451 2004-11-27  James Youngman  <jay@gnu.org>
4453         * find/find.c:
4454         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.
4456         * find/find.1: "necessary" only has one "C".
4458         * find/find.1:
4459         If stat() fails with ELOOP, we issue a diagnostic message.
4461 2004-11-26  James Youngman  <jay@gnu.org>
4463         * find/find.c: Removed some unused code.
4465         * Makefile.am: Don't do anything in the 'intl' subdirectory
4467         * find/find.c:
4468         Enhanced safely_chdir() to the point where the test suite passes, and report infinite loops in the directory hierarchy
4470         * find/defs.h:
4471         belt and braces; ensure that SYMLINK_NEVER_DEREF has value zero
4473         * find/find.1:
4474         Describe our strategy for detecting and reporting infinite loops
4476 2004-11-24  James Youngman  <jay@gnu.org>
4478         * doc/find.texi:
4479         Updated the discussion of th error messages for findutils-4.2.8.
4481         * configure.in: Next version will be 4.2.9...
4483         * find/find.c:
4484         Don't issue a warning if we notice the mounting of a filesystem that's
4485         likely just to be an automounter.
4487         * doc/find.texi, find/find.1:
4488         Explain how rounding is performed for -atime and friends.
4490         * xargs/xargs.c:
4491         Once we collect enough arguments (for the value specified by the -n
4492         option) to do an exec(), do it immediaely instead of waiting for the
4493         next one to arrive.  This fixes Savannah bug #7340.
4495         * ChangeLog, configure.in, NEWS: Prepare to release 4.2.8.
4497         * NEWS: Updates for 4.2.8.
4499         * configure.in: check for  sys/types.h
4501         * find/find.c:
4502         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.
4504         * find/defs.h:
4505         Declarations of xmalloc() and friends belong in xalloc.h, not in defs.h
4507         * find/parser.c: avoid signed/unsigned warning, and #include xalloc.h
4509         * find/fstype.c:
4510         Changed to alloc get_mounted_devices() to compile on Solaris
4512         * README-CVS:
4513         Automake requires GNU m4, so point out that the reader needs that.
4515         * find/defs.h, find/find.c, find/fstype.c:
4516         When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted filesystem names
4518         * NEWS: prepare for 4.2.8
4520         * configure.in:
4521         Look for some Solaris headers which are used by get_mounted_devices()
4523         * lib/Makefile.am: don't build savedirtypes yet
4525         * 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:
4526         updated po files
4528         * m4/nullsort.m4:
4529         Avoid suprious output of the test data when the tests fail.
4531 2004-11-21  James Youngman  <jay@gnu.org>
4533         * 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:
4534         Messages changed again
4536         * ChangeLog, configure.in: Preparing to release 4.2.7.
4538         * NEWS: Updated for release of 4.2.7.
4540         * import-gnulib.sh: Also need canonicalize module.
4542         * find/find.c:
4543         When checking to see if a filesystem has changed state, use an
4544         absolute pathname.
4546         * configure.in:
4547         No need to pause to allow James to view his handiwork, it (allegedly)
4548         works now.
4550         * configure.in:
4551         Oops.  Check for setlocale() to re-enable the i18n support which was
4552         accidentally disabled in 4.2.5.
4554         * find/find.c:
4555         Check to see if the new directory is a transitioned mount point by
4556         using its ABSOLUTE name, if we can figure it out.
4558         * doc/find.texi:
4559         Added guidance on some of the error messages.  Not the most common
4560         ones, but the ones where the user might most benefit from some handy
4561         hints or an explanation of what is going on.
4563         * find/pred.c:
4564         Actually emit an error message if we fail to stat a symlink (for
4565         reasons other than nonexistence of the link and infinite loop).
4567         * doc/texinfo.tex: Updated texinfo.tex
4569         * NEWS, configure.in, find/find.c, find/fstype.c:
4570         Enable the 'Warning: filesystem XXX has recently been mounted' check on Solaris, which prevents it exiting fatally when traversing an automount mount point
4572         * 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:
4573         messages changed again
4575         * NEWS: Implemented xargs --arg-file.
4577         * doc/find.texi, xargs/xargs.1, xargs/xargs.c, NEWS:
4578         Implemented xargs --arg-file
4580         * find/find.c:
4581         Where a filesystem was recently (un)mounted, try togive its full name
4583         * configure.in:
4584         Try to avoid requesting -lsun if we don't seem to need it (e.g. on
4585         UNICOS where it is not present and trying to link against it produces
4586         a warning).
4588         * find/defs.h, lib/modetype.h: Guard against multiple inclusion
4590         * find/fstype.c:
4591         We now need <mntent.h> even if we are not using getmntent() to figure
4592         out the type of a filesystem, because wd_sanity_check() needs to
4593         enumerate the system mount points.
4595         * configure.in: Next release will be 4.2.7.
4597         * find/fstype.c:
4598         get_mounted_filesystems() should use getmntent() if that function is
4599         present, rather than just if configure didn't find anything better for
4600         filesystem_type_uncached() to use than that.
4602         * find/parser.c:
4603         If -delete is the only action on a file, don't assume the default
4604         -print action too.
4606         * 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:
4607         Preparation to release findutils-4.2.6.
4609         * find/Makefile.am, xargs/Makefile.am:
4610         Enable checking of support for --version and --help
4612         * locate/Makefile.am:
4613         Con't check command-line options for frcode, code or bigram
4615         * locate/code.c: Support --version and --help.
4617         * ChangeLog: *** empty log message ***
4619         * find/defs.h, find/find.c, find/fstype.c, lib/Makefile.am, lib/extendbuf.c, lib/extendbuf.h, NEWS:
4620         Avoid fatal error if automount mounts a filesystem on a directory because we chdir()ed into it
4622         * configure.in: Next release will be 4.2.6.
4624         * find/find.1:
4625         Indicate that the '-' flag does work for most fields.   Also provide
4626         an example of using the comma operator to traverse the filesystem just
4627         once but search for more than one thing.
4629         * doc/find.texi: Indicate that the '-' flag does work for most fields.
4631 2004-11-19  James Youngman <jay@gnu.org>
4633         * configure.in: releaseing findutils-4.2.5
4635         * find/testsuite/Makefile.am, locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
4636         If a directory has no Makefile.am, omit it from the parent's DIST_SUBDIRS - automake-1.9 requires this
4638         * 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:
4639         updated by make distcheck
4641         * ChangeLog, NEWS: Updated for release 4.2.5.
4643         * find/find.1, doc/find.texi:
4644         Tell the reader that format flags may not work as they expect.
4646         * configure.in:
4647         Use the correct name for the macro gl_AC_TYPE_LONG_LONG (not
4648         jm_AC_TYPE_LONG_LONG).
4650 2004-11-15  James Youngman <jay@gnu.org>
4652         * import-gnulib.sh:
4653         Avoid test -e because not all systems are POSIX-compliant (bug
4654         #11005).  Also don't need regex module any more if we're not building
4655         in intl.
4657         * Makefile.am, configure.in:
4658         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
4660         * doc/find.texi:
4661         Use @ref not @xref for a reference at the beginning of a sentence.
4663         * intl/Makefile.in:
4664         Make sure gnulib.lib is on the #include path (Savannah bug #11002)
4666         * locate/locate.c:
4667         Use base_name instead of basename - fixes Savannah bug 11003.
4669         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, locate/bigram.c, locate/locate.c:
4670         Don't need banner to emphasise the location of the call to jy_SORTZ
4672 2004-11-12  James Youngman <jay@gnu.org>
4674         * 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:
4675         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]
4677 2004-11-11  James Youngman <jay@gnu.org>
4679         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c:
4680         Implemented -H and -L options.
4682         * find/util.c: Added in the -H and -L options on the usage message.
4684 2004-11-10  James Youngman <jay@gnu.org>
4686         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4687         Implemented %M and %A+ format specifiers
4689         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4690         Documented the fact that only %d and %m format specifiers honour the various formatting flags
4692         * xargs/xargs.c:
4693         Get the right number of bytes in a Kilobyte (hint: it's not 1048; that
4694         was a typo, honest :)
4696         * po/pl.po: Applied Polish translations
4698 2004-11-08  James Youngman <jay@gnu.org>
4700         * 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:
4701         distcheck changed the po files again
4703         * locate/Makefile.am:
4704         Make install-data-hook honour the setting of DESTDIR so that "make
4705         DESTDIR=/tmp/foo install" works and puts localstater in the right
4706         place.
4708         * configure.in: We're now working on findutils-4.2.5.
4710         * doc/find.texi, xargs/xargs.1:
4711         Point out that xargs -i only splits input items at newlines
4713         * ChangeLog: Indicate that we released 4.2.4.
4715         * ChangeLog: Updated for release 4.2.4
4717         * NEWS, configure.in: Prepare for release of 4.2.4.
4719         * NEWS: Brought up to date with latest changes.
4721         * 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:
4722         Turn warning messages off by default if stdin is not a tty; allow these to be controlled explicitly by options -warn and -nowarn
4724         * po/et.po, po/it.po: Updated translation files
4726         * po/sk.po: New translation file
4728         * po/fr.po, po/nl.po, po/tr.po: Updated translation files
4730         * configure.in: Added Slovak (sk) language.
4732         * xargs/xargs.c:
4733         Enforcing a lower limit on the value specified by -s makes the test
4734         suite fail.  Removed that lower limit.
4736         * locate/Makefile.am: Oops, multilocate doesn't exist yet.
4738         * NEWS: *** empty log message ***
4740         * doc/find.texi, locate/updatedb.1, locate/updatedb.sh:
4741         Added option --findoptions to updatedb
4743         * locate/Makefile.am, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
4744         Fixed section numbers in manpage titles and cross-references
4746         * NEWS, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
4747         Increased the default argument length and improved POSIX compliance of the handling of out-of-range values for the -s option
4749 2004-11-07  James Youngman <jay@gnu.org>
4751         * m4/Makefile.am:
4752         Added in the extra files we need to distribute, nullsort.m4
4753         order-bad.bin order-good.bin
4755         * doc/find.texi: Documented locate's --limit option
4757         * locate/locate.1, locate/locate.c:
4758         Implmented --limit and corrected the implementation of the -i option.
4760 2004-11-06  James Youngman <jay@gnu.org>
4762         * NEWS, doc/find.texi, locate/locate.1:
4763         Documented --wholename and --basename and updated the NEWS file
4765         * README-CVS:
4766         Give the autogen commands in a form that you can usefully cut and paste into a shell
4768         * NEWS: Options --null and --count) for locate
4770         * lib/nextelem.c:
4771         Don't return '.' for an empty path element, because the path we are splitting may not be intended to contain directories
4773         * configure.in: we're working on findutils-4.2.4 now
4775         * locate/Makefile.am: Substitute @SORT_SUPPORTS_Z@
4777         * doc/find.texi:
4778         Documented new locate option --null and newline handling
4780         * locate/locate.1, locate/locate.c:
4781         New locate options --null, --wholename, --basename, --count
4783         * locate/frcode.c, locate/updatedb.1, locate/updatedb.sh:
4784         correctly handle newlines in the file names
4786         * configure.in: Determine if sort -z works
4788         * m4/nullsort.m4, m4/order-bad.bin, m4/order-good.bin:
4789         jy_SORTZ: a macro to determine if the system has a sort command with a working -z option
4791 2004-11-01  James Youngman <jay@gnu.org>
4793         * NEWS: Fixed "find -printf '%H\n'".
4795         * find/find.c:
4796         Avoid segfault if -printf %H is used where the matched file was the default, unspecified starting point, the current directory
4798 2004-10-31  James Youngman <jay@gnu.org>
4800         * find/find.1, find/parser.c: NetBSD also supports -d.
4802         * find/find.1, doc/find.texi:
4803         Documented the behaviour of -daystart and -follow in more detail
4805         * find/parser.c: Corrected the usage message.
4807         * find/parser.c:
4808         When deciding whether to issue a warning about options following
4809         non-options, ignore any options whose position affects the tests
4810         (i.e. -daystart and -follow).
4812         * find/parser.c: -daystart is a positional option like -follow.
4814         * find/parser.c:
4815         Issue a warning message if an option is specified after a test or an
4816         action (because the user might have believed that the behaviour of the
4817         option is in some way conditional on the preceding tests).
4819         * locate/updatedb.sh:
4820         Oops; removed some test code that I shouldn't have checked in.
4822         * locate/updatedb.sh:
4823         Indicate that the old locate database format will shortly be unsupported.
4825         * doc/find.texi:
4826         Use @direntry instead of hard-coding START-INFO-DIR-ENTRY inside @ifinfo.
4828         * locate/updatedb.1: Updated default location of locatedb file.
4830         * README-alpha:
4831         Updated to give correct FTP location and to not talk about "test"
4832         versions of automake, which are no longer required.
4834         * locate/updatedb.sh:
4835         Incorporated the default list of filesystems to avoid from the Debian
4836         package.  Also added /afs and /sfs to the default pruned paths.
4838         * configure.in: Released findutils 4.2.3
4840         * 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:
4841         did make distcheck, which updates these files
4843         * find/defs.h, find/fstype.c:
4844         Use const qualifier in arguments to filesystem_type() to allow callers with const variables to use them
4846         * ChangeLog: Updated.
4848         * NEWS: Added new news.
4850         * find/find.c:
4851         Extra diagnositcs for the case where we have the error "%s changed
4852         during execution of %s" - that is when we chdir back to the parent
4853         directory only to find that it has changed.
4855 2004-10-30  James Youngman <jay@gnu.org>
4857         * .cvsignore, NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
4858         Implemented the -quit action
4860         * NEWS, doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4861         Refactored time handling routines in preparation for support of absolute timestamp comparison predicates
4863         * locate/locate.c:
4864         Applied Savannah patch #2952 ("getline off-by-one bugfix").
4866         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
4867         Added -delete action (Savannah patch #3454 with additions)
4869         * locate/locate.c:
4870         Applied Savannah patch #2692 (allowing get_short to process negative integers).
4872         * find/find.c:
4873         If we are iossuing an error message because $FIND_BLOCK_SIZE is set,
4874         ignore the setting of errno.
4876         * find/parser.c: More fixes for pedantic compiler warnings
4878         * NEWS, find/parser.c, find/tree.c: Eliminated some compiler warnings
4880         * find/find.c, find/parser.c, find/pred.c:
4881         Various fixes for compiler warninga sbout unreachable code or unused function arguments
4883         * intl/plural.y: Silence compiler warning about unused argument.
4885         * locate/testsuite/Makefile.am:
4886         Subdirectory "inputs" does not exist, so remove it from DIST_SUBDIRS.
4888         * locate/locate.c:
4889         Corrected the explanation of why we have to use no parentheses around
4890         the String argument to the N_ macro in its expansion.
4892         * configure.in: Nextr release is 4.2.3.
4894         * configure.in: IOndicate this is no longer the pristine release.
4896         * NEWS:
4897         Oops, comments for release 4.2.0 should have said 20480 bytes, not 2480.
4899         * lib/listfile.c:
4900         The -ls predicate should not truncate usernames.  Fixes Savannah bug #10800.
4902         * find/fstype.c, locate/locate.c:
4903         Fixes for Savannah bug #3727 (Intel icc compilation errors).
4905 2004-10-25  James Youngman <jay@gnu.org>
4907         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
4908         Support -printf %D, which prints the device number of the containing filesystem
4910         * locate/updatedb.sh:
4911         Avoid confusion between James Woods and James Youngman, by using the
4912         disambiguating surname.
4914         * find/parser.c: Use RE_ICASE instead of re->translate.
4916         * configure.in, find/parser.c, find/pred.c, xargs/xargs.c:
4917         No need to #define _GNU_SOURCE if we use gl_INIT.
4919 2004-10-24  James Youngman <jay@gnu.org>
4921         * ChangeLog: Prepared to release findutils-4.2.2.
4923         * 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:
4924         Updates prior to release of 4.2.2
4926         * NEWS: Updated with news for findutils-4.2.2.
4928         * 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:
4929         Corrected typo in the address of the FSF office
4931         * lib/strspn.c: Updated FSF address.
4933         * m4/.cvsignore: 'cvs status' should ignore Makefile.in
4935         * 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:
4936         Use gnulib-tool --import to import the gnulib code, rather than the odd way we were doing it before
4938         * 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:
4939         Work round an apparent compiler bug in HP-UX 11.23 for
4940         ia64
4942         * locate/locate.c:
4943         Work around what appears to be a C compiler bug in HP-UX 11.23 for
4944         ia64.
4946         * INSTALL, depcomp, install-sh, missing, mkinstalldirs:
4947         Updated from automake
4949         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c, find/find.c:
4950         Avoid use of exit() within main, to silence warnings about unreachable code
4952 2004-10-22  James Youngman  <jay@gnu.org>
4954         * doc/find.texi: Syntax corrections.
4956         * doc/find.texi: Indicate that "-exec {}+" is not yet supported.
4958         * find/find.1: Indicate that "{}+" is not yet supported.
4960         * find/testsuite/find.gnu/name-period.xo, find/testsuite/find.gnu/name-period.exp, find/find.1, doc/find.texi:
4961         The -name predicate must allow '*' to match '.foo' as demanded by IEEE
4962         Std 1003.2-1992 Interpretation #126.
4964         * find/pred.c:
4965         Remove use of FNM_PERIOD for -name as demanded by IEEE Std 1003.2-1992
4966         Interpretation #126
4968         * find/parser.c: Fix for compilation (on AIX 4.3) with GCC 2.x.
4970         * xargs/xargs.c:
4971         Changed the erorr message issued when there is an unmatched quote to
4972         point out that the user might have wanted to use the -0 option instead.
4974 2004-10-17  James Youngman  <jay@gnu.org>
4976         * configure.in:
4977         Define intmax_t if it is not already defined - allows parser.c to compile on AIX 4.3
4979         * configure.in:
4980         Adjust version number to indicate that this s/w has moved on since the
4981         4.2.1 release.
4983         * configure.in: preparing to release 4.2.1
4985         * ChangeLog: updated with current changes
4987         * README-CVS: Updated to go with newer version of gnulib.
4989         * 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:
4990         preparation for release
4992         * NEWS: Mention the changes to "trap".
4994         * NEWS: Brought up to date.
4996         * import-gnulib.sh:
4997         Use xalloc-die module from gnulib, since that has now been split out
4999         * find/parser.c:
5000         Check fnmatch() when other predicates that rely on fnmatch() are used.
5002         * find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup
5004 2004-10-16  James Youngman <jay@gnu.org>
5006         * import-gnulib.sh:
5007         Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.
5009         * locate/updatedb.sh:
5010         Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
5011         names instead.  See
5012         http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
5013         which indicates that support for signal numbers is optional, while
5014         support for signal names is mandatory.
5016         * configure.in:
5017         Indicate that this is the CVS version (once again) now that findutils
5018         4.2.0 has been released.
5020         * 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:
5021         findutils 4.1.20 check-in for tagging
5023 2004-10-02  James Youngman <jay@gnu.org>
5025         * po/Makefile.in.in:
5026         Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.
5028         * NEWS: Brought up to date, organised more clearly, and tidied up.
5030         * NEWS: brought up to date with recent changes
5032         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
5033         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
5035         * find/pred.c:
5036         Fixed usage of human_readable() in '%k' format specifier to fix a bug
5037         reported by Dmitry V. Levin (arguments to human_readable() were
5038         specified in the wrong order, which resulted in a floating-point
5039         error).
5041 2004-08-08  James Youngman <jay@gnu.org>
5043         * locate/updatedb.sh:
5044         cd to / to avoid inability to examine the current directory if we're
5045         invoked via cron (and hence in root's home directory for example).
5047         * doc/find.texi, find/find.1:
5048         Deprecate -path and -ipath in favour of -wholename and -iwholename
5050         * find/parser.c:
5051         As per RMS's suggestion, deprecate -path and -ipath in favour of
5052         -wholename and -iwholename.
5054         * locate/locate.c:
5055         Fixed Savannah bug #9923, in which get_short() returns large positive
5056         ints when it should be returning negative shorts.
5058         * xargs/xargs.1:
5059         Applied documentation improvements suggested by Dan Jacobson
5060         <jidanni@jidanni.org>.
5062         * xargs/xargs.c:
5063         Don't check size_of_environment against arg_max since that causes the
5064         test suite to fail.
5066         * xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option
5068 2004-05-03  James Youngman <jay@gnu.org>
5070         * find/find.1:
5071         document the various suffixes for -size and also the new
5072         option -ignore_readdir_race
5074         * locate/locate.c:
5075         Fixes Savannah bug #8623 (failure to check consistency of data
5076         read from locate database)
5078         * locate/updatedb.sh:
5079         Resolves Savannah bug 4380, that updatedb generates an empty
5080         database if one of the commands fails
5082         * NEWS: Talk about -ignore_readdir_race
5084         * doc/find.texi:
5085         Documented -ignore_readdir_race and -noignore_readdir_race
5087         * find/find.c:
5088         -ignore_readdir_race should have no effect if the reason for the
5089          failure of stat(2) was anything other than ENOENT.
5091         * find/defs.h, find/find.c, find/parser.c:
5092         Fixed Savannah bug 4391 (readdir race condition leading to
5093         spurious error messages)
5095 2004-04-24  James Youngman <jay@gnu.org>
5097         * README-CVS: Corrected the instructions for getting gnulib via CVS.
5099 2004-04-13  James Youngman <jay@gnu.org>
5101         * doc/find.texi:
5102         Actioned Savannah bug #8558 (find complains when it tries to recurse
5103         into directories that it had removed).
5105 2004-03-13  James Youngman <jay@gnu.org>
5107         * ChangeLog: Updated from checkin comments.
5109         * find/find.c:
5110         Oops, there is no access to the predicate name table if DEBUG is
5111         not #defined.
5113         * find/parser.c:
5114         Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
5115         the failure to handle large arguments to -mtime.  The existing code
5116         does careful computation and then bungs the value into a time_t, which
5117         ruins all our careful effort.  The new code is not a great
5118         improvement.  We just check the result to detect overflow, rather than
5119         actually avoiding the overflow.
5121         * find/find.c:
5122         Fixed Debian bug #185202 by checking for any trailing predicates after
5123         the top-level invocation of get_expr() has done its work.
5125         * locate/locate.1, xargs/xargs.1:
5126         Fixed Debian bug 175372, inappropriate 'L' suffixes on manual
5127         page section indicators
5129         * find/find.1:
5130         Removed "L" suffixes from manual page section indicators, to fix
5131         Debian bug 175372.
5133         * debian/updatedb.conf:
5134         Updated with list of filesystems from current Debian release.  This
5135         includes devfs, for example.
5137         * xargs/xargs.1:
5138         Modified documentation of "-s" option to take into account the fix for
5139         Debian bug #176201.
5141         * xargs/xargs.c:
5142         Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
5143         reading a patch offered by Bob Proulx and implementing something
5144         substantially similar myself.
5146 2004-01-03  James Youngman  <jay@gnu.org>
5148         * xargs/xargs.c:
5149         Indicate that prep_child_for_exec() fixes Savannah bug #3992.
5151         * xargs/xargs.c:
5152         Attach the stdin of xargs' child process to /dev/null so that if it
5153         tries to read from its stdin it doesn't consume any of the list of
5154         files that xargs is trying to use.
5156         * find/find.1:
5157         Documented that the -regex option follows Gnulib's re_match()
5158         implementation.
5160         * NEWS, locate/locate.c: Applied Savannah patch 2108
5162         * xargs/xargs.c: Applied Savannah patch 1500
5164         * find/find.1, doc/find.texi:
5165         Improved the documentation for the %k and %b format specifiers to
5166         -printf (Savannah bug #5034).  Also pointed out that this handling is
5167         different to that used by the "b" and "k" suffixes with "-size".
5169         * find/find.1: Improved the documentation for %k (Savannah bug #5034).
5171         * find/find.1:
5172         Improved the documentation for -print0 in the manpage, fixing Debian
5173         bug 111143.
5175         * README-CVS, find/pred.c, lib/listfile.c:
5176         Brought up-to-date with change in gnulib's human.c - we no longer
5177         use human_readable_inexact(), because it is no longer provided.
5179 2003-08-08  James Youngman  <jay@gnu.org>
5181         * find/find.1:
5182         Documented the fact that -printf also supports the '\0' escape code.
5183         Added "STANDARDS CONFORMANCE" section.
5185 2003-08-02  James Youngman  <jay@gnu.org>
5187         * find/find.1:
5188         Explain that braces are not special when performing filename matching
5189         with -name.
5191         * find/find.1:
5192         added example of the use of -exec to the EXAMPLES section
5194         * find/fstype.c, locate/locate.c:
5195         Savannah bug #4295 - implicit declarations of ctype.h functions
5197         * locate/locate.c:
5198         Savannah bug #4279 - missing newline on locate help message
5200         * find/find.1, xargs/xargs.1:
5201         Improved discussion of the -print0 option of find and the -0 option of xargs
5203 2003-06-26  James Youngman  <jay@gnu.org>
5205         * import-gnulib.sh:
5206         Remove reference to nonexistent module "basename" ("dirname" exists
5207         and we already use that).
5209 2003-06-21  James Youngman  <jay@gnu.org>
5211         * doc/find.texi:
5212         Indicate that xargs stops immediately if a command exits with status 255
5214         * xargs/xargs.1:
5215         Document the fact that xargs exits immediately with an error message
5216         if the command it executes exits with a status of 255.
5218 2003-06-18  James Youngman  <jay@gnu.org>
5220         * find/find.1:
5221         Indicate that -fls and friends always create their output file
5223 2003-06-16  James Youngman  <jay@gnu.org>
5225         * ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
5226         Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.
5228         * AUTHORS: Identify the current maintainer.
5230         * TODO: Removed the TODO items which have now been done.
5232         * THANKS: Added Bruno Haible and Bob Proulx.
5234         * xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
5235         (mbstrstr): New function.
5236         (do_insert): Use it instead of strstr.
5238         * config.guess, config.sub:
5239         Use config.guess and config.sub from automake
5241         * find/fstype.c:
5242         Bruno Haible: (fstype_to_string) Don't define this function if
5243         HAVE_F_FSTYPENAME_IN_STATFS is defined.
5245         * configure.in:
5246         Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
5247         because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.
5249         * doc/find.texi, find/find.1:
5250         Applied patch 1498 (documenting the backslash escape sequence)
5252         * locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.
5254         * doc/find.texi:
5255         Applied Savannah patch #1547 (document the fact that printf
5256         field-width specifiers are supported).
5258         * xargs/xargs.c:
5259         Applied Savannah patch #1499 (adds final newline to usage message).
5261 2003-06-14  James Youngman  <jay@gnu.org>
5263         * NEWS, configure.in:
5264         Updated version number to 4.2.0-CVS [not ready for release yet]
5266         * 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
5267         also need stpcpy (e.g. for Solaris)
5269         * intl/dcigettext.c:
5270         plural_lookup: don't use a variable called "index", because we may
5271         have done "#define strchr index", in which case using a variable
5272         called index will prevent us calling strchr(p, ch) in the same scope.
5274         * 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:
5275         Updated copyright years and the address of the FSF
5277         * aclocal.m4, config.h.in, configure:
5278         Removed files that are generated from other files (e.g. configure)
5280         * NEWS: Updated NEWS file for 4.1.20.
5282         * 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:
5283         Updates to the i18n files to ensure that 'make dist' succeeds
5285         * lib/posix/.cvsignore, lib/posix/Makefile.am,
5286         lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
5287         lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
5288         lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
5289         lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
5290         lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
5291         lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
5292         locate/Makefile.am, locate/Makefile.in, locate/locate.c,
5293         locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
5294         m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
5295         m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
5296         m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
5297         m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
5298         m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
5299         m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
5300         m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
5301         m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
5302         m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
5303         m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
5304         m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
5305         m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
5306         m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
5307         xargs/Makefile.in, xargs/testsuite/Makefile.in,
5308         find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
5309         lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
5310         lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
5311         lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
5312         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
5313         lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
5314         lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
5315         lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
5316         lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
5317         lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
5318         lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
5319         lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
5320         find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
5321         Updated to work with current version of gnulib
5323         * import-gnulib.sh: New file.
5325         * config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
5326         Updated to work with current version of gnulib
5328         * README-CVS: New file.
5330         * Makefile.am, Makefile.in, README-CVS, aclocal.m4:
5331         Updated to work with current version of gnulib
5333 2003-05-26  James Youngman <jay@gnu.org>
5335         * po/pl.po, pt_BR.po, ru.po, sv.po, tr.po, da.po, de.po, es.po,
5336         et.po, findutils.pot, fr.po, gl.po, id.po, it.po, ko.po, nl.po:
5337         Changes to allow compilation on non-GNU systems (i.e. for the
5338         macros that gnulib decides to #define to be effective)
5340 2003-05-24  James Youngman <jay@gnu.org>
5342         * po/da.po, de.po, es.po, et.po, findutils.pot, fr.po, gl.po,
5343         id.po, it.po, ko.po, nl.po, pl.po, pt_BR.po, ru.po, sv.po, tr.po:
5344         also need stpcpy (e.g. for Solaris)
5346         * po/POTFILES.in, da.po, de.po, es.po, et.po, findutils.pot, fr.po,
5347         gl.po, id.po, it.po, ko.po, nl.po, pl.po, pt_BR.po, ru.po, sv.po,
5348         tr.po: Updates to the i18n files to ensure that 'make dist'
5349         succeeds
5351 2001-06-09  Kevin Dalley  <kevin@seti.org>
5353         * intl/plural.c:
5354         Changes the location of bison.simple after running bison on local
5355         machine
5357         * ChangeLog: *** empty log message ***
5359         * Makefile.in, aclocal.m4, config.h.in, configure,
5360         doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
5361         lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
5362         locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
5363         xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38
5365         * ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.
5367         * configure.in: * configure.in: add tr to ALL_LINGUAS.
5369         * intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
5370         intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
5371         intl/locale.alias, intl/ngettext.c, intl/plural.y,
5372         intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38
5374         * intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
5375         intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***
5377         * m4/jm-macros.m4:
5378         * jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
5379         AM_ICONV, which is imported from gettext-0.10.38.  removed
5380         jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
5381         imported from gettext-0.10.38.
5383         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
5385         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
5387         * po/ChangeLog: * cat-id-tbl.c: Remove file.
5389         * po/de.po, po/es.po, po/et.po, po/fr.po:
5390         * fr.po, et.po, es.po, de.po: updated translations to
5391         findutils-4.1.7.
5393         * po/tr.po: * tr.po:  New Turkish translation.
5395         * m4/ChangeLog: *** empty log message ***
5397         * intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
5398         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
5399         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
5400         intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
5401         intl/localealias.c, intl/plural.c, intl/textdomain.c,
5402         intl/ChangeLog, intl/Makefile.in, intl/VERSION,
5403         intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38
5405         * m4/Makefile.am:
5406         reflects addition of codeset.m4 from gettext-0.10.38, automatically
5407         generated.
5409         * m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
5410                 m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
5411                 progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
5412                 glibc21.m4, gettext.m4, codeset.m4: updated from
5413                 gettext-0.10.38.
5415         * ChangeLog: *** empty log message ***
5417         * THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>
5419         * m4/ChangeLog, locate/testsuite/.cvsignore,
5420         xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
5421         doc/.cvsignore: *** empty log message ***
5423         * m4/jm-macros.m4:      * jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME
5425         * doc/Makefile.in: *** empty log message ***
5427         * doc/Makefile.am:
5428         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
5429         created by dvips.  This should be taken care of by automake, but
5430         the code is commented out.
5432 2001-06-09  Kevin Dalley  <kevin@seti.org>
5434         * ABOUT-NLS: updated from gettext-0.10.38.
5436         * configure.in: add tr to ALL_LINGUAS.
5438         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
5439         created by dvips.  This should be taken care of by automake, but
5440         the code is commented out.
5442         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
5444         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
5446         * po/ChangeLog: * cat-id-tbl.c: Remove file.
5448         * po/de.po, es.po, et.po, fr.po:
5449         * po/fr.po, et.po, es.po, de.po: updated translations to
5450         findutils-4.1.7.
5452         * po/tr.po: * tr.po:  New Turkish translation.
5454 2001-06-05  Kevin Dalley  <kevin@seti.org>
5456         * locate/updatedb.sh: replace "whoami" with "id -u" when testing
5457         for root.
5459 2001-06-04  Kevin Dalley  <kevin@seti.org>
5461         * locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
5462         instance of DIST_SUBDIRS.
5464         * locate/Makefile.am (install-data-hook): changed install target
5465         to install-data-hook, which still installs other files.
5467         * doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
5468         probably be handled by automake.
5470         * doc/mdate-sh: removed file in doc directory.  It now exists only
5471         in top_srcdir, but this changed required a patch to automake.
5473 2001-06-01  gettextize  <bug-gnu-utils@gnu.org>
5475         * Makefile.in.in: Upgrade to gettext-0.10.38.
5476         * cat-id-tbl.c: Remove file.
5477         * stamp-cat-id: Remove file.
5479 2001-05-20  Kevin Dalley  <kevin@seti.org>
5481         * Version 4.1.7
5483         * lib/Makefile.am (EXTRA_DIST): add strcasecmp.c
5485         * find/testsuite/Makefile.am (EXTRA_DIST): new tests:
5486         find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
5487         find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo
5489         * configure.in: update to 4.1.7
5491         * config.sub, config.guess: upgraded to recent versions of
5492         config.sub and config.guess.
5494         * locate/updatedb.sh: Add space to "#! /bin/sh"
5496         * configure.in: Add id to ALL_LINGUAS
5498         * lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
5499         (libfind_a_SOURCES): getline.[ch] removed since getline.c is not
5500         always needed.
5502         * po/da.po, de.po, es.po, et.po, fr.po, gl.po, id.po, it.po, ko.po,
5503         nl.po, pl.po, pt_BR.po, ru.po, sv.po: updated to reflect changes
5504         in source code.
5506         * po/id.po: New translation for Indonesia.
5508 2001-05-20  Lionel CONS <lionel.cons@cern.ch>
5510         * find/find.c: Fixed security holes.  1.  There is a race
5511         condition between the lstat() to detect a symbolic link and the
5512         actual chdir().  2.  An attacker can move directories while find
5513         is _inside_ so that chdir(..) goes out of the intended file tree.
5515         * lib/modetype.h: support for Solaris door files is added.
5517         * lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN
5519         * find/pred.c (pred_type): -D option (for Solaris door files) is
5520         added.
5522         * find/parser.c (insert_type):  -D option (for Solaris door files)
5523         is added.
5525         * find/find.1: -D option (for Solaris door files) is documented
5527         * doc/find.texi (Type): -D option (for Solaris door files) is
5528         documented
5530 2001-05-02  Kevin Dalley  <kevin@seti.org>
5532         * configure.in: Change AC_CHECK_MEMBERS to conform to new
5533         autoconf.  Add Danish.
5535 2001-04-28  Kevin Dalley  <kevind@rahul.net>
5537         * po/sv.po, ru.po, pt_BR.po, pl.po, nl.po, ko.po, it.po, gl.po,
5538         fr.po, et.po, es.po, de.po, findutils.pot:  new translations, and
5539         new source code to translate.
5541         * po/da.po: new Danish translation.
5543 2001-01-20  Kevin Dalley  <kevin@seti.org>
5545         * doc/find.texi (Adding Tests): Place space in "#! /bin/sh".
5547         * find/testsuite/find.gnu/prune-default-print.xo,
5548         find/testsuite/find.gnu/prune-default-print.exp: test for "find
5549         . -prune" which passes after changes.  Also see name-opt.exp.
5551         * find/util.c (get_new_pred):
5552         * find/tree.c (set_new_parent):
5553         * find/parser.c (various parse functions):
5554         * find/find.c (main):
5555         (default_prints): new function
5556         * find/defs.h (struct predicate): added no_default_print
5557         side_effects are no separated from no_default_print.  predicates
5558         which cause side effects should not be reordered (optimized).
5559         predicates which cause printing should have printing turned off.
5560         Printing statements also cause side effects.
5562 2000-10-29  Bruno Haible <haible@ilog.fr>
5564         * locate/code.c (main), doc/find.texi: improve handling of
5565         non-ASCII characters used old format.
5567 2000-10-21  Paul Eggert  <eggert@twinsun.com>
5569         If open + fchdir fails, fall back on xgetcwd + chdir.
5570         The old code tested for this at compile-time,
5571         but SunOS 4.1.4 fchdir can fail at run-time.
5573         * find/defs.h (fchdir): Define to -1 if not available.
5574         * find/defs.h (starting_dir, starting_desc):
5575         Always declare.  starting_dir now points to const.
5576         * find/find.c (starting_dir, starting_desc): Likewise.
5577         * find/find.c (starting_dir):
5578         Now "." if starting_desc is nonnegative, for benefit of diagnostics.
5579         (main, process_top_path, process_dir):
5580         If open + fchdir fails, fall back on xgetcwd + chdir.
5581         * find/pred.c (launch): Likewise.
5583 2000-10-20  Kevin Dalley  <kevin@seti.org>
5585         * xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
5586         find/parser.c (parse_help): add bug reporting address to help
5588 2000-10-13  Kevin Dalley  <kevin@seti.org>
5590         * depcomp, lib/depcomp: depcomp moved from lib to .
5592         * po/sv.po, ru.po, pt_BR.po, pl.po, nl.po, ko.po, it.po, gl.po,
5593         fr.po, findutils.pot, et.po, es.po, de.po: updated after addition
5594         of lib/rpmatch.c
5596 2000-10-11  Kevin Dalley  <kevind@rahul.net>
5598         * Version 4.1.6
5600         * locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
5601         testsuite.
5603 2000-10-10  Bruno Haible <haible@ilog.fr>
5605         * lib/Makefile.am (libfind_a_SOURCES): added yesno.c
5607         * lib/yesno.c, lib/rpmatch.c: new files.
5609         * find/pred.c: use function yesno().
5611 2000-10-10  Kevin Dalley  <kevind@rahul.net>
5613         * locate/testsuite/Makefile.am: Added missing \ at end of
5614         EXTRA_DIST lines.
5616         * locate/testsuite/locate.gnu/ignore_case3.xo,
5617         locate/testsuite/locate.gnu/ignore_case3.exp,
5618         locate/testsuite/locate.gnu/ignore_case2.exp,
5619         locate/testsuite/locate.gnu/ignore_case1.xo,
5620         locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
5621         inside tmp directory, add subdir directory under tmp.
5623         * locate/testsuite/config/unix.exp: clean up tmp after test is
5624         finished.
5626 2000-10-10  Kevin Dalley  <kevind@rahul.net>
5628         * locate/testsuite/config/unix.exp (Repository):
5630         * po/POTFILES.in: added lib/rpmatch.c
5632 2000-10-09  Kevin Dalley  <kevind@rahul.net>
5634         * lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
5635         fnmatch which works with Solaris.
5637         * locate/testsuite/config/unix.exp: dejagnu unix.exp
5639         * xargs/testsuite/config/unix.exp: remove temporary file
5641         * xargs/xargs.c: spelling correction
5643         * m4/prereq.m4: updated and changed some macros
5645         * m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
5646         kd_FUNC_FNMATCH_CASE_REPL
5648         * m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
5649         m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
5650         m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.
5652         * m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4
5654         * locate/testsuite/locate.gnu/ignore_case3.xo,
5655         locate/testsuite/locate.gnu/ignore_case3.exp,
5656         locate/testsuite/locate.gnu/ignore_case2.xo,
5657         locate/testsuite/locate.gnu/ignore_case2.exp,
5658         locate/testsuite/locate.gnu/ignore_case1.xo,
5659         locate/testsuite/locate.gnu/ignore_case1.exp,
5660         locate/testsuite/config/unix.exp: tests related to "--ignore-case"
5661         option.
5663         * locate/testsuite/locate.gnu: testsuite directory
5665         * locate/testsuite/Makefile.am (Repository):
5667         * locate/testsuite: add directory for locate testsuite
5669         * po/findutils.pot: updated file
5671         * po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
5672         po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
5673         updated various po files.
5675         * locate/updatedb.sh: export TMPDIR, which is used by child
5676         processes.
5678         * locate/locate.1, locate/locate.c:  add "--ignore-case" option.
5680         * locate/Makefile.am: add testsuite subdirectory
5682         * find/testsuite/find.gnu/perm.xo,
5683         find/testsuite/find.gnu/perm.exp,
5684         find/testsuite/find.gnu/name-opt.xo,
5685         find/testsuite/find.gnu/name-opt.exp: added test suites
5687         * configure.in: add locate/testsuite/Makefile
5689         * doc/find.info*: removed from repository
5691         * doc/find.texi: add documentation for "-i" option.
5693         * aclocal.m4: removed from repository, as it is generated.
5695         * find/pred.c: fixes problem with "find -perm -0100".
5697         * lib/lstat.c, lib/stat.c: removed from repository.  These files
5698         are generated from lib/xstat.in.
5700 2000-08-24  Kevin Dalley  <kevind@rahul.net>
5702         * doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.
5704 2000-05-13  Kevin Dalley  <kevind@rahul.net>
5706         * find/tree.c (opt_expr): move iname and ipath to the front of the
5707         list of arguments.
5709         * doc/find.texi (Directories): changed wording for "-prune".
5711         * find/parser.c (parse_prune): set side_effects to true, to
5712         prevent prune from being moved in opt_expr.
5714 2000-04-12  Kevin Dalley  <kevind@rahul.net>
5716         * doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.
5718         * lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
5719         since getstr is needed.
5721         * Version 4.1.5
5723         * po/POTFILES.in: updated list of files, updated po files.
5726 2000-04-02  Paul Eggert  <eggert@twinsun.com>
5728         Add support for large files, and port to Solaris 8 and earlier
5729         versions.
5731         * lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
5732         HAVE_DECL_GETENV.
5734         * lib/strftime.c (my_strftime): Make sure we call the system
5735         strftime, not ourselves, when invoking the underlying strftime.
5737         * m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.
5739         * m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
5740         require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
5741         jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
5742         jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
5743         jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
5744         replace strcasecmp, dup2, gethostname, getusershell, stime,
5745         strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
5746         strverscmp, memchr, memmove.  Do not check for declaration of
5747         lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
5748         POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
5749         (jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
5750         struct stat.st_blksize.
5752         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
5753         in shell rather than using putenv, which isn't portable.
5755         * COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
5756         lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
5757         m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
5758         m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
5759         m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
5760         to latest version from sh-utils-2.0g.
5762         * config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
5763         lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
5764         lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
5765         lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
5766         m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
5767         m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
5768         m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.
5770         * lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
5771         lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
5772         unreleased version of GNU tar (between 1.13.17 and 1.13.18).
5774         * lib/basename.h, lib/waitpid.c: New files, taken from same
5775         version of GNU tar.
5777         * lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.
5779         * lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
5780         GNU grep 2.4.2.
5782         * lib/strftime.c: Sync to textutils 2.0e.
5784         * acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
5785         m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
5786         m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
5787         m4/utimes.m4: Remove these files; no longer needed.
5789         * configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
5790         jm_AC_TYPE_UINTMAX_T): Add.
5791         (CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
5792         FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
5793         we don't need acconfig.h.
5794         (AC_CHECK_TYPE): Add ssize_t.
5795         (AC_REPLACE_FUNCS): Add waitpid.
5796         (AC_CHECK_FUNCS): Remove basename.
5797         (AC_FUNC_MKTIME): Remove.
5798         (LIBOBJS): Add no-ops to work around automake 1.4 bug.
5799         (AC_OUTPUT): Add lib/posix/Makefile.
5801         * find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
5802         <stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
5803         include these files, and to include "defs.h" first (since config.h
5804         must be included first).
5805         (CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
5806         S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
5807         MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
5808         (enum permissions_type): New enum.
5809         (struct long_val.negative): New member.
5810         (struct long_val.l_val): Now uintmax_t, not unsigned long.
5811         (struct size_val.size): Likewise.
5812         (struct perm_val): New type.
5813         (struct predicate.perm): Now struct perm_val, not unsigned long.
5814         (struct predicate.type): Now mode_t, not unsigned long.
5815         (list_file): New parameters current_time, output_block_size.
5816         All callers changed.
5817         (savedir, basename): Remove decls.
5818         (output_block_size, start_time): New extern vars.
5820         * find/find.c: Include <human.h>, <savedir.h>.
5821         (output_block_size, start_time): New vars.
5822         (main): Initialize them.  No need to check for negative st_size,
5823         since savedir now does it for us.
5825         * find/fstype.c: Include "dirname.h".
5826         (xatoi): Remove.
5827         (filesystem_type_uncached): Use xstrtoumax instead of xatoi.
5829         * find/parser.c: Include "xstrtol.h".
5830         (get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
5831         parse_size, parse_used, insert_time, insert_num): Compute using
5832         uintmax_t, not unsigned long.
5833         (parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
5834         Keep track of whether time was negative before converting it to an
5835         unsigned type.
5836         (parse_daystart): Don't assume that localtime succeeds; e.g. it
5837         can fail with 64-bit time_t and 32-bit tm_year.
5838         (parse_perm, insert_type): Compute using mode_t, not unsigned
5839         long.
5840         (insert_type): Use symbolic constants like MODE_ALL instead of
5841         traditional ones like 07777.  Set new kind member to indicate
5842         permissions type, instead of using unportable magic numbers.
5843         (make_segment): We will use human_readable to convert most numeric
5844         values, so simplify the cases.
5845         (get_num_days): Write in terms of get_num, to avoid duplicated
5846         code.
5847         (insert_time, insert_num): When debugging, convert large values to
5848         uintmax_t and output with %ju.
5849         (get_num): Use xstrtoumax to do the real work.
5851         * find/pred.c: Include "basename.h", "human.h".
5852         (DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
5853         fileutils.
5854         (ST_NBLOCKS): Replace with fileutils defn.
5855         (MAX): New macro.
5856         (ctime_format): New function.
5857         (pred_fprintf, format_date): Use human_readable to output large
5858         numbers portably.
5859         (pred_fprintf): Use ctime_format to output ctime-style dates.  Use
5860         base_name to compute the base name of a path.  With %m, output the
5861         mode portably using traditional numbers, even if the host uses
5862         some other numbering scheme.
5863         (pred_iname, pred_name): basename -> base_name.
5864         (pred_perm): Use new kind member to deduce permissions type,
5865         instead of relying on magic numbers.
5866         (pred_size): Compute using uintmax_t, not unsigned long.  Avoid
5867         overflow if file size is near the maximum.
5868         (pred_type): Compute using mode_t, not unsigned long.
5869         (launch): Use waitpid, not wait.  Check for EINTR.
5870         (format_date): Don't assume that localtime succeeds.
5872         * find/util.c (basename): Remove; we now use base_name.
5874         * lib/Makefile.am (SUBDIRS): New macro.
5875         (libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
5876         basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
5877         Remove error.h, error.c, getline.c.
5878         (EXTRA_DIST): Add mktime.c, regex.c.
5880         * lib/listfile.c: Include "human.h".
5881         (alloca): Declare, or include appropriate files to declare.
5882         (DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
5883         (convert_blocks): Remove.
5884         (list_file): New current_time and output_block_size args.
5885         Revamp quite a bit, to handle large numbers correctly
5886         and to match GNU ls behavior more closely.
5888         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
5889         largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
5890         strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
5891         decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
5892         uptime.m4, utimbuf.m4, utime.m4, utimes.m4.
5894         * xargs/xargs.c (wait_for_proc): Retry wait if it fails with
5895         errno == EINTR.
5897 2000-04-05  Kevin Dalley  <kevind@rahul.net>
5899         * xargs/Makefile.am:  add ansi2knr
5901         * xargs/xargs.c: add macros PARAMS rather than P_.  Add
5902         prototypes.
5904         * po/POTFILES: new file listing all POFILES.
5906         * m4/gl.po, m4/et.po: new files
5908         * m4/Makefile.am.in:  updated file
5910         * m4: update directory
5912         * locate/Makefile.am: create updatedb from updatedb.sh
5914         * locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
5915         by updatedb.sh
5917         * locate/frcode.c, locate/code.c, locate/bigram.c: add macros
5918         PARAMS rather than P_.  Add prototypes.
5920         * lib/xstat.in: new file
5922         * lib/Makefile.am: update to latest versions of library files.
5924         * find/testsuite/Makefile.am: add CLEANFILES
5926         * find/util.c: remove definition of basename
5928         * find/util.c, find/tree.c, find/pred.c, find/parser.c,
5929         find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
5930         than P_, for consistency, change to prototypes
5932         * find/Makefile.am: Add prototypes and ansi2knr
5934         * configure.in: add Galition and Estonian languages.
5935         Miscellaneous other fixes.
5938 2000-03-11  Kevin Dalley  <kevind@rahul.net>
5940         * lib/basename.c: Add file from libit.
5941         * lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
5942         no longer replaceable.
5944         * find/util.c: Remove definition of basename, which is now in
5945         lib/basename.c (as base_name).
5946         * find/pred.c: Use base_name, not basename.
5947         * find/defs.h: Likewise.
5949         * configure.in : Don't replace basename.  Now we use only
5950         base_name.
5952 2000-02-26  Kevin Dalley  <kevind@rahul.net>
5954         * Version 4.1.4
5956         * lib/strtoul.c: added to distribution
5958         * configure.in: added strtoul to AC_REPLACE_FUNCS
5960         * configure.in: added jm_CHECK_ALL_TYPE
5962 2000-02-23  Kevin Dalley  <kevind@rahul.net>
5964         * po/ChangeLog: removed, merged with top-level ChangeLog.
5966         * po/de.po: new version of German file.
5968         * po/gl.po, po/et.po: new languages, Estonian and Galician.
5970         * locate/updatedb.sh (PRUNEFS): enclose paths in quotes
5972 2000-02-17  Kevin Dalley  <kevind@rahul.net>
5974         * po/it.po: new version of Italian file.
5976         * locate/updatedb.sh (prunefs_exp): have sed statement use '*'
5977         rather than the often unsupported '+'.
5979 2000-02-13  Kevin Dalley  <kevind@rahul.net>
5981         * configure.in: removed AC_ARG_PROGRAM, which is already in
5982         AM_INIT_AUTOMAKE.
5984         * locate/Makefile.am (updatedb), locate/updatedb.sh: add
5985         transforms of find, frcode, bigram, and code back into
5986         updatedb.sh, which were accidentally removed.
5988 2000-02-12  Kevin Dalley  <kevind@rahul.net>
5990         * lib/wait.h: updated address.
5992 2000-01-26  Kevin Dalley  <kevind@rahul.net>
5994         * Version 4.1.3
5996         * acconfig.h: added internationalization.
5998         * intl/*: copied from tar-1.13.17.
6000         * locate/Makefile.am, locate/locate.c, locate/code.c:
6001         internationalized file.
6003         * locate/frcode.c, locate/bigram.c: include headers from ../lib
6004         directory.
6006         * xargs/Makefile.am, xargs/xargs.c: internationalized directory.
6008 2000-01-26  Kevin Dalley  <kevind@rahul.net>
6010         * po/POTFILES.in: added list of files with translatable strings.
6012         * de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
6013         ru.po, sv.po: New, slightly out of date, files imported from the
6014         Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
6015         German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
6016         Portuguese.
6019 2000-01-24  Kevin Dalley  <kevind@rahul.net>
6021         * lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
6022         works with current version of gettext.
6024         * lib/getline.h : added declaration of getstr.
6025         * lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
6026         standard compilation. Added internationalization.
6027         * find/Makefile.am (INCLUDES): corrected -I options for building
6028         in other directories.
6029         (LDADD): changes for internationalization.
6031         * configure.in (ALL_LINGUAS): added internationalization.
6032         getline.c is always compiled and linked, because of getstr.
6033         AM_GNU_GETTEXT
6035         * Makefile.am:
6036         (DISTCLEANFILES): added intl/libintl.h
6037         (AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
6038         (SUBDIRS): added intl and po
6040         * acconfig.h: added internationalization values
6042         * THANKS: added thanks file for gnits compatibility.
6044 2000-01-22  Kevin Dalley  <kevind@rahul.net>
6046         * added intl directory.
6047         * created po directory and added existing po files from
6048         http://www.iro.umontreal.ca/contrib/po/HTML
6050         * Added internationalization, only with slightly out of date po
6051         files for many locales.
6053 2000-01-18  Kevin Dalley  <kevind@rahul.net>
6055         * Version 4.1.2
6057         * locate/Makefile.am: remove creation of updatedb, since it is now
6058         made by configure
6060         * configure.in: updatedb is now created by configure.
6062         * xargs/Makefile.am: added testsuite to xargs directory
6064         * locate/updatedb.in: updatedb is now created by configure
6066         * locate/frcode.c, locate/code.c, locate/bigram.c: change return
6067         from main to int.  Replace getstr with getline, where possible.
6069         * locate/Makefile.am: place frcode, code, bigram in
6070         libexec_PROGRAMS
6072         * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
6073         lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
6074         lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
6075         lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
6076         lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
6077         lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
6078         lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
6079         lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
6080         lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
6081         lib/dirname.c, lib/alloca.c: updated to newer version of file from
6082         fileutils.
6084         * find/version.c: version number is now automatically generated by
6085         configure.
6087         * find/fstype.c (filesystem_type_uncached): fixes bug described as
6088         follows:  When 'find' looks for a fstype, it parses the /etc/mtab
6089         until it finds the good line. But, if there is, before the good
6090         line, a line whose mountpoint is unreachable, it fails.
6092         * doc/texinfo.tex: updated to newer version
6094         * doc/find.texi: added version.texi, fixed a few documentation bugs.
6096         * configure.in: new m4 features.
6098         * Makefile.am: moved testsuite to below corresponding directories
6099         find and xargs.
6101         * acconfig.h: updated to match new m4 files.
6103         * m4: added m4 directory, largely borrowed from Jim Meyering's
6104         fileutils.
6106 2000-01-17  Kevin Dalley  <kevind@rahul.net>
6108         * doc/find.texi (Multiple Files): placed missing xargs in examples
6110         * find/testsuite/find.gnu/depth.exp: added find tests to test
6111         "-depth" bug.
6113         * doc/find.texi: include version.texi for automatic determination
6114         of version number, update bug report email address to
6115         bug-findutils@gnu.org.
6116         (Combining Primaries With Operators): add indices for " ,", "()",
6117         "-a", "-o", etc.
6119 2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6121         * find/tree.c (opt_expr): Never rearrange the arguments of the
6122         comma operator, since it is not commutative.  Remove useless
6123         assignment.2
6125 2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
6127         * find/find.c (process_path): fix problem with "-depth" which is
6128         tested in depth.exp test.
6130 1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>
6132         * find/fstype.c (filesystem_type_uncached): a stat failure with
6133         EACCESS will ignore this file system keep on looking.  Patch
6134         suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.
6136 1999-08-15  Mark Kettenis  <kettenis@gnu.org>
6138         * xargs/xargs.c (LONG_MAX): Define if necessary.
6139         (main): If ARG_MAX is -1 (that is sysconf
6140         (_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
6141         that case, use LONG_MAX as the limit.
6143 1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>
6145         * find/version.c: version string is now set by config.h
6147 1999-08-08  Kevin Dalley  <kevin@seti.org>
6149         * Version 4.1.1
6151         * README-alpha: added alpha README file
6153         * find/defs.h: move lstat declarations into defs.h
6155         * xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
6156         lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
6157         Makefile.am: update for automake-1.4
6159 1999-08-02  Kevin Dalley  <kevind@rahul.net>
6161         * AUTHORS: added file listing AUTHORS
6163         * lib/Makefile.am: modified code for EXTRA sources
6165 1999-01-30  Kevin Dalley  <kevind@rahul.net>
6167         * added const to declaration of basename, which should satisfy
6168         Linux as well as Hurd (fixes bug #31325).
6170 1998-12-04  Kevin Dalley  <kevind@rahul.net>
6172         * lib/nextelem.c: removed declaration of strdup and free, which
6173         meets GNU coding standards and allows compilation on more
6174         platforms.
6176         * find.texi: corrected explanation of -amin option which described
6177         hours instead of minutes
6179 1998-09-26  Kevin Dalley  <kevind@rahul.net>
6181         * lib/getline.c: fix getstr so that it correctly handles long file
6182         paths
6184 1998-09-20  Kevin Dalley  <kevind@rahul.net>
6186         * removed more function declarations to meet GNU coding standards
6188 1998-08-30  Kevin Dalley  <kevind@rahul.net>
6190         * lib/nextelem.c: removed declaration of strdup and free, which
6191         meets GNU coding standards and allow compilation on sparc
6193         * corrected explanation of -amin option which described hours
6194         instead of minutes
6196 1998-02-27  Kevin Dalley  <kevind@rahul.net>
6198         * locate/locate.c: add --existing option to locate, which only
6199         prints the names of files which still exist
6201 1998-02-08  Kevin Dalley  <kevind@rahul.net>
6203         * locate/locate.c: corrected get_short so that it correctly
6204         returns negative numbers.
6206         * remove declarations of various string functions.  Removing the
6207         declarations almost matches the GNU Coding Standards.
6209 1997-03-03  Kevin Dalley  <kevind@rahul.net>
6211         * xargs/xargs.c: xargs fixed to prevent occasional core dumping.
6213 1997-01-11  Kevin Dalley  <kevind@rahul.net>
6215         * locate/updatedb.sh: add --localuser option to updatedb, which
6216         allows find to be run as nobody, while allowing database file to
6217         be created as root, change suggested by
6218         <Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
6220 1996-12-28  Kevin Dalley  <kevind@rahul.net>
6221         * added PRUNEFS as variable in updatedb and --prunefs as option to
6222         updatedb
6224 1996-05-27  Kevin Dalley  <kevind@rahul.net>
6226         * updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
6227         is root
6228 1996-04-27  Kevin Dalley  <kevind@rahul.net>
6230         * lib/getline.c (getstr): verify that nchars_avail is *really*
6231         greater than 0; set *n to a large enough number, stops some core
6232         dumping
6234 Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6236         * Version 4.1.
6238         * locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.
6240         * Makefile.am (distname): Change distribution name from find to
6241           findutils.
6243         * testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.
6245         * locate/Makefile.am (CLEANFILES): Fix typo.
6247 Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6249         * The big 4 0.
6251         * lib/listfile.c find/defs.h (list_file): Take a stream arg.
6252         * find/pred.c (pred_ls): pass it.
6253         * find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.
6255 Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6257         * find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
6258         Flack.
6260         * find/parser.c (insert_fprintf): Warn about unrecognized \ and %
6261         sequences.
6263 Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6265         * find/defs.h parser.c pred.c tree.c util.c: Globally change
6266         "victim" to "primary".
6268         * find/parser.c (insert_fprintf): For 'c' format, don't lose the
6269         need_stat information.  From Chapman Flack.
6271         * doc/find.texi perm.texi: New files.
6272         * configure.in: Configure the doc directory.
6274         * find/pred.c (pred_regex): Check that the regex matched the whole
6275         file name.
6277 Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
6279         * find/find.c (main): Tell what the invalid arg is.
6280         From Kaveh Ghazi.
6282 Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6284         * find/parser.c: Add -mount as an alias for -xdev.
6285         From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).
6287         * lib/modechange.c: Make umask_value unsigned short.
6289         * xargs/xargs.c: Use symbolic constants in longopts.
6290         From Chapman Flack.
6292 Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6294         * xargs/xargs.c (main, read_line, read_string, do_exec): Pass
6295           along the lengths of the args.
6296           (main): Calculate length of replace_pat.
6297           (push_arg, do_insert): Use those lengths instead of calculating
6298           them.
6300 Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
6302         * locate/updatedb.sh Makefile.in: Add substitutions to get
6303           the transformed program names.
6305         * xargs/xargs.c: Put back the global variables for now.
6306         Rename some variables.  Increase default args_per_exec.
6307         Use boolean where applicable.
6308         (main): Reduce default arg_max by 2048 for POSIX.2.
6309         (read_string): Don't check EOF string.
6310         (read_line, read_string): Take initial args size into account.
6312 Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6314         * find/pred.c (launch): Use pid_t.
6316         * xargs/xargs.c (EOF_STR): Define and use.
6317         [__STDC__]: Declare xrealloc and xmalloc using void *.
6318         * find/defs.h: Likewise.
6320         * find/defs.h: Only declare stpcpy if !HAVE_STPCPY.
6322         * xargs/xargs.c: Replace most global variables with structure
6323           pointers passed as arguments.  Use pid_t.
6324         * lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
6325         * configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.
6327         * xargs/xargs.c: Improve paging performance and memory
6328           fragmentation by building command arguments in a pre-allocated
6329           buffer and re-implementing the child pid list as an expandable
6330           array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6332 Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
6334         * xargs/xargs.c [__STDC__]: Prototype declarations.
6336 Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
6338         * find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.
6340 Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
6342         * find/fstype.c (fstype_to_string): Add more cases.  Use
6343           INITMOUNTNAMES if defined.
6344         * find/defs.h: Change boolean typedef from char to int.
6345         * configure.in: Check for mktime.
6347 Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)
6349         * configure.in: Add AC_HEADER_STAT.
6350         * lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.
6352         * find/pred.c: Move the inclusion of defs.h ahead of the first
6353           test of _POSIX_VERSION.
6355         * lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.
6357 Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6359         * configure.in: Add AC_CONFIG_HEADER.
6360         * find/*.c locate/*.c xargs/*.c: Include config.h.
6361         * locate/updatedb.sh: Add --version; --old -> --old-format.
6363 Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6365         * find/* [__STDC__]: Prototype declarations.
6367         * locate/updatedb.sh: Account for renaming code and frcode.
6369         * find/find.c (process_path): Store dev and ino of directories in
6370           current branch to avoid symlink loops.  From DJ Delorie
6371           <dj@ctron.com>.
6372           (process_dir): If following symlinks, don't cd to ..; instead,
6373           cd to the starting directory and then to the parent directory.
6374           (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
6375           (process_top_path) [HAVE_FCHDIR]: Use it.
6376         * find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
6377         * defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
6378         * configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.
6380 Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6382         * lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
6383         From Andreas Luik <luik@isa.de>.
6385 Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6387         * locate/locate.c (last_literal_end): Dynamically allocate enough
6388           memory for the subpattern.
6390 Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6392         * locate/locate.c (locate): Warn if database is >8 days old.
6393         From Ian Lance Taylor.
6395         * xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
6396           default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6397         * find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
6398           calls before error.  error does it, and doesn't trash errno.
6399           From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
6401         * find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
6402           number on HPUX.  From Andreas Luik <luik@isa.de>.
6403           (filesystem_type_uncached): Don't cache unknown file system
6404           types.  From casper@fwi.uva.nl (Casper Dik).
6406         * locate/updatedb.sh: Collect results in temp file and rename it
6407           atomically.  From Andreas Luik <luik@isa.de>.
6409         * xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
6410           Meyering.
6412         * find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
6413           Emulate strchr and strrchr with index and rindex, not vice versa.
6415         Remove man directory; move man pages to the directories of the
6416         programs they document.
6418         * locate/frcode.c: Renamed from code.c.
6419         * locate/frcode.c (put_short): Renamed from puthalfword.
6420         * locate/locate.c (get_short): Renamed from gethalfword.
6421         (last_literal_end): Renamed from patprep.
6422         (locate): Recognize old-format databases too.
6423         * locate/locatedb.h: Add defines for old-format databases.
6424         * locate/bigram.c locate/code.c: Put back programs to create
6425         old-format databases.
6426         * locate/updatedb.sh: Take --old option to use them.
6428 Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
6430         * configure.in: Update for Autoconf v2.
6431         * find/pred.c lib/savedir.c: Use new symbols for dir header.
6432         * locate/updatedb.sh: Add --help option.
6434 Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)
6436         * man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.
6438 Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6440         * bigram.c: File removed.
6441         * getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
6442         * updatedb.sh: Take command line options.
6443         Don't do bigram compression.
6444         * code.c, locate.c: Don't do bigram compression.
6445         Write and read counts in network byte order.
6446         Handle arbitrarily long paths.
6447         Use a magic number at the start of the databases.
6449 Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6451         * Makefile.in (config.status): Run config.status --recheck, not
6452         configure, to get the right args passed.
6454 Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6456         * listfile.c (list_file): Print inode as a long.
6458 Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6460         * fstype.c [STDC_HEADERS]: Include stdlib.h.
6462         * Move unistd.h include from parser.c and pred.c to defs.h.
6464 Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6466         * updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
6467         Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.
6469 Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6471         * pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.
6473 Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6475         * fstype.c (in_afs) [AFS]: New function, derived from code by
6476         Sanjay Ramamurthy <ramams@rpi.edu>.
6477         (filesystem_type_uncached) [AFS]: Call it if the fs type is
6478         otherwise unknown.
6480         * parser.c (parse_size): Recognize b and w suffixes for dd
6481         compatibility.
6483         * code.c (puthalfword): New function.
6484         (main): Call it.
6485         * locate.c (gethalfword): New function.
6486         (locate): Call it.
6487         From ifado!wb@germany.eu.net (Wilhelm B. Kloke).
6489         * listfile.c: Include pathmax.h.
6490         (get_link_name): Always allocate PATH_MAX + 1 bytes for
6491         readlink buffers.
6492         * pred.c (pred_fprintf, insert_lname): Call get_link_name.
6494         * fstype.c (filesystem_type, filesystem_type_uncached),
6495         listfile.c (list_file): Take an arg for the path to access.
6496         * pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.
6498         * find.c (process_dir): Renamed from scan_directory.
6500         Changes from jrs@world.std.com (Rick Sladkey) to chdir into
6501         subdirectories instead of using string concatenation, for speed:
6502         * find.c (process_top_path): New function.
6503         (main): Call it, and xgetcwd.
6504         (process_path, scan_directory): Take new arg, the pathname
6505         relative to ".".  Use it and pass it on.
6506         * pred.c (pred_and, pred_comma, pred_negate, pred_or,
6507         pred_xtype, pred_fprintf, pred_empty, insert_lname):
6508         access rel_pathname instead of pathname.
6509         (launch): chdir to starting_dir.
6510         * defs.h: Declare rel_pathname and starting_dir.
6511         * find.c: Define them.
6513         * xgetcwd.c: New file.
6515         * updatedb.sh: Recognize -fstype NFS as well as nfs.
6516         * locate.c (patprep): Skip trailing character classes correctly.
6517         From luik@pharao.stgt.sub.org (Andreas Luik).
6519         * parser.c (parse_group): Make gid a gid_t, not short or int.
6520         (parse_nogroup): Cast gid to unsigned when using it as an array index.
6521         (parse_user, parse_nouser): Similar changes for uid.
6522         * defs.h: Use uid_t and gid_t.
6524         * parser.c (parse_help): New function.
6525         (parse_table):  Add --version, -help, and --help options.
6526         Rename struct parser_table_t to struct parser_table.
6527         (parse_version): Exit after printing message, on
6528         stdout not stderr.
6530         * xargs.c, locate.c (main, usage): Add --version and --help
6531         options.
6533 Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)
6535         * parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
6536         * xargs.c: Ditto.
6538 Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6540         * pred.c (pred_fprintf): If curdepth is 0, don't nuke
6541         segment->text; nuke cp.
6543 Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6545         * Version 3.8.
6547 Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)
6549         * pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
6550         (pred_table): Add them.
6551         (insert_lname): New function.
6552         (pred_lname): Call it.
6553         * parser.c (parse_ilname, parse_iname, parse_ipath,
6554         parse_iregex): New functions.
6555         (parse_table): Add them.
6556         (insert_regex): New function.
6557         (parse_regex): Call it.
6559         * fstype.c (filesystem_type): Cache previous result.
6560         (filesystem_type_uncached): New function.
6561         pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.
6563         * parser.c: Don't define const.
6565         * fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
6566         MOUNT_PC for 386bsd.
6568 Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6570         * parser.c (parse_regex): If ignore_case, set up a translate
6571         table for the regex.
6573         * defs.h: Include string.h or strings.h.
6574         * find.c fstype.c parser.c pred.c util.c: Don't.
6576         * nextelem.c [index]: Don't redefine.
6578 Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6580         * xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
6581         status, not the wait status value.  From
6582         Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.
6584         * parser.c (make_segment, insert_fprintf), pred.c
6585         (pred_fprintf): Add '%F' to print filesystem type.
6587         * parser.c (parse_fprintf): Check if second arg is missing.
6589 Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6591         * pred.c (pred_fprintf): For %P, don't move past an assumed
6592         slash if the ARGV element ends with one, because in that case
6593         we didn't add one.
6595         * parser.c (parse_printf): Check for missing arg.
6596         From smj@cats.com (Steve James).
6598         * parser.c: Add #ifdef around atol decl for Linux.
6600 Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)
6602         * defs.h: Remove dcl of process_path.
6603         * find.c: Put dcl of p
6605         * pred.c (pred_fprintf): Don't print "\n" unless it's in the
6606         format string.
6608 Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6610         * defs.h, parser.c, pred.c: Rename some types that conflict
6611         with reserved POSIX.1 namespace (ended in _t).
6615 Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6617         * xargs.c: Don't determine memory.h based on POSIX, which
6618         doesn't mention it.
6620 Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
6622         * parser.c (parse_perm): Parse new `-perm +mode' notation.
6623         * pred.c (pred_perm): Interpret same.
6625 Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
6627         * xargs.c [POSIX]: Always use sysconf to get ARG_MAX.
6629 Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)
6631         * bigram.c, code.c (main): Make path_max int, not unsigned.
6632         * locate.c (main): Check for pathconf failure.
6634 Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
6636         * parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
6637         interpretation.
6638         * pred.c (pred_fprintf): fixed off-by-one indexing problem
6639         when handling [gGuU] printf formats.
6641 Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6643         * Version 3.2.
6645 Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
6647         * bigram.c, code.c: Fix handling of PATH_MAX.
6648         Check for anomalous input line lengths.
6649         From Bruce Evans.
6651 Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)
6653         * pred.c (pred_fprintf): Round block number up to get K.
6655 Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)
6657         * pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
6658         byte for link object since st_size is wrong.
6660         * listfile.c (list_file): Don't convert blocks to kilobytes if
6661         env. var POSIX_ME_HARDER is defined.
6663         * fstype.c [FS_AIX_STATFS]: New case.
6665         * configure: Make sure the sys/mount.h is the 4.4BSD version
6666         with grep instead of just testing whether it exists.
6668         * listfile.c (list_file): Add 1 to number of 512-byte blocks
6669         before dividing to get 1K blocks (so we round up, not down).
6671 Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6673         * Version 3.1.
6675         * parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
6676         conversion to print 1K blocks.
6678         * listfile.c: Print counts of 1K blocks, for consistency with
6679         new fileutils release.  Bad timing, there.
6681         * Version 3.0.
6683         * pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
6684         which returns void on some systems, like Sequents.
6685         * configure: Check sys/dir.h for 'void closedir'.
6687 Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)
6689         * modetype.h: Define POSIX.1 stat stuff if missing.
6690         * pred.c, parser.c, find.c, fstype.c: Don't define it.
6691         * updatedb.sh: Use a variable substitution method like configure's.
6692         * Makefile.in: Add datadir variable to separate programs from
6693         data file.
6695         * parser.c, pred.c: Rename -fulldays to -daystart.
6697         * defs.h, find.c, parser.c, pred.c: Add many new predicates
6698         from Jay Plett (jay@princeton.edu).
6700 Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)
6702         * parser.c (parse_size), pred.c (pred_size), defs.h (struct
6703         size_t): Allow `k' to follow number to measure size in Kbytes.
6704         * parser.c (parse_size, get_num, insert_num), defs.h (struct
6705         size_t): Use enum comparison_type instead of short.
6707 Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6709         * xargs.c (read_line): Use isblank, to support POSIX locales.
6711         * fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
6712         (Paul Slootman).
6713         * configure: Figure out when to use it.
6715         * configure: Check for st_blocks in struct stat.
6716         * listfile.c (ST_NBLOCKS): New macro.
6717         (list_file): Print file's block count.
6718         Use S_ISLNK instead of S_IFLNK.
6719         * fileblocks.c: New file, from fileutils.
6721 Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6723         * parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
6724         gid lookups into table lookups.
6726 Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)
6728         * configure, Makefile.in's: Support +srcdir option via VPATH.
6729         Clean up clean targets.
6731 Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)
6733         * configure: Filter /etc and /usr/etc from path.
6735         * xargs.c (wait_for_proc): Fix handling of child exit status.
6736         (main): Exit with a nonzero status if any child did.
6738         * pred.c (launch): Flush stdout and stderr before forking.
6740         * fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
6741         type "ignore".
6743 Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)
6745         * pred.c, locate.c: Use fnmatch instead of glob_match.
6746         * fnmatch.c, fnmatch.h: New files.
6748         * Many files: Use string.h if STDC_HEADERS, as well as if USG.
6750         * locate.c, code.c, bigram.c: Possibly use pathconf to get
6751         PATH_MAX.  Use malloc to allocate path arrays.
6753         * xargs.c: Possibly use sysconf to get ARG_MAX.
6754         (env_size): Make definition unconditional.
6755         (main): Do arg_max adjustment that can't be done with
6756         preprocessor now that ARG_MAX might be a function call.
6757         (do_exec): Exit with status 126 or 127 after failed exec, for
6758         POSIX.2 draft 11.1.
6760         * xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
6761         * wait.h: Use POSIX, not WAIT_MACROS_MISSING.
6763         * COPYING: Use version 2.  Update all files.
6765         * Replace Makefile and lib/Makefile with Makefile.in,
6766         lib/Makefile.in and configure.  Update README.
6768 Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)
6770         * Version 2.2.
6772 Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
6774         * xargs.c (main): Always run the command if some args are left over.
6775         Rename some variables.
6777 Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
6779         * bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
6780         _POSIX_SOURCE, to decide whether to include limits.h.
6782         * parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
6783         to decide whether to declare getpwuid and getgrgid.
6785         * xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
6786         to include memory.h.
6788 Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
6790         * defs.h, find.c, parser.c, pred.c: Remove -permmask option.
6792 Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
6794         * wait.h: Include sys/types.h to get pid_t.
6796         * xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
6797         _POSIX_SOURCE.
6799 Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
6801         * Version 2.1.
6803 Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)
6805         * locate.c, bigram.c, code.c: Attempt to get max. path length
6806         on more kinds of systems, incl. POSIX.
6808         * pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
6809         if available.
6811         * find.c, defs.h: Make `cur_day_start' a time_t, not long.
6813 Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)
6815         * defs.h, parser.c: Remove unused field from `struct exec_t'.
6817         * xargs.c: Add +no-run-if-empty option to cause the command to
6818         not be run if the input is empty.
6820         * defs.h (struct exec_t): Change the array of offsets into an
6821         array of `struct path_arg'.
6822         * parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
6823         to be substituted (multiple times) anywhere in an arg to -exec
6824         or -ok.
6825         * pred.c (pred_exec): Add code to substitute "{}" within args.
6826         (pred_ok): After prompting, just run pred_exec.
6828 Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)
6830         * fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
6831         "0x" at front of "dev=" mount option, which amd puts there but
6832         Sun automounter doesn't.
6834 Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)
6836         * find.c (main), util.c (usage): Make directory args optional,
6837         defaulting to ".".
6839 Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)
6841         * listfile.c: Define major and minor if not defined (as in POSIX).
6843 Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)
6845         * find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
6846         writing to stderr, in case they have been redirected to the
6847         same file descriptor.
6849         * pred.c (launch): Use POSIX wait macros from wait.h.
6851         * xargs.c (print_xargs): Read from tty_stream, not stdin.
6853 Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)
6855         * Version 2.0.
6857         * fstype.c [FS_USG_STATFS]: New code.
6858         [FS_STATFS]: For symlinks, statfs the directory the link is in
6859         instead of the link.
6860         * Various files: Conditionalize some declarations on
6861         STDC_HEADERS or _POSIX_SOURCE.
6863 Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)
6865         * modetype.h: New file.
6866         parser.c, pred.c: Use it.
6868 Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)
6870         * xmalloc.c: New file from fileutils.
6872         * fstype.c (fstype_to_string): Add case for MFS.
6873         (filesystem_type): Take a pathname as a second arg.
6874         [FS_STATFS] return "unknown" instead of exiting if statfs
6875         fails because of ENOENT.
6876         * pred.c (pred_fstype): Pass the pathname.  Set current_dev.
6877         * find.c (process_path): Make root_dev local again.
6879 Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)
6881         * pred.c (pred_fstype): Free old fs type.
6883         * fstype.c, pred.c (pred_fstype), parser.c (parse_fstype):
6884         Reread the file system type info. every time a filesystem
6885         mount point is crossed, to allow for automounting.
6887         * xstrdup.c: New file from fileutils.
6889         * find.c (process_path): Rename root_dev to current_dev and
6890         make it global, for -fstype.
6892         * wait.h: New file taken from xargs.c.
6894         * xargs.c: Make limits.h vs. sys/param.h conditional on
6895         LIMITS_MISSING instead of USG, to accomodate SVR2.
6897 Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)
6899         * parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
6900         getpwuid and getgrgid.  Use them.
6902         * listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
6903         S_ISBLK.  Use them.
6905         * find.c: Use S_ISDIR instead of S_IFDIR, and define if not
6906         _POSIX_SOURCE.
6908         * Makefile: Define AR and RANLIB and pass to child makes.
6909         lib/Makefile: Use them.
6911         * xargs.c (WIFSIGNALED): Redefine so it works.
6913 Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)
6915         * find.c (process_path): For -xdev, process filesystem
6916         mountpoints (but don't descend them), instead of skipping them
6917         entirely.
6919         * find.c, parser.c, defs.h: Add -follow predicate.
6921         * xargs.c: Change ifdefs to support STDC POSIX systems.
6923 Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)
6925         * xargs.c (do_exec): Child process exits with status 255, not
6926         127, if command can't be run.
6928 Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)
6930         * xargs.c: Exit with status 127 if running commmand fails, as
6931         required by POSIX.
6933         * fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
6934         Sun/BSD code is now -DFS_MNTENT.
6936 Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)
6938         * Reorganize into subdirectories and add xargs.  Rewrite Makefiles.
6940         * find.c (process_path, main): Allow a maxdepth of 0, meaning
6941         only process command line args.
6943         * parser.c, pred.c: Add -print0 predicate.
6945         * xargs.c: Add -0 option and long options.  Move standard
6946         library functions into separate files.  Use error instead of
6947         fatal and fprintf/perror.  Use POSIX macros for examining exit
6948         status from wait.
6949         (read_string): New function.
6951 Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)
6953         * find.c (process_path): Take DEPTH as an arg instead of ROOT,
6954         and change callers.
6956 Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)
6958         * parser.c (parse_maxdepth): New function.
6959         * find.c (process_path): If -maxdepth was given, don't go
6960         more than that many levels deep.
6961         * defs.h: Declare maxdepth.
6963 Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)
6965         * parser.c: Add -not as synonym for !.
6967 Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
6969         * Makefile (TAGS): New target.
6971 Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6973         * xargs.c (main): Tell getopt to not permute.
6975 Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
6977         * parser.c (parse_perm), pred.c (pred_perm): Always compare
6978         bits 07777.
6980         * locate.c, Makefile: Rename 'fastfind' program to 'locate',
6981         following comment in POSIX.2 draft 10 rationale for find.
6983 Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6985         * listfile.c (getuser, getgroup): Make uid and gid unsigned
6986         short, not int.
6988 Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6990         * defs.h: Don't declare fprintf and printf, in case they have
6991         prototypes in stdio.h (important for functions that use stdarg).
6993 Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6995         * parser.c (parse_and): New function, for compatibility.
6997 Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)
6999         * find.c (main): Only enclose expressions that produce no side
7000         effects within `( ... )'.
7002 Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)
7004         * parser.c (strspn): Stop when end of string reached.
7006         * Version 1.2.
7008         * Move version number from Makefile to new file version.c.
7009         * parser.c: Recognize new -version predicate.
7011         * find.c (main): If no predicates that produce output are
7012         given, default to -print if the entire expression is true, not
7013         just the last part of an alternation.
7014         * Print the names of predicates with invalid arguments.
7016 Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)
7018         * pred.c: Don't check for invalid comparison types in numeric
7019         predicate functions.
7021 Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)
7023         * parser.c (parse_regex): Set fastmap and translate before
7024         compiling regex.
7026 Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7028         * fastfind.c (fastfind): Initialize count to 0.
7030         * lib/updatedb.sh: Only do regex comparison on directories,
7031         for speed.
7033         * listfile.c (list_file): Truncate user and group name to 8 chars.
7035 Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7037         * Version 1.1.
7039         * Makefile [DISTFILES]: Add COPYING.
7041 Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7043         * Version 1.0.
7045 Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7047         * lib/updatedb.sh: Prune entries that match PRUNEREGEX.
7048         Split up finding files from computing bigrams.
7049         Use redirection instead of nonportable grep -s to detect sort
7050         failure.  Optionally search network filesystems as well as
7051         local ones.
7053         * pred.c (pred_regex): Match against full pathname instead of
7054         just last element.
7055         * util.c (basename): Return "/", not "", if given "/".
7057         * find.c (process_path): Fix error in handling "/" directory.
7059 Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)
7061         * parser.c [STRSPN_MISSING] (strspn): New function.
7063 Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)
7065         * listfile.c: New file.
7066         * parser.c (parse_ls): New function.
7067         * pred.c (pred_ls): New function.
7069         * find.c (main): Remove interface to fastfind, to prevent
7070         conflict with POSIX syntax.
7071         * util.c (usage): Remove fastfind syntax from message.
7072         * fastfind.c (main): New function.
7073         * Makefile: Make fastfind a separate program.
7075         * find.c (main): Print correct message if a predicate arg is
7076         missing.
7078         * parser.c (insert_exec_ok): Make args that start with a ';' but
7079         contain other characters not terminate the command.
7081 Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7083         * fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
7084         instead.  True for HP/UX, at least.
7086 Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7088         * savedir.c: New file; now find won't run out of file
7089         descriptors in deep trees.
7090         * find.c (process_path): Use savedir.
7092 Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7094         * parser.c (parse_permmask): Allow symbolic mode masks.
7095         (parse_perm): Free 'struct change' when done with it.
7096         (get_oct): Function removed.
7098         * find.c (process_path): Allow arbitrarily-long filenames.
7099         More efficient string copying.  Initialize perm_mask to 07777
7100         instead of -1.
7102 Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7104         * Makefile, find.c: Use DIRENT to control whether <dirent.h>
7105         is used.
7107 Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7109         * parser.c (parse_regex): New function.
7110         * pred.c (pred_regex): New function.
7112         * fstype.c (read_mtab): If mtab entry has a "dev=" option
7113         (like in SunOS 4.1), use it, so there is no need to stat the
7114         special file later on.
7115         (xatoi, strstr): New functions.
7117 Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)
7119         * lib/updatedb.sh: Put BINDIR in PATH.
7121         * fstype.c: Do nothing if MNTENT_MISSING is defined.
7123         * fstype.c: New file.
7124         * parser.c (parse_fstype): New function.
7125         * pred.c (pred_fstype): New function.
7127         * parser.c (parse_newer): Failure to stat -newer file is a
7128         fatal error.
7130         * pred.c (pred_ok): Flush output before reading.  Use getchar
7131         instead of scanf.
7133         * pred.c (pred_prune): Return false if -depth given.
7134         * find.c: Apply the predicates to the dir when -depth and
7135         -prune are given.
7137 Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7139         * pred.c (pred_prune): Set new global var `stop_at_current_level'.
7140         * find.c (process_path): Test and reset it.
7142 Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)
7144         * modechange.c, modechange.h: New files.
7145         * parser.c (parse_perm): Use mode_compile and mode_adjust to
7146         parse arg, to allow symbolic mode for POSIX.
7148 Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)
7150         * parser.c (get_oct): Don't consider an empty string a valid number.
7152         * parser.c (parse_perm): If arg starts with '-', set flag bit
7153         for special comparison (POSIX).
7154         * pred.c (pred_perm): If flag bit set, compare s[ug]id &
7155         sticky bits as well, and return true if the given perms are
7156         set, ignoring other bits.
7158         * find.c: New global var `exit_status'.  Use it.  (POSIX)
7159         * parser.c: Set `exit_status' if lstat on -newer file fails.
7161         * fastfind.c: New file.
7162         * find.c (main): Call fastfind if given only 1 arg.
7163         * util.c (usage): Update message.
7164         * lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
7165         * Makefile: Add 'all' and 'install' targets.
7167 Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)
7169         * parser.c (parse_nogroup, parse_nouser): Implement.
7170         * pred.c (pred_nogroup, pred_nouser): Implement.
7172 Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)
7174         * find.c: Add variable `stay_on_filesystem' for -xdev.
7175         (process_path): Take an arg determining whether this call is
7176         the root of a tree.  Use lstat instead of stat.  If
7177         stay_on_filesystem, don't process a dir on a different
7178         filesystem.
7180         * parser.c (parse_newer): Use lstat instead of stat.  Is this right?
7181         (parse_xdev): Set stay_on_filesystem.
7183         * parser.c: Add dummy parse_nogroup, parse_nouser,
7184         parse_prune, and parse_xdev; to be written later.
7185         * pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.
7187         * find.c: Support System V directory library/headers.
7189         * find.c (process_path): Don't continue with a file that stat
7190         fails on.
7192         * defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
7193         'unsigned long' and 'unsigned short'.
7194         * find.c, defs.h: Remove 'convert_glob' variable.
7195         * parser.c (parse_fullregex): Function removed.
7196         (parse_name): Remove regular expression code.
7197         (parse_type): Recognize sockets.
7198         Add code to check for missing arguments to many parse_* functions.
7199         * pred.c (pred_name): Use glob_match instead of regex.
7201 Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7203         * Replace fprintf, simple_error, and mem_error with error and
7204         usage.
7206         * Fix string header includes for USG.
7208 Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7210         * defs.h: Change some #defines to enums.
7212 Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7214         * find.c (main): Don't take basename of argv[0].
7216         * util.c (xmalloc): New function.
7217         * find.c, parser.c, utils.c: Use xmalloc instead of malloc.
7219         * pred.c: Remove emulation of regex for BSD and use GNU
7220         library version in regcmp.c instead.
7221         * parser.c: Remove emulation of regcmp for BSD and use GNU
7222         library version in regcmp.c instead.
7223         * Makefile: Link with regex.o and regcmp.o.
7224         Add a DISTFILES macro and dist target.
7226         * Indent source code.  Move RCS logs to this file.
7228 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7230         * xargs.c: Indent.  Comment and rename some global variables.
7231         (main): Use getopt to parse options.  Open new global var
7232         `tty_stream' to /dev/tty if querying requested.
7233         (print_args): Read response from tty_stream, not stdin.
7234         (xmalloc): New function.
7235         Global: Use xmalloc instead of malloc.
7236         (usage): Revise message.
7238 87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)
7240         * pred.c: added guts to pred_size
7242 87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)
7244         * pred.c: added guts to perm and permmask.
7246 87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)
7248         * pred.c: made pred_name only look at the last component of
7249         the path.
7251 87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)
7253         * pred.c: added guts to name.  useds regex and regcmp to do
7254         regular expression handling.
7256 87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)
7258         * pred.c: added predicate newer
7260 87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)
7262         * pred.c: added guts to pred_ok
7264 87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)
7266         * pred.c: finished exec.
7268 87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)
7270         * parser.c: added guts to parse_size
7272 87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)
7274         * parser.c: added guts of perm and permmask.  added getoct
7275         routine for perm and permmask
7277 87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)
7279         * parser.c: added -fre, -fullregex predicate to turn off
7280         globbing conversion
7282 87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)
7284         * parser.c: reworked name so the regexpr pattern includes $ at
7285         the end to force globbing to work correctly.  End of the
7286         pattern refers to the end of the filename.
7288 87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)
7290         * parser.c: added guts to name.  uses a conversion from
7291         globbing to regexp format.  uses regex and regcmp to actually
7292         to the comparison.
7294 87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)
7296         * parser.c: added predicate newer
7298 87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)
7300         * parser.c: added ok guts.  consolidated exec and ok to using
7301         insert_exec_ok
7303 87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)
7305         * parser.c: minor bug in -fulldays predicate parser.  It
7306         should have set the flag full_days to true.
7308 87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)
7310         * find.c: changed where we are setting perm_mask to -1.  need
7311         to make sure that this happens before every apply_predicate.
7313 87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)
7315         * find.c: added error checking for no paths.  better error
7316         message if illegal ordering.
7318 87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)
7320         * find.c: added global convert_glob
7322 87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)
7324         * defs.h: added definition of BLKSIZE for size
7326 87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)
7328         * defs.h: added global convert_glob for name