Savannah bug #19948: Fixed an assertion failure on IRIX 6.5 (O_NOFOLLOW is defined...
[findutils.git] / ChangeLog
blob889b03833abe5d02a8d39cab0a35f39f5ab1818f
1 2007-05-24  James Youngman  <jay@gnu.org>
3         * find/util.c (check_nofollow): If O_NOFOLLOW is defined but 0,
4         act as if it is undefined.  This should prevent a runtime
5         assertion failure on IRIX 6.5.  This fixes Savannah bug #19948.
6         
7         * m4/noreturn.m4: New file, testing for support of __attribute__
8         ((__noreturn__)).  Defines jy_AC_ATTRIBUTE_NORETURN and sets
9         HAVE_ATTRIBUTE_NORETURN. 
10         * configure.in: Call jy_AC_ATTRIBUTE_NORETURN.
11         * find/defs.h (ATTRIBUTE_NORETURN): Define to nothing if
12         HAVE_ATTRIBUTE_NORETURN is not set in config.h.  This should fix a
13         compilation error with non-GCC compilers.
14         
15         * configure.in (FINDLIBS): Update FINDLIBS to link against -lm for
16         modf.   This fixed a link error on HP-UX. 
17         * find/Makefile.am (LDADD): Use @FINDLIBS@
19 2007-05-21  James Youngman  <jay@gnu.org>
21         * build-aux/Makefile.am (EXTRA_DIST): Added man-lint.sh.
23         * locate/locate.c (drop_privs): pass the correct list of groups to
24         setgroups().  Previously, if root invoked locate, their group ID
25         would have been set to a random value.  The same bug also caused
26         an array overrun past the end of the local array groups[].  The
27         variable which gets overwritten by the buffer overrun on x86 is
28         'what'.  The value of that variable is always changed before it is
29         used, and so I believe that this buffer overrun will not cause a
30         crash.  The only effect of the bug therefore would be for locate
31         to change group to a random group ID since groups[0] is
32         uninitialised.  On my test system this random group ID is 0
33         anyway.  The effect does not depend on any externally-controllable
34         information, so it is unlikely this is exploitable.   This bug is
35         detailed as bug# 19923.
37 2007-05-19  James Youngman  <jay@gnu.org>
39         * find/find.1: Spurious .R directives (.R is not a directive)
40         should be .B.   This fixes Savannah bug #19871.
41         * build-aux/man-lint.sh: New file; verifies that the specified
42         manual pages do not provoke error messages from troff.  This is
43         used to detect further occurrences of Savannah bug #19871.
44         * find/Makefile.am (dist-hook): Run findutils-check-manpages,
45         which invokes man-lint.sh.
46         * locate/Makefile.am (dist-hook): ditto
47         * xargs/Makefile.am (dist-hook): ditto
49         * .cvsignore: Ignore ylwrap, which automake-1.10 wants us to have
50         a copy of for some reason
52         * import-gnulib.sh (main): New option -a which just runs the
53         autotools without reimporting gnulib.
55         * Makefile.am (jy-regex-fix): The previous explanatory comment
56         refers to the jy-regex-fix target, not to dist-hook, so it has
57         been moved.
59 2007-05-08  James Youngman  <jay@gnu.org>
61         * find/defs.h (struct predicate.args): str is now const.
63         * find/parser.c (get_comp_type): get_comp_type now takes a const
64         char* parameter.
65         (get_num): ditto
66         (get_relative_timestamp): ditto.  Also use collect_arg().
67         (collect_arg_stat_info): New function; collects a command-line
68         argument and returns its xstat information, in one go.
69         error(1,...)  is called if the stat fails.
70         (parse_anewer): Use collect_arg().
71         (parse_cnewer): ditto
72         (parse_fprint): ditto
73         (parse_fstype): ditto
74         (parse_group): ditto
75         (parse_ilname): ditto
76         (parse_iname): ditto
77         (parse_iwholename): ditto
78         (parse_lname): ditto
79         (insert_depthspec): ditto
80         (parse_name): ditto
81         (parse_newer): ditto
82         (parse_wholename): ditto
83         (parse_perm): ditto
84         (parse_regextype): ditto
85         (insert_regex): ditto
86         (parse_samefile): ditto
87         (parse_used): ditto
88         (parse_user): ditto
89         (insert_type): ditto
90         (parse_time): ditto
91         (parse_size): When the size argument is invalid but consists only
92         of a valid suffix char, avoid issuing an error message about a
93         blank argument.  Append the suffix letter again.
94         (parse_xdev, parse_ignore_race, parse_noignore_race, parse_warn,
95         parse_xtype): Remove casts to void for some function parameters
96         that were, in fact, used.
98         * find/testsuite/find.gnu/fprint-unwritable.exp: new test
99         * find/testsuite/find.gnu/fprint0_stdout.exp: new test
100         * find/testsuite/find.gnu/fprint0_stdout.xo: new test
101         * find/testsuite/find.gnu/mindepth-arg.exp: new test
102         * find/testsuite/find.gnu/mindepth-arg.xo: new test
103         * find/testsuite/find.gnu/mindepth-badarg.exp: new test
104         * find/testsuite/find.gnu/print_stdout.exp: new test
105         * find/testsuite/find.gnu/print_stdout.xo: new test
106         * find/testsuite/find.gnu/samefile-missing.exp: new test
107         * find/testsuite/find.gnu/samefile-p-brokenlink.exp: new test
108         * find/testsuite/find.gnu/samefile-p-brokenlink.xo: new test
109         * find/testsuite/find.gnu/used-invarg.exp: new test
110         * find/testsuite/find.gnu/used-missing.exp: new test
111         * find/testsuite/find.gnu/user-invalid.exp: new test
112         * find/testsuite/find.posix/group-empty.exp: new test
113         * find/testsuite/find.posix/group-missing.exp: new test
114         * find/testsuite/find.posix/name-missing.exp: new test
115         * find/testsuite/find.posix/size-invalid.exp: new test
116         * find/testsuite/find.posix/size-missing.exp: new test
117         * find/testsuite/find.posix/typearg.exp: new test
118         * find/testsuite/find.posix/user-empty.exp: new test
119         * find/testsuite/find.posix/user-missing.exp: new test
121 2007-05-06  James Youngman  <jay@gnu.org>
123         * find/tree.c: (costlookup): Added pred_fls to the optimiser's
124         predicate cost lookup table.
126         * lib/printquoted.c (print_quoted): Change return value from void
127         to int, to allow the caller to detect failures.
128         * lib/printquoted.h (print_quoted): Change declaration
129         accordingly.  
131         * find/defs.h (struct format_val): Incldue a 'filename' member so
132         that we can provide more useful error messages (e.g. when we fail
133         to flush or close an output file).
134         (nonfatal_file_error): declare new function.
136         * find/util.c (traverse_tree): Utility function which calls a
137         callback on every node of the parse tree.
138         (flush_and_close_output_files): Flush all output streams.  Close
139         all output files.  Report any errors.
140         (cleanup): Use traverse_tree() to invoke
141         complete_pending_execdirs().
142         (report_file_err): refactored error reporting function, extracted
143         from fatal_file_error.
144         (nonfatal_file_error): New function.
146         * find/pred.c (checked_fprintf): New function, which performa an
147         fprinf(), and checkes the result.  If the operation resulted in an
148         error, a nonfatal error message is issued.
149         (checked_print_quoted): Ditto, for print_quoted rather than
150         fprintf.
151         (checked_fwrite): Ditto for fwrite instead of fprintf.
152         (checked_fflush): Ditto for fflush
153         (do_fprintf): Use the checked_*() functions rather than their
154         direct counterparts, to ensure that I/O errors are detected.  This
155         fixes Savannah bug #19416.
156         (pred_fls): Use args.printf_vec instead of args.stream, which has
157         now been removed. 
158         (pred_ls): just call pred_fls.
159         (pred_fprint0): use args.printf_vec, instead of the now removed
160         args.stream.
161         (pred_print0): just call pred_fprint0
163         * find/parser.c: (insert_fprintf): Make the caller collect the
164         format argument from the argument list.
165         (open_output_file): Enhance to set up defaults in
166         our_pred->args.printf_vec as well as opening the output file.
167         Also record the filename for possible later use in an error
168         message. 
169         (collect_arg): Convenience function for collecting an argument
170         from the argument list.
171         (insert_fls): Refactored the body of parse_fls out so that
172         parse_ls can use it.
173         (parse_fls): call insert_fls.
174         (parse_ls): ditto
175         (parse_fprint): Instead of setting up our_pred->args.printf_vec
176         manually, call open_output_file() to do it.
177         (parse_print): Same, but by calling open_stdout().
178         (insert_fprint): Make the caller collect the filename argument,
179         and delegate the setup of our_pred->args.printf_vec to either
180         open_output_file() (for parse_fprint and parse_fprint0) or
181         open_stdout (parse_print0).
182         (parse_fprint0): Use collect_arg().
183         (parse_print0): Use insert_fprint(), just like parse_fprint0.
184         (parse_printf): Use collect_arg().
185         (parse_fprintf): Use collect_arg().
187 2007-05-05  James Youngman  <jay@gnu.org>
189         * find/parser.c (parse_samefile): Hold a file descriptor open on
190         the reference file in order to prevent pred_samefile getting
191         fooled by inode reuse.  Pay attention to race conditions on
192         systems lacking O_NOFOLLOW when the -P option is in force.  This
193         fixes Savannah bug #19806.
195         * find/defs.h (struct samefile_file_id): New struct, like dir_id
196         but including a file descriptor on the reference file.
198         * find/pred.c (pred_type): -type should return false if the file
199         has mode 00000, as opposed to having an assertion failure.   This 
200         fixes Savannah bug #16378.
202         * find/ftsfind.c (consider_visiting): Issue a warning message if
203         none of the mode bits are set for a file (i.e. st_mode==00000).
204         * find/util.c (get_statinfo): ditto
205         * find/util.c (hook_fstatat): Introduced debug code (normally
206         disabled) for testing Savannah bug #16378.
207         
208 2007-05-01  James Youngman  <jay@gnu.org>
210         * find/find.c (wd_sanity_check): corrected the type of %ld fprintf
211         arguments in error messages.  
212         * find/fstype.c: include "error.h" for the declaratio of error().
213         * find/ftsfind.c: include "error.h" for the declaratio of
214         error().  Include dircallback.h for the correct declararion of
215         run_in_dir(). 
216         * find/parser.c: include getdate.h (for declaration of getdate)
217         and error.h (for the declaration of error).
218         (find_parser): Removed unused variable p.
219         * find/pred.c (pred_timewindow): Removed unused variable delta.
220         (do_fprintf): Removed unused variable cc.
221         * find/tree.c: Include error.h (for the declaration of error()).
222         (build_expression_tree): removed sourious extra arguments in call
223         to error().
224         * find/util.c: include error.h.  
225         * lib/buildcmd.h (get_line_max): Comment out unused function.
226         * lib/listfile.c: Include dircallback.h.
227         * locate/code.c: Include errno.h, erorr.h, progname.h and
228         xlloc.h. 
229         (inerr): New function for reporting read errors.
230         (outerr): New function for reporting output errors.
231         (main): Call inerror when fgets fails.  Call outerr when fwrite
232         or putc or putw fails.  
233         * locate/frcode.c (put_short): Return boolean value indicating
234         success.  
235         (outerr): New function for reporting write errors.
236         (main): Call outerr if call to putc() or puts() or put_short()
237         fails.    
238         * locate/locate.c (search_one_database): diagnose corruption if a
239         traditional-style database is too short to include a complete
240         bigram table.
242 2007-04-30  James Youngman  <jay@gnu.org>
244         * find/defs.h: Change all predicate functions to take a const
245         char* argument as the pathname, not a char*.  Modify the parser
246         table definition accordingly.
247         * find/parser.c: Ditto
248         * find/pred.c: Ditto
249         * find/pred.c (do_fprintf): copy the pathname string for the %H
250         and %h cases, since we can no longer modify the string in place.
251         * lib/listfile.c (print_name, list_file,
252         print_name_without_quoting, print_name_with_quoting): Use const
253         char * param for pathname.
254         * lib/listfile.h (list_file): Use const char * param for
255         pathname. 
257 2007-04-29  James Youngman  <jay@gnu.org>
258         
259         * find/defs.h: Declare fatal_file_error(), a function for
260         reporting immediately-fatal file errors, which appropriately
261         quotes the file name.  The function does not return.  Also define
262         ATTRIBUTE_NORETURN.  Record the currently-required quoting style
263         in struct options.
265         * find/find.c, find/ftsfind.c, find/parser.c, find/pred.c,
266         find/util.c: Call fatal_file_error() for fatal file errors.  Use
267         quotearg_n_style() to quote filenames which are used in error
268         message that aren't fatal.  Use options.err_quoting_style as the
269         quoting style.  This fixes Savannah bug #18203.
270         * locate/locate.c: ditto
271         * xargs/xargs.c: ditto
273         * lib/listfile.c: To use alloca, just #include <alloca.h>.  Gnulib
274         handles the rest.  Also these days, <stdlib.h> and <string.h> can
275         just be included unconditionally.
276         * lib/qmark.c: Fixed comment on first line describing the module.  
278 2007-04-29  Michael Haubenwallner <michael.haubenwallner@salomon.at> (Trivial Change)
280         * find/defs.h (pred_open) Rename to pred_openparen to avoid
281         problems with the macrtos which build the parser tabnles on
282         platforms where 'open' is in fact a macro whcih expands to
283         open64.   The problem was that token pasting put pred_open64 into
284         the parser table, but the function was still defined as
285         parse_open.   This fixes Savannah bug #19371.
286         (pred_close): ditto
287         * find/parser.c (parse_open, parse_close): ditto.  Also change
288         repferences to pred_open and pred_close similarly.
289         * find/parser.c (parse_openparen, parse_closeparen): ditto
291 2007-04-28  James Youngman  <jay@gnu.org>
293         * find/testsuite/find.gnu/deletedir.exp,
294         find/testsuite/find.gnu/deletedir.xo: New test.
295         * find/testsuite/find.gnu/deletefile.exp,
296         find/testsuite/find.gnu/deletefile.xo: New test.
297         * find/testsuite/Makefile.am: Distribute the new tests
298         deletefile.exp and deletedir,exp, with their expected-output (.xo)
299         files too.
300         * find/testsuite/config/unix.exp (find_start): Add a new "setup"
301         parameter called just before each time find is invoked.  This
302         allows last-minute tasks to be performed.  This feature is
303         essential for find commands that modify the filesystem, since
304         otherwise we cannot use our strategy of invoking both binaries at
305         each optimisation level.
306         
307         * find/util.c (optionh_stat, optionp_stat, optionl_stat): Assert
308         that state.cwd_dir_fd is valid.
310         * find/parser.c (parse_delete): Set need_stat to false, since we
311         don't need the stat information in pred_delete.
312         * find/pred.c (pred_delete): If unlinkat() with a zero flags
313         parameter fails with errno==EISDIR, just try again with
314         flags=AT_REMOVEDIR.  That way we normally avoid the cost of a
315         stat.  If we happen to have the stat information to hand anyway,
316         we make sure we get it right the first time.
318         * lib/buildcmd.c (bc_init_controlinfo): Eliminate confusing extra
319         variable arg_max.  Add return value
320         BC_INIT_CANNOT_ACCOMODATE_HEADROOM for the case where the
321         environment itself is not too large, but the required headroom
322         cannot also be accomodated.  The caller now passes in the amount
323         of headroom required.  
324         (bc_use_sensible_arg_max): Use the environment size consistently;
325         this is accounted for already in posix_arg_size_max, so there is
326         no need to re-measure the size of the environment.
327         * lib/buildcmd.h: Define BC_INIT_CANNOT_ACCOMODATE_HEADROOM and
328         add the headroom parameter to the prototype of bc_init_controlinfo().
329         * xargs/xargs.c (main): Define XARGS_POSIX_HEADROOM as 2048 and
330         use that symbolic value.  Pass XARGS_POSIX_HEADROOM to
331         bc_init_controlinfo().  Handle the case where
332         BC_INIT_CANNOT_ACCOMODATE_HEADROOM is returned by
333         bc_init_controlinfo().  
334         * find/parser.c (new_insert_exec_ok): Pass the required headroom to
335         bc_init_controlinfo() and handle the error return
336         BC_INIT_CANNOT_ACCOMODATE_HEADROOM.  
338         * xargs/xargs.1: Correct the description of the default value and
339         maximum value for the -s option of xargs.
341         * xargs/xargs.c (main): Modify the assertions not to assume that
342         bc_ctl.arg_max is 2KiB less than ARG_MAX, since sysconfig() may
343         have returned a value for _SC_ARG_MAX which is greater.  For
344         example, AIX 5.3 can do this.  This should fix Savannah bug
345         #19391. 
347 2007-04-25  James Youngman  <jay@gnu.org>
349         * find/tree.c (predlist_dump, predlist_merge_nosort): These
350         functions were unused and commented out.  Removed.
351         (mark_stat) No longer used.  Removed.
352         (mark_type) No longer used.  Removed.
353         
354         * find/parser.c (new_insert_exec_ok): When checking for {} in the
355         arguments to -exec..., use mbsstr() rather than strstr() in order
356         to cope bettwe with multibyte locales.
358         * lib/buildcmd.c: Don't define mbsstr() locally.  Instead, call
359         gnulib's mbsstr().
361 2007-04-24  James Youngman  <jay@gnu.org>
363         * lib/buildcmd.c: Added some comments outlining how we might
364         change the implementation to support figuring out the real ARG_MAX
365         limit.
367 2007-04-23  James Youngman  <jay@gnu.org>
369         * find/defs.h (struct predicate_performance_info): New data
370         structure for holding perofmance statistics.
371         (struct predicate: include predicate_performance_info
372         (apply_predicate): change from macro to function
373         (pred_is): new macro, for predicate identity testing
374         (enum DebugOption): Added DebugSuccessRates
375         * find/find.1: Document option "-D rates" which turns on 
376         DebugSuccessRates. 
377         * doc/find.texi: ditto
378         * find.c (main): Call show_success_rates() before exiting.
379         (apply_predicate): remove the macro defintion, declare equivalent
380         function in defs.h.
381         * find/ftsfind.c (main): Call show_success_rates() before
382         exiting.  Use apply_predicate().
383         (show_outstanding_execdirs): use pred_is().
385         
387 2007-04-22  Eric Blake  <ebb9@byu.net>
389         * xargs/xargs.c (main): Don't assume LINE_MAX exists (i.e. is
390         #defined).
392         * locate/updatedb.sh (PRUNEPATHS): Exclude /proc by default.
394 2007-04-22  James Youngman  <jay@gnu.org>
396         * doc/Makefile.am: When cross-compiling, 'make clean' should not
397         delete doc/regexprops.texi, becaue we can't regenerate it.  Fixes
398         Savannah bug #19658.
400         * locate/Makefile.am (BUILT_SOURCES): Automatically generate
401         dblocation.texi, which records the default database location.
402         * doc/find.texi: Collect the default database location from
403         ../locate/dblocation.texi, and use LOCATE_DB in various places.
404         Document the fact that updatedb can generate slocate-compatible
405         databases.  Document the --dbformat option of updatedb.
406         * locate/frcode.c (main): Implemented the -S option which allows the
407         generation of an slocate secure database.  
408         * locate/updatedb.sh: New option --dbformat which selects which
409         database format to use.   
410         * locate/updatedb.1 (--dbformat): Document the new option.
411         
413         * find/testsuite/find.gnu/access.exp: fixed a typo which prevented
414         the test correctly being skipped when run as root.   This re-fixes
415         Savannah bug# 18414, I hope.
417 2007-04-21  James Youngman  <jay@gnu.org>
419         * find/locate/locatedb.5: Clarifications to the description of the
420         LOCATE02 format.  Organised the material under a number of
421         headings.  Documented the slocate database format.
423 2007-04-21  James Youngman  <jay@gnu.org>
425         * find/testuite/Makefile.am (EXTRA_DIST_EXP): added
426         find/testsuite/find.posix/sv-bug-19617.exp
428 2007-04-20  Maxim V. Dziumanenko <dziumanenko@gmail.com>
430         * po/uk.po: New Ukranian translation.
431         * configure.in: Added "uk" for Ukranian.
433 2007-04-19  Peter Breitenlohner <peb@mppmu.mpg.de> (Trivial change)
435         * locate/bigram.c (main): Set the initial pathname to the empty
436         string, to avoid decompression problems if the initial pathname
437         begins with a space.  This fixes Savannah bug #19484.
438         * locate/code.c (main): ditto
440 2007-04-19  James Youngman  <jay@gnu.org>
442         * locate/updatedb.1 (--help): Option name should be bold, not
443         italic.
445         * find/testsuite/find.gnu/execdir-hier.exp: Avoid running 
446         -execdir based tests if "." is on $PATH.  Fixes Savannah bug
447         #19634.
448         * find/testsuite/find.gnu/execdir-in-unreadable.exp: ditto
450         * find/testsuite/config/unix.exp (touch): New procedure touch,
451         replacing "exec touch" for greater efficiency.
452         * find/testsuite/find.posix/depth1.exp: Change "exec touch" to
453         "touch".
454         * find/testsuite/find.posix/files-not-expressions1.exp: ditto
455         * find/testsuite/find.posix/files-not-expressions2.exp: ditto
456         * find/testsuite/find.posix/files-not-expressions3.exp: ditto
457         * find/testsuite/find.posix/links.exp: ditto
458         * find/testsuite/find.posix/perm-vanilla.exp: ditto
459         * find/testsuite/find.posix/sv-bug-15235.exp: ditto
460         * /find/testsuite/find.posix/sv-bug-19613.exp: ditto
461         
462         * find/testsuite/find.gnu/access.exp: Fix savannah bug #18414 by
463         skipping the test if the user can read any file (e.g. is root or
464         is an Admin user under Cygwin).
465         
466 2007-04-17  James Youngman  <jay@gnu.org>
468         * import-gnulib.config (gnulib_version): Use the 2007-04-17
469         version of gnulib to fix a compilation error on Cygwin.  This
470         fixes Savannah bug #19619.
471         
472         * find/testsuite/find.posix/sv-bug-19605.exp: New test, for
473         Savannah bug #19605.
474         * find/testsuite/find.posix/sv-bug-19617.exp: New test, for
475         Savannah bug #19617.
476         * find/ftsfind.c (consider_visiting): if fts_read() returns
477         enf->fts_info==FTS_NS, check for and diagnose a symbolic link
478         loop.  This fixes Savannah bugs #19605 and #19617.
480         * find/find.c (process_path): collect the stat information for
481         directories even if we already have the mode information, because
482         we need to use the members st_nlink and st_rdev in for the leaf
483         optimisation and loop detection, respectively.  This fixes
484         Savannah bug #19616.
486         * find/ftsfind.c (is_fts_enabled): Return a copy of ftsoptions,
487         not a copy of the (uninitialised) input argument.  This fixes
488         Savannah bug #19615.
490         * find/ftsfind.c (consider_visiting): If fts_read() returned
491         FTS_NS, then remember that the stat information is not valid, and
492         therefore don't set state.have_type or state.have_stat.  This
493         fixes Savannah bug #19613.
495         * find/testsuite/find.posix/sv-bug-91613.exp, 
496         * find/testsuite/find.posix/sv-bug-91613.xo: New test for Savannah
497         bug 19613 (assertion failure on symbolic link loop).
499         * find/testsuite/config/unix.exp: Correctly diagnose a test case
500         which fails because find was expected to fail and instead
501         succeeded.
502         * find/testsuite/find.gnu/exec-many-rtn-failure.exp: The child
503         process in this test should return non-zero, not zero.  Therefore
504         run "false" instead of "true".
505         
506 2007-04-15  James Youngman  <jay@gnu.org>
508         * find/find.1: "-printf %b": blocks are 512 bytes.   Fixes
509         Savannah bug #19596.
511         * doc/Makefile.am (regexprops.texi): Do not use $(RM) because many
512         versions od make do not set it, and so it expands to nothing.
513         This avoids suprious emission of the regexprops.texi file to stdout.
515         * find/find.c (main, safely_chdir_lstat, safely_chdir_nofollow):
516         Only use O_LARGEFILE if it is #defined (NetBSD-3.1 does not define
517         it).  
518         * find/ftsfind.c (main): ditto
519         * find/pred.c (pred_empty, prep_child_for_exec): ditto
522         * import-gnulib.config: Update to gnuliv 2007-04-14.
524         * lib/Makefile.am, import-gnulib.sh: Create lib/gnulib-version.c
525         in import-gnulib.sh, not in lib/Makefile.
527         * build-aux/Makefile.am: New file; distribute check-tstfiles.sh.
529         * locate/Makefile.am: mkinstalldirs is now in build-aux.
531         * doc/Makefile.am: We also need getdate.texi.
533 2007-04-14  James Youngman  <jay@gnu.org>
535         * doc/.cvsignore: Ignore getdate.texi
537         * find/defs.h: #include "buildcmd.h" near the top of the file, not
538         in the middle.
540         * all: Pass O_LARGEFILE when opening directories.
542         * all: Changes to allow us to use the FTS_CWDFD mode of fts().
543         These are quite extensive changes, and are detailed below.
545         * find/defs.h (struct exec_val): New member dirfd, the directory
546         in which the exec should take place.
547         (is_fts_enabled): Tell the caller which flags are passed to
548         fts_open().
549         (get_start_dirfd): New function.  Returns value of start_desc.
550         (get_current_dirfd): New function.  Returns the fd of the
551         directory fts is currently traversing.  If this is the current
552         directory, AT_FDCWD is returned.
553         (complete_pending_execdirs): takes a new argument, indicating
554         where the exec is to take place.  Ugh.
555         (get_info): the file name is taken from state.rel_pathname, so
556         we don't need it as a function argument.
557         (enum DebugOption): Added DebugExec ("-D exec").
558         (struct state): Added cwd_dir_fd, the directory we are examining
559         with fts().  If fts() is not in use, this is AT_FDCWD.  Also added
560         execdirs_outstanding, which is a boolean which tells us if there
561         are any not-yet-execed -execdir or -okdir actions (with +).  This
562         is not really used yet.
563         * find/ftsfind.c (set_close_on_exec): New function.
564         (get_current_dirfd): Return an fd open on the directory that fts()
565         is currently examining.
566         (left_dir): Signal that our previous ides of which dirctory fts is
567         searching is now out of date.
568         (inside_dir): Indicate which directory fts is now searching.
569         (complete_execdirs_cb): Callback for run_in_dir() to complete
570         pending execdirs in this directory.
571         (show_outstanding_execdirs): Supports "-D exec"
572         consider_visiting(): Do not allow building-up of pending execdirs,
573         as a workaround to Savannah bug #18466.
574         (ftsoptions): Make this a static module variable.
575         * find/parser.c (insert_exec_ok): New parameter describing which
576         directory the exec should occur in.
577         (parse_version): for FTS, add a list of options being used.
578         * find/pred.c (pred_and, pred_comma): No need to pass the relative
579         path name to get_info(), it can pull it from state.rel_pathname.
580         (pred_delete): use unlinkat().
581         (pred_empty): use openat().
582         (new_impl_pred_exec): Accept an fd parameter describing where the
583         exec is to take place.
584         (pred_executable, pred_writable, pred_readable): Use run_in_dir()
585         to ensure that access() is called in a working directory which is
586         suitable for the pathname we pass in.
587         (prep_child_for_exec): In the child process, change to the
588         appropriate directory becore the exec().
589         * find/util.c (debugassoc): Support "-D exec".
590         (get_info): No longer need to pass the relative path to
591         get_statinfo().
592         (do_complete_pending_execdirs): Refactored body of what used to be
593         complete_pending_execdirs().
594         (complete_pending_execdirs): Pull body out into
595         do_complete_pending_execdirs() and call that only if there is work
596         to do.
597         (fallback_stat, optionh_stat, optionp_stat, optionl_stat): Use fstatat().
598         (get_start_dirfd): New access function for starting_desc.
599         * find/testsuite/find.gnu/execdir-hier.exp: New test
600         * find/testsuite/find.gnu/execdir-hier.xo: Expected outut for new test
601         * lib/dircallback.c, lib/dircallback.h: New function,
602         run_in_dir(), which runs a callback function in a specified
603         directory.      
604         * lib/listfile.c: Use run_in_dir() to call readlink() in the right
605         directory.
606         (get_link_name_at): Call get_link_name_cb via run_in_dir.
607         (get_link_name_cb): New callback function, wrappting
608         get_link_name().
609         
610         * find/testsuite/find.gnu/execdir-pwd.exp: Since we have disabled
611         thebuilding-up of command lines for -execdir, Savannah bug #18466
612         has been neutralised (but not fixed - we just don't allow the
613         problem circumstance to occur).
614         
615 2007-04-09  James Youngman  <jay@gnu.org>
617         * doc/find.texi: Change fully-specified @node directives to
618         single-argument @node directives in order to accomodate the
619         inclusion of getdate.texi.
621         * doc/find.texi: Document -newerXY.
623         * doc/find.texi (Security Considerations): updated to describe
624         differences in the fts-based implementation.
626         * find/find.1: Indicate that testing the birth time where this is
627         not supported produces a negative result for files where the birth
628         time is not known (or a fatal error if the file of interest is a
629         reference file).
630         
631 2007-04-08  James Youngman  <jay@gnu.org>
633         * configure.in: Set @AUXDIR@ (to the location of the build-aux
634         directory).
635         * build-aux/check-testfiles.sh: New script, which checks that all
636         the DejaGnu test files have been included in the distribution and
637         (more helpfully) lists any that are missing.
638         * Makefile.am (findutils-check-testfiles): Use
639         build-aux/check-testfiles.sh.
640         * locate/testsuite/Makefile.am (EXTRA_DIST_EXP): distribute 
641         locate/testsuite/locate.gnu/sv-bug-14535.exp. 
643         * config.rpath, depcomp, missing: Moved into build-aux/.
644         * configure.in(AC_CONFIG_AUX_DIR): Find aux files in $SRCDIR/build-aux,
645         not in $SRCDIR.
647 2007-03-31  James Youngman  <jay@gnu.org>
649         * find/tree.c (build_expression_tree): Issue more specific error
650         messages; distinguish the case where the predicate is invalid from
651         the cases where a required argument is missing, and a supplied
652         argument is invalid.
654         * import-gnulib.config (gnulib_version): Update to 2007-03-30
655         version of gnulib.
657 2007-03-28  James Youngman  <jay@gnu.org>
659         * find/defs.h (set_stat_placeholders): utility function for
660         initialising the sturct stat fields that NetBSD doesn't always set
661         (like st_birthtime where the file is on a filesystem not
662         supporting birthtime).
663         * find/util.c: set_stat_placeholders(): new function
664         (get_statinfo): Call set_stat_placeholders().
665         (optionh_stat, optionl_stat, optionp_stat): ditto
666         * find/find.c (main, wd_sanity_check, safely_chdir_lstat,
667         process_dir): use set_stat_placeholders().
668         * find/parser.c (parse_anewer, parse_cnewer, parse_newer,
669         parse_newerXY): ditto.
670         (get_stat_Ytime): Support birth time ('B').
671         (parse_newerXY): Support st_birthtime.
672         * find/fstype.c (set_fstype_devno): Use set_stat_placeholders().
673         * find/pred.c (pred_xtype): Use set_stat_placeholders().
674         (pred_newerXY): Support birth time.
675         (pred_fprintf, format_date): ditto ("%Bx").
677 2007-03-25  James Youngman  <jay@gnu.org>
679         * xargs/xargs.c (main): For "xargs --show-limits" where stdin is a
680         terminal, warn the user that the program specified (or /bin/echo)
681         will be run at least once, if that is what will happen.
683 2007-03-24  James Youngman  <jay@gnu.org>
685         * import-gnulib.sh: Added option -d, allowing the user to use a
686         local version of gnulib, perhaps because they have local changes.
687         
688 2007-03-13  James Youngman  <jay@gnu.org>
690         * find/parser.c (parse_quit): Estimated success rate of -quit is
691         100%.
693 2007-03-08  James Youngman  <jay@gnu.org>
695         * find/find.1 (TESTS): Document -newerXY, indicate that reference
696         files are only examined once.
697         (HISTORY): Indicate when various features were added
698         (BUGS): Indicate that -ok ignores LC_COLLATE.
700 2007-03-07  James Youngman  <jay@gnu.org>
702         * import-gnulib.config: (gnulib_version): Use gnulib version
703         2007-03-05
704         (modules): Added getdate
706         * find/Makefile.am (LDADD): Added @LIB_CLOCK_GETTIME@ for
707         clock_gettime(), if it is available.
709         * find/defs.h: (enum xval): New enumeration, representing the
710         value of X used in the -newerXY test.  It is stored in the reftime
711         member of 'union args'.
712         (struct predicate): reftime is also used by -newerXY.
713         (enum arg_type): Added ARG_SPECIAL_PARSE for -newerXY, because the
714         parsing function needs to look at the name of the test.
715         (struct options): start_time is now a struct timespec, not a
716         time_t. 
718         * find/parser.c: (parse_newerXY): New parsing function for
719         -newerXY, a feature copied from FreeBSD (also present other BSD
720         implementations too)
721         (get_stat_Ytime): New function; returns st_atime, st_mtime or
722         st_ctime from struct stat, as a timespec, as required according to
723         the value of Y in -newerXY.
724         (found_parser): Factored the tail out of find_parser.
725         (find_parser): Moved tail into found_parser.  Add special handling
726         for -newerXY.
727         (do_parse_xmin): New argument xv, indicating the value to which
728         predicate->reftime.xval should be set.
729         (parse_amin): Pass XVAL_ATIME to do_parse_xmin.
730         (parse_cmin): Pass XVAL_CTIME to do_parse_xmin.
731         (parse_mmin): Pass XVAL_MTIME to do_parse_xmin.
732         (parse_newer): Set args.reftime.xval to XVAL_MTIME.
733         
734         * find/pred.c (pred_table): added pred_XY.
735         (pred_fls): options.start_time is now a struct timespec, so just
736         pass the tv_sec member to list_file.
737         (pred_ls): ditto
738         (pred_newerXY): New function, implementing -newerXY.
740         * find/tree.c (costlookup): pred_newerXY needs stat information.
741         (build_expression_tree): For predicates of type ARG_SPECIAL_PARSE,
742         pass them in the name of the predicate (that is, don't advance
743         argc).
745         * find/util.c (now): New function for setting options.start_time.
746         Use nanoseconds where it is available.
747         (set_option_defaults): Use now() rather than time().
749 2007-03-03  James Youngman  <jay@gnu.org>
751         * import-gnulib.sh: Pass --with-tests to gnulib-tool so that relevant
752         gnulib unit tests are built and are run for "make check".  
754         * configure.in (AC_CONFIG_FILES): Add tests/Makefile (the makefile
755         for the gnulib unit tests).
757         * Makefile.am: Add 'tests' to SUBDIRS.
759         * .cvsignore: Add 'tests'.
760         
761         * import-gnulib.config (modules): Also use Gnulib modules
762         mbscasestr and mbsstr in order to perform correct string searching
763         in multibyte strings, in order to fix Savannah bug #14535.
765         * locate/testsuite/locate.gnu/sv-bug-14535.exp: new test case for
766         Savannah bug #14535.
767         
768         * locale/locate.c (visit_substring_match_nocasefold): Use mbsstr
769         rather than strstr, in order to correctly support multibyte
770         strings.  
771         (visit_substring_match_casefold): Use mbscasestr rather than
772         strstr in order to correctly support case-folding in a multibyte
773         environment (e.g. with UTF-8 characters outside the normal ASCII
774         range).  This fixes Savannah bug #14535.
775         (struct casefolder): No longer needed, removed
776         (visit_casefold): No longer needed, removed.
777         (lc_strcpy): No longer needed, removed.
778         (search_one_database): Removed redundant variable need_fold and
779         the code which used to set it.  It had controlled the adding of
780         the visitor function visit_casefold, but that function itself is
781         no longer required.  Also there is now no need to pass in a
782         lower-case argument to visit_substring_match_casefold, so don't
783         pass that in the context argument.
785         * locate/locate.c (usage): Fixed typo.
786         
787 2007-03-01  James Youngman  <jay@gnu.org>
789         * doc/find.texi (Multiple Files): Document the construct
790         -exec sh -c 'cmd "$@" final-args' {} + - fixing Savannah bug
791         #18554.
792         
793 2007-02-28  James Youngman  <jay@gnu.org>
795         * import-gnulib.config: New file.  Specifies which version of
796         Gnulib we need to check out and build from.
797         
798         * import-gnulib.sh: Use import-gnulib.config.
799         
800         * README-CVS: Describe the new method of building from CVS.
801         
802         * lib/gnulib-version.h, lib/gnulib-version.sh: New files; code for
803         reporting which version of Gnulib we built findutils from.
804         
805         * lib/Makefile.am: Build gnulib-version.c out of
806         ./gnulib-version.config by using lib/gnulib-version.sh.
807         
808         * Makefile.am: Ship import-gnulib.config and import-gnulib.sh.
809         
810         * .cvsignore: Ignore gnulib-cvs
811         
812         * lib/.cvsignore: Ignore gnulib-version.c
813         
814         * find/parser.c, locate/code.c, locate/locate.c, xargs/xargs.c:
815         Report which version of Gnulib we were built from.
817 2007-02-25  James Youngman  <jay@gnu.org>
819         * find/find.c (process_dir): Removed duplicated (shadow)
820         declaration of did_stat.  Assert that we did not use subdirs_left
821         if subdirs_unreliable is true.
823         * find/parser.c (parse_size): Removed unused variable rate.
824         (parse_time): Removed unused variable num_days_approx.
825         (get_num): Removed unused variables ok and suffixes.
827         * find/pred.c (do_fprintf): Indicate that the function needs a
828         return value (referring to Savannah bug #19146).
830         * find/tree.c (predlist_dump): Commented out unused function
831         (predlist_merge_nosort): Commented out unused function
832         (getrate): Returns type is float, so return 1.0f not 1.0.
833         (calculate_derived_rates): Removed unused variable rate.  Use a
834         switch statement rater than ifs.
836         * find/util.c (usage): Removed unused variable i.
838         * lib/buildcmd.c (bc_do_insert): Removed unused variable
839         need_prefix.
840         (bc_init_controlinfo): annotate a line (with #warning) which is
841         probably a bug.
843         * locate/locate.c: #include <grp.h> for the benefit of the
844         setgroups() call in drop_privs.
845         (slocate_db_pathname): Commented out unused variable.
846         (set_max_db_age): error command has no format directive, so
847         remove the unused extra argument.
848         (looking_at_slocate_db): Removed unused variables magic and
849         lenwanted.  Fix bug where result is indeterminate (due to falling
850         off the end of the function) if the first character is a nondigit.
851         (search_one_database): Eliminate (spurious) compiler warning
852         rlating to possible use before initialisation of slocate_seclevel.
854         * xargs/xargs.c (get_char_oct_or_hex_escape): Eliminate spurious
855         compiler warning on variable p.
856         (main): Removed unused varible env_too_big
859 2007-02-24  James Youngman  <jay@gnu.org>
861         * find/parser.c (pred_sanity_check): define this function even for
862         _NDEBUG, but do nothing in that case.
863         (estimate_timestamp_success_rate): correct (invert) the sense of
864         the subtraction used to find the file's age.
866         * import-gnulib.sh (findutils_modules): Import Gnulib modules
867         xstrtod and timespec.
869         * find/parser.c (get_comp_type): Refactored out of get_num.
870         (get_num): call get_comp_type to find the comparison type.
871         (get_relative_timestamp): new function replacing get_num_days.
872         (get_num_days): Remove.
873         (do_parse_xmin): Support fractional arguments and
874         nanosecond timestamps.
875         (parse_used): ditto
876         (parse_time): ditto
878         * xargs/xargs.c (read_line): Give a warning message if a NUL is
879         found in the input (this function is called only when -0 is not in
880         effect).
882         * xargs/xargs.c (nullwarning_given): New variable indicating if
883         the NULL character warning had already been issued.
885         * doc/find.texi (Multiple Files): Describe how trailing blanks are
886         handled when -L is in effect.
887         
888         * xargs/xargs.c (read_line): Use an enum rather than
889         preprocessor macro values for the lexer state.
891         * lib/savedirinfo.c (free_dirinfo): Fixed memory leak (trivial
892         patch from Supriya Kannery)
894 2007-01-22  James Youngman  <jay@gnu.org>
896         * .cvsignore (install-sh): Ignore, since the install-sh file is no
897         longer held in the findutils CVS repository.
898         
899         * find/testsuite/config/unix.exp (find_start): allow a test to be
900         skipped for either the old or the new find executable.
901         * find/testsuite/find.gnu/execdir-pwd.exp,
902         find/testsuite/Makefile.am: 
903         New test, covering Savannah bug #18466.  This test currently fails 
904         for the ftsfind binary and passes for the oldfind binary.  Due to 
905         a limitation in  the way that we perform the test, we can't tell
906         the test suite to expect a failure in the new binary but not the
907         old.  Therefore we skip the test for the old binary. 
909         * lib/regeprops.c (describe_regex_syntax): fixed a typo in the text
910         * doc/find.texi (Multiple Files): fixed a typo
912 2007-01-16  James Youngman  <jay@gnu.org>
914         (ctime_format): format the time manually (rather than using ctime)
915         in order to include the sub-second part of the time.
916         (weekdays, months): new static variables used by ctime_format.
917         (format_date): append a the sub-second part of the timestamp to
918         the seconds part of date/time output.
919         
920 2007-01-15  James Youngman  <jay@gnu.org>
922         * find/defs.h (time_val): define struct; use timespec to hold time
923         in the 'reftime' member.
924         (args): use struct timespec instead of time_t for predicates
925         -newer, -anewer, -cnewer.  * find/parser.c (includes): include
926         stat-time.h.
927         (parse_anewer, parse_cnewer, parse_newer): use struct timespec to
928         hold timestamps.  * find/pred.c (compare_ts): new function for
929         comparing timestamps in struct timespec.
930         (pred_anewer, pred_cnewer, pred_newer): use compare_ts() to
931         compare timestamps (hence takinng acoung of sub-second
932         granularity).
933         * find/ftsfind.c: Various improvements to comments.
934         (is_fts_enabled): Newline before function name to comply with GNU
935         coding standard.
937 2007-01-13  James Youngman  <jay@gnu.org>
939         * lib/regexprops.c (describe_regex_syntax): fixed typo
940         
941         * xargs/xargs.c (read_line): Fixed Savannah bug# 18714; VT and FF
942         are not separators, according to POSIX (in the POSIX locale).
944         * xargs/testsuite/Makefile.am,
945           xargs/testsuite/input/formfeeds.xi, 
946           xargs/testsuite/input/verticaltabs.xi, 
947           xargs/testsuite/xargs.posix/sv-bug-18714.exp, 
948           xargs/testsuite/xargs.posix/sv-bug-18714.xo, 
949           xargs/testsuite/xargs.posix/sv-bug-18714b.exp, 
950           xargs/testsuite/xargs.posix/sv-bug-18714b.xo: Tests for Savannah
951           bug #18714.
953         * xargs/xargs.c (usage): Removed suprious "[" in --help output
954         (fixes Savannah bug #18384).
956         * locate/locate.c: Implement the option --max-database-age.
957         (main) Accept the option. 
958         (set_max_db_age): Parse the argument.
960         * locate/locate.c (dolocate): If the database is more than N days
961         old, indicate its actual age in the warning message we produce.
963         * locate/locate.1, docs/find.texi: Document --max-database-age
965         * THANKS: Thank Dean Gaudet for the idea of -sparse.
967         * po/findutils.pot: Updated from Translation Project
969         * po/ga.po, po/pl.po, po/nl.po, po/tr.po, po/hu.po: Updated from
970         the Translation Project
972 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> 
974         * doc/find.texi: Fix some typos. (trivial change)
976 2007-01-07  James Youngman  <jay@gnu.org>
978         * find/parser.c (parse_perm), find/testsuite/find.gnu/perm000.exp,
979           find/testsuite/find.gnu/perm000.xo: -perm /000 is now quivalent
980           to -perm -000, as dscussed in Savannah bug #14748.  The warning
981           message we issue when the user does this now explains that the
982           defintion changed as we promised it would in 2005.
984         * xargs/xargs.c (read_line): Correctly handle quoted empty
985         arguments occurring first or last on a line (by adding an empty
986         argument to the output).  Fixes Savannah bug #18713.
988         * xargs/testsuite/xargs.sysv/sv-bug-18713.exp,
989         xargs/testsuite/xargs.sysv/sv-bug-18713.xo,
990         xargs/testsuite/input/empty.xi: Test case for Savannah bug #18713.
991          
993 2006-12-29  James Youngman  <jay@gnu.org>
995         * find/testsuite/config/unix.exp:
996         Verify that find_start is invoked with wither a p (pass) or an f
997         (fail) argument.
999         * lib/listfile.c, lib/listfile.h:
1000         define find_blocksize() and provide a declaration for get_link_name()
1002         * find/testsuite/config/unix.exp: Updated copyright years.
1004         * 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:
1005         Avoid tests using -execdir if $PATH contains a relative directory
1007         * find/parser.c:
1008         Also flag $PATH values containing relative directories as being dangerous.
1010         * find/parser.c, find/defs.h, find/util.c:
1011         Instead of selecting the old or new exec handling code with the NEW_EXEC macro, just use the new code all the time
1013         * locate/testsuite/config/unix.exp:
1014         Fixed Savannah bug #13252, test suite failure caused by the fact that 'file normalize' is not available in Tcl 8.3
1016         * NEWS, find/pred.c:
1017         Fixed Savannah bug #18433, compilation failure with configure --enable-debug
1019 2006-12-28  James Youngman  <jay@gnu.org>
1021         * NEWS: Document addition of %S.
1023         * find/defs.h, find/find.1, find/parser.c, find/pred.c:
1024         Implemented %S (sparseness) printf format, and general refactoring and cleanup of printf predicate
1026 2006-12-01  James Youngman  <jay@gnu.org>
1028         * NEWS, configure.in: Begin work on findutils 4.2.30
1030         * find/find.c:
1031         Fix compilation error for oldfind if --enable-debug was passed to configure
1033         * NEWS, configure.in: Prepare for work on findutils-4.3.3
1035 2006-11-25  James Youngman  <jay@gnu.org>
1037         * find/testsuite/Makefile.am: Added test case for Savannah bug #17782
1039         * doc/textinfo.tex: Removed; we now use the version supplied 
1040         by automake.
1041         
1042         * m4/mkinstalldirs.m4: Added this file.  It's an excerpt from an
1043         old version of gnulib's m4/nls.po file.  The current version of
1044         gnulib does not expand MKINSTALLDIRS, but gettext-0.14.6's version
1045         of po/Makefile.in.in expects it to be expanded.  This m4 file
1046         fills the gap.
1048 2006-11-20  James Youngman  <jay@gnu.org>
1050         * po/et.po, po/bg.po, po/pl.po, po/nl.po, po/tr.po: Updated
1051         translations for Bulgarian, Estonian, Dutch, Polish and Turkish.
1053 2006-11-08  James Youngman <jay@gnu.org>
1055         * find/testsuite/Makefile.am:
1056         Oops, indicate the right directory for the new test files
1058         * 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:
1059         Savannah bug#18222 - test case
1061         * ChangeLog, lib/buildcmd.c:
1062         Fixed Svannah bug #17782 ('./' prefix added at start of arg while it should be added at the start of the expansion of {})
1064         * find/ftsfind.c (process_all_startpoints): Set
1065         state.starting_path_length for every pathname argument.
1066         This fixes Savannah bug #18222.
1068         * find/pred.c (pred_prune): -prune should have an effect only if we are
1069          currently considering a directory (Savannah bug #15531).
1070         
1071 2006-10-15  James Youngman <jay@gnu.org>
1073         * lib/buildcmd.c: Fixed Savannah bug #17782, in which "find
1074         -execdir echo "foo {}" runs 'echo ./foo filename' instead of the
1075         correct command 'echo foo ./filename'.
1076         
1077         * po/hu.po, po/sl.po: Updated Hungarian and Slovenian po files
1079 2006-08-21  James Youngman <jay@gnu.org>
1081         * find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-17490.exp:
1082         Fixed Savannah bug #17490, which was a coiredump when -regex ZZZ was the final test on the command line
1084 2006-08-20  James Youngman <jay@gnu.org>
1086         * find/parser.c: Merged the fix for the trailing % in "find -printf".
1088 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1090         Port recent fixes for symbolic modes involving X from gnulib,
1091         and clarify the documentation in this area.
1092         * doc/find.texi: Use "file mode bits" when talking about
1093         all the file mode bits (including setuid, setgid, and sticky),
1094         and "permissions" when talking only about permissions bits
1095         (read, write, execute/search).  Use "execute/search" to
1096         talk about the x bit, since it means both.  You do not need
1097         permission to the linked-to file to follow a symlink for
1098         syscalls like "stat", but you do need search permission for
1099         the directories you traverse.  Clarify the explanation of
1100         -perm.  Use "that" instead of "which" when "which" isn't
1101         quite correct English.
1102         (Mode Bits): Renamed from Permissions.  All uses changed.
1103         * doc/perm.texi: Sync from coreutils 6.0.
1104         * find/defs.h (struct perm_val.val): Now an array of two items,
1105         one for non-directories, and one for directories.  This is
1106         to handle symbolic modes like +X correctly.
1107         * find/parser.c (parse_perm): Likewise.  Also, adjust to
1108         latest gnulib interface for mode_adjust.
1109         * find/pred.c (pred_perm): Likewise.
1110         * find/testsuite/Makefile.am (EXTRA_DIST_XO): Add find.posix/perm-X.xo.
1111         (EXTRA_DIST_EXP): Add find.posix/perm-X.exp.
1112         * find/testsuite/find.posix/perm-X.exp: New file.
1113         * find/testsuite/find.posix/perm-X.so: New file.
1115 12006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1117         Port to latest gnulib, and simplify the bootstrapping procedure.
1118         * intl: Remove this directory and everything in it.
1119         * depcomp, install-sh, missing, mkinstalldirs, doc/texinfo.tex:
1120         Remove these files from CVS, as they are now gotten from gnulib.
1121         * README-CVS: Don't recommend "autoreconf -i", as it doesn't work
1122         for us.
1123         * import-gnulib.sh (findutils_files): New var.  Grab this stuff
1124         from gnulib.
1125         (findutils_modules): Add fopen-safer; remove stdio-safer.  This
1126         adjusts to latest gnulib.
1127         (modules): Remove obsolete reference to intl_modules.
1128         * .cvsignore: Remove stamp-h; add stamp-h1.
1129         * doc/.cvsignore: Add regexprops.texi.
1130         * find/.cvsignore: Add oldfind.
1131         * lib/.cvsignore: Add .deps, regexprops.
1132         * m4/.cvsignore: Add Makefile.
1133         * po/.cvsignore: Add stamp-po.
1135 2006-08-19  James Youngman <jay@gnu.org>
1137         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp:
1138         Explicit checks for parefixes which are within range of a short, but outside the one-byte range
1140         * locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
1141         New file.
1143         * locate/testsuite/Makefile.am, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
1144         Patch from Tavis Ormandy; check frcode handles initial space end encodes paths with more than 2^16 characters in the common prefix (trivial change)
1146         * locate/frcode.c: Changes to avoid overflows
1148 2006-08-11  James Youngman <jay@gnu.org>
1150         * locate/frcode.c:
1151         Avoid producing an invalid database if the first item begins with a space
1153 2006-08-10  James Youngman <jay@gnu.org>
1155         * find/pred.c, import-gnulib.sh, lib/listfile.c:
1156         Updated callers of the gnnulib filemode module so that they work with the 2006-07-09 version of gnulib
1158         * config.rpath: Updated config.rpath from autotools
1160 2006-08-08  James Youngman <jay@gnu.org>
1162         * locate/locatedb.h:
1163         Automatically verify (at compile time) that the frcode datastream
1164         cannot get desynchronised.
1166         * find/ftsfind.c:
1167         Fixed Savannah bug #10494 (-maxdepth does not yield the same stat savinf in ftsfind as oldfind)
1169         * find/ftsfind.c: display fts_level for find -D search
1171         * find/util.c: Support find -D search
1173         * locate/locate.c:
1174         If the user specified -E but the database is an slocate database, do
1175         not produce a list of files they cannot stat.  Issue an error message
1176         explaining the problem.
1178         * locate/locate.c:
1179         Issue states messages in a way which indicates more clearly what's
1180         happening when the numbers are reduced because not every filename
1181         matched the pattern.
1183         * locate/locate.c: Better error checking in drop_privs().
1185 2006-08-07  James Youngman <jay@gnu.org>
1187         * NEWS, locate/locate.c, locate/locatedb.h:
1188         Added support for slocate database format
1190         * xargs/xargs.c:
1191         Removed unused code (tivial patch from Miloslav Trmac).
1193         * xargs/xargs.c: Removed unused code.
1195         * doc/find.texi:
1196         Clarify that the output format for locate -S differs from BSD's.
1198         * NEWS, find/find.1:
1199         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
1201         * NEWS: Typo in subsection header (* should be **).
1203         * NEWS, find/find.1:
1204         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
1206         * doc/find.texi: Fixed some clumsy phrasing
1208         * NEWS, configure.in:
1209         Now diverging again from the released tarball, so change once more to -CVS version number suffixes
1211 2006-08-06  James Youngman <jay@gnu.org>
1213         * locate/locate.c: Fixed a typo in a comment.
1215         * NEWS, configure.in: Moving on towards 4.3.2...
1217         * find/testsuite/config/unix.exp:
1218         Check that we can see the find.o file in the right position relative
1219         to $base_dir to ensure that we are indeed testing the program we just built.
1221         * find/testsuite/config/unix.exp:
1222         Be more paranoid about whether we're really checking the right version
1223         of find.
1225         * NEWS, configure.in: Prepare for release of 4.3.1
1227         * doc/find.texi: Document the -O and -D options
1229         * find/defs.h, find/find.1, find/util.c:
1230         'find -D help' now explains the available debugging options
1232         * 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:
1233         Make dist changed all the po files again
1235 2006-08-05  James Youngman <jay@gnu.org>
1237         * NEWS: Described more changes in 4.3.1.
1239         * locate/testsuite/config/unix.exp:
1240         Set the  environment variable so that updatedb knows where to find it; it's not in BINDIR yet during 'make check'
1242         * 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:
1243         Make dist changed all the po files again :)
1245         * po/et.po, po/vi.po: UPdated the Estonian and Vietnamese translations
1247         * NEWS, configure.in: Prepare for release of findutils-4.2.28
1249         * 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:
1250         Make dist changed all the po files again :)
1252         * configure.in: Added Bulgarian translation.
1254         * po/bg.po: Include Bulgarian translation
1256         * configure.in: Added Bulgarian translation.
1258         * po/et.po, po/vi.po: Updated Estonian and Vietnamese translations
1260         * NEWS: Removed spurious comma.
1262         * NEWS: Listed the updated translations.
1264         * find/parser.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
1265         Fixed Savannah bug#16738, find does not subtract environment size in find .. -exec {} +
1267         * NEWS: Updated the list of bugfixes etc.
1269 2006-06-15  James Youngman <jay@gnu.org>
1271         * NEWS: Described recent changes
1273         * configure.in: fix to how we invoke the gnulib regex module
1275         * find/find.1:
1276         Savannah bug #16269: avoid confusion over what type of quotes to use
1277         in an example.
1279         * find/parser.c: Option -nowarn should not itself produce a warning
1281         * find/defs.h: Remoevd useless declaration of last_pred
1283 2006-06-14  James Youngman <jay@gnu.org>
1285         * 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:
1286         Updated translation files ga pl sv tr nl ca vi bg fr
1288         * locate/updatedb.sh:
1289         Fixed Savannah bug #16579 (su false should be su -c false)
1291 2006-04-01  James Youngman <jay@gnu.org>
1293         * find/find.c:
1294         Fixed Savannah bug #15800: "Hard link count is wrong" reports wrong
1295         directory name.
1297 2006-03-31  James Youngman <jay@gnu.org>
1299         * po/hu.po: Updated Hungarian translation
1301 2006-01-04  James Youngman <jay@gnu.org>
1303         * find/testsuite/find.posix/sizetype.exp, find/testsuite/find.posix/sizetype.xo, find/testsuite/find.posix/typesize.exp, find/testsuite/find.posix/typesize.xo:
1304         Additional tests for -type -size and -size -type
1306         * 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:
1307         Initial implementation of a cost-based optimiser
1309 2005-12-23  James Youngman <jay@gnu.org>
1311         * find/parser.c: Refactor of parse_[acm]time
1313         * find/defs.h, find/find.c, find/finddata.c, find/ftsfind.c, find/tree.c, find/util.c:
1314         last_pred can be a static in tree.c rather than a global variable
1316         * find/tree.c, find/finddata.c:
1317         Moved some global data out of finddata.o and into static variables in tree.c
1319         * 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:
1320         Fixed many compilation warnings
1322         * find/find.c, find/ftsfind.c, find/util.c:
1323         Evaluating the predicates can change the contents of the data structure (for example to add another exec item)
1325         * find/defs.h, find/find.c, find/ftsfind.c, find/tree.c, find/util.c:
1326         Re-factored a lot of common expression-handling code out of find.c and ftsfind.c, mainly into tree.c
1328         * find/find.c, find/ftsfind.c, find/tree.c:
1329         Savannah bug #15271: more helpful error messages for cases where there is a missing expression
1331 2005-12-20  James Youngman <jay@gnu.org>
1333         * 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:
1334         Savannah bug #15195: more helpful error messages for 'find . ( )' or 'find . \!'
1336         * ChangeLog: Added entries for recent changes.
1338         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/find.posix/bracket-depth.exp, find/util.c:
1339         Further fix to bug# 15235: a leading comma is a filename not an expression
1341         * find/defs.h, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.posix/empty-parens.exp, find/tree.c:
1342         Accept 'find ( -depth )' but reject 'find ( )'
1344         * 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:
1345         did make dist
1347         * find/testsuite/find.gnu/delete.exp:
1348         Use the new find program, and the new way of locating it (/ instead of )
1350         * find/testsuite/Makefile.am: Added bracket-depth.exp.
1352         * NEWS, configure.in: We have moved on from 4.3.0
1354         * 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:
1355         Avoid getting confused by filename arguments of which the first
1356         character looks like a predicate, for example ',x' or '!x' or
1357         '(x' (Savannah bug #15235).
1359 2005-12-20  James Youngman <jay@gnu.org>
1361         * find/defs.h, find/find.c, find/ftsfind.c,
1362         find/testsuite/find.posix/bracket-depth.exp, find/util.c: Further
1363         fix to bug# 15235: a leading comma is a filename not an expression
1365         * find/defs.h, find/parser.c, find/testsuite/Makefile.am,
1366         find/testsuite/find.posix/empty-parens.exp, find/tree.c: Accept
1367         'find ( -depth )' but reject 'find ( )'
1369         * find/testsuite/find.gnu/delete.exp: Use the new find program,
1370         and the new way of locating it ($OLDFIND/$FTSFIND instead of $FIND)
1372         * find/testsuite/Makefile.am: Added bracket-depth.exp.
1374         * NEWS, configure.in: We have moved on from 4.3.0
1376         * find/defs.h, find/find.c, find/ftsfind.c,
1377         find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
1378         find/testsuite/find.posix/files-not-expressions1.exp,
1379         find/testsuite/find.posix/files-not-expressions1.xo,
1380         find/testsuite/find.posix/files-not-expressions2.exp,
1381         find/testsuite/find.posix/files-not-expressions2.xo,
1382         find/testsuite/find.posix/files-not-expressions3.exp,
1383         find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
1384         Avoid getting confused by filename arguments of which the first
1385         character looks like a predicate, for example ',x' or '!x' or '(x'
1386         (Savannah bug #15235).
1388 2005-12-19  James Youngman <jay@gnu.org>
1390         * find/testsuite/config/unix.exp:
1391         Run every test twice, once with the old (non-fts) binary and once with
1392         the new (fts-enabled) binary.
1394 2005-12-19 Eric Blake <ebb9@byu.net>
1396         * find/testsuite/Makefile.am,
1397         find/testsuite/find.posix/sv-bug-15235.xo, 
1398         find/testsuite/find.posix/sv-bug-15235.exp: New tests for Savannah
1399         bug 15235.
1400         
1401         * NEWS, find/find.1, doc/find.texi (Invoking find): Document bug
1402         fix for Savannah bug 15235.
1404 2005-12-16  James Youngman <jay@gnu.org>
1406         * xargs/xargs.1, xargs/xargs.c: Fixed bug# 15211, that xargs
1407         --show-limits is not documented in the manpage or in the usage
1408         message
1410 2005-12-12  James Youngman <jay@gnu.org>
1412         * find/testsuite/find.gnu/access.exp:
1413         Don't leave junk files lying around the place
1415         * README-CVS: Update the the instructions for getting gnulib; the
1416         CVS arrangements at Savannah have changed.
1418         * ChangeLog, NEWS, doc/find.texi, doc/perm.texi, find/defs.h, find/parser.c:
1419         Merged changes from 4.2.x branch again
1421         * NEWS, doc/find.texi, find/defs.h, find/find.c, find/ftsfind.c,
1422         find/parser.c, find/pred.c, find/util.c, lib/listfile.c,
1423         lib/listfile.h: Initial code to allow control over how -ls quote
1424         (or does not quote) control characters; not enabled yet
1426 2005-12-11  James Youngman <jay@gnu.org>
1428         * ChangeLog, THANKS, xargs/xargs.c:
1429         Fixed spelling errors in Bob Proulx's name.  Sorry, Bob.
1431 2005-12-10  James Youngman <jay@gnu.org>
1433         * doc/perm.texi:
1434         Aaron Hawley: Updated perm.texi from the coreutils distribution
1436         * find/parser.c:
1437         Avoid using entries which have the same name as POSIX library
1438         functions (fprintf, printf, exec) as the implementation is allowed to
1439         #define these.  That generates hard-to-grok compilation errors.
1441 2005-12-10  Andreas Metzler <gnu@downhill.at.eu.org>
1443         * ChangeLog, NEWS, configure.in, find/defs.h, find/parser.c:
1444         Applied patch from Andreas Metzler fixing Savannah bug #15181:
1445         implicit declaration of parse_openparen
1447 2005-12-08  James Youngman  <jay@gnu.org>
1449         * doc/find.texi: Typo and spelling corrections from Aaron Hawley
1451 2005-12-05  James Youngman  <jay@gnu.org>
1453         * Released findutils-4.2.27
1455 2005-12-05  James Youngman  <jay@gnu.org>
1457         * doc/find.texi, find/find.1, locate/locate.1, xargs/xargs.1:
1458         Savannah patch #3775 from Aaron Hawley: reconciling man pages
1459         differences; did not apply the patch, but resolved all the
1460         remaining issues manually by updating the documentation (mostly
1461         the Texinfo documentation, which was missing a number of specific
1462         technical statements about the behaviour of various options)
1464 2005-12-04  James Youngman  <jay@gnu.org>
1466         * doc/find.texi: Document --show-limits
1468         * xargs/xargs.c:
1469         Correctly display the size of the argument buffer we really allocated.
1471         * doc/find.texi, find/find.1, find/parser.c, find/pred.c, NEWS:
1472         Savannah bug #14748 (which this change does NOT fix): issue
1473         warning of future changes in the behaviour of -perm /000
1475 2005-11-30  James Youngman  <jay@gnu.org>
1477         * xargs/xargs.c:
1478         Typo correction from Benno Schulenberg <benno@nietvergeten.nl>
1479         (trivial change)
1481 2005-11-29  James Youngman  <jay@gnu.org>
1483         * xargs/xargs.c:
1484         Typo "Ilegal"; change to "Invalid" since this is not really illegal!
1485         Bug report by Primoz Peterlin.
1487         * lib/regexprops.c, xargs/xargs.c:
1488         Prefer the word 'Invalid' or the phrase 'not allowed' over
1489         'Illegal', as per the GNU coding standards, and as per the
1490         suggestion from Benno Schulenberg
1492 2005-11-24  James Youngman  <jay@gnu.org>
1494         * NEWS, lib/buildcmd.c, lib/buildcmd.h: Merge to trunk from 4.2.x fixes
1496         * lib/buildcmd.h:
1497         Deleted inaccurate comment about the default value of ctl->args_per_exec.
1499         * NEWS, lib/buildcmd.c, lib/buildcmd.h:
1500         Be more conservative about the total number of arguments we will
1501         allow (to avoid exec limits on Linux/PPC)
1503 2005-11-23  James Youngman  <jay@gnu.org>
1505         * NEWS: Bug #14921 has been fixed.
1507         * find/fstype.c:
1508         Savannah bug #14921: when a Linux bind filesystem is in use, find
1509         would expand '-printf %F' to 'none' if a bind mount targetted the same
1510         filesystem as the one containing the file to be described.
1512         * NEWS: Updated to describe recent changes
1514         * doc/find.texi, find/find.1: Documented find -printf %M
1516         * lib/buildcmd.c, xargs/testsuite/Makefile.am,
1517         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1518         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1519         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1520         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo:
1521         Ensure that the test suite still passes even if the current
1522         system's value of ARG_MAX is different from the development/test
1523         system
1525         * lib/buildcmd.c: reindent and untabify
1527         * configure.in: The CVS code is moving on from the previous release.
1529 2005-11-22  James Youngman  <jay@gnu.org>
1531         * ChangeLog: Updated with recent changes.
1533 2005-11-21  James Youngman  <jay@gnu.org>
1535         * locate/testsuite/config/unix.exp:
1536         Even if we expect locate to return a nonzero status, the test should
1537         still fail if updatedb fails!
1539         * locate/testsuite/locate.gnu/ignore_case2.exp:
1540         Set the current directory for updatedb.  This test case is supposed to
1541         fail because the filename is not matched, not because updatedb fails!
1543         * locate/updatedb.sh:
1544         Check the binaries actually exist in the place we expect.
1546 2005-11-20  James Youngman  <jay@gnu.org>
1548         * locate/locate.1, xargs/xargs.1: Escape '-' as '\-' where appropriate.
1550         * find/find.1:
1551         Escape '-' as '\-' where appropriate.   Fixes last part of bug #14556.
1553 2005-11-19  James Youngman  <jay@gnu.org>
1555         * doc/find.texi, find/find.1:
1556         Applied edited form of Andreas Metzler's -perm /mode documentation
1557         patch resolving Savannah bug #14619.
1559         * lib/extendbuf.c:
1560         In the success case, extendbuf() should preserve the previous value of
1561         errno.  Fixes Savannah bug #14842.
1563         * xargs/testsuite/Makefile.am: Added new test files
1565         * find/find.1:
1566         Correctly indicate the default regular expression syntax (fixes
1567         Savannah bug #14836).
1569         * NEWS, configure.in: Released findutils-4.2.26
1571         * ChangeLog, NEWS, lib/buildcmd.c,
1572         xargs/testsuite/inputs/16383-ys.xi,
1573         xargs/testsuite/inputs/32767-ys.xi,
1574         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1575         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1576         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1577         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: Applied
1578         bugfix from Jim Meyering (tiny change), where many short arguments
1579         would cause xargs (and probably find -exec .. {} +) to fail
1580         because execve() returns E2BIG, which we should avoid
1582         * xargs/testsuite/inputs/16383-ys.xi,
1583         xargs/testsuite/inputs/32767-ys.xi,
1584         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1585         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1586         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1587         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: New file.
1589 2005-11-18  Jim Meyering  <jim@meyering.net> (tiny change)
1591         * lib/buildcmd.c (bc_push_arg): When exec'ing, don't exceed
1592         Linux's limit on the maximum number of command line arguments.
1594 2005-11-11  James Youngman  <jay@gnu.org>
1596         * NEWS, find/find.c, find/fstype.c: Savannah bug #14922: if we need the
1597         list of mounted filesystems but it is not available, exit fatally
1598         with a message.  If it is not available but we don't need it,
1599         there is no need for an error.
1601 2005-10-31  James Youngman  <jay@gnu.org>
1603         * doc/find.texi:
1604         Removed redundant additional description of "--regextype".
1606 2005-10-08  James Youngman  <jay@gnu.org>
1608         * find/find.c, lib/regextype.c: Fixed Savannah bug #14616, which
1609         was that c99 code had crept in and it didn't compile on c89
1610         compilers
1612         * doc/find.texi: Savannah patch #4371 from Andreas Metzler; the
1613         argument of -I is mandatory
1615 2005-09-21  James Youngman  <jay@gnu.org>
1617         * xargs/xargs.1, xargs/xargs.c: Clarified the -E option
1619 2005-09-20  James Youngman  <jay@gnu.org>
1621         * NEWS, configure.in, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
1622         Documentation clarification: -L and -I take a mandatory argument;
1623         -l and -i do not
1625 2005-09-17  James Youngman  <jay@gnu.org>
1627         * xargs/xargs.c:
1628         Fixed Savannah bug #14550 - if environment is too large to allow
1629         exec() to work, we cannot even use "xargs --help".
1631         * find/find.1:
1632         Avoid the use of -perm +mode, using -perm /mode instead.  From comment
1633         by Andreas Metzler (though I didn't read the patch).
1635         * ChangeLog, doc/find.texi, find/find.1, xargs/xargs.1:
1636         Typo fix from A Costa (tiny change)
1638         * NEWS: Corrections for find manual page - symbolic permissions.
1640         * find/find.1:
1641         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
1642         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
1644 2005-09-17  A Costa <agcosta@gis.net>  (tiny change)
1646         docs/find.texi: Fixed typo
1647         find/find.1: Fixed typo
1648         xargs/xargs.1: Fixed typo
1649         
1650 2005-09-17  James Youngman  <jay@gnu.org>
1652         * NEWS: Corrections for find manual page - symbolic permissions.
1654         * find/find.1:
1655         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
1656         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
1658 2005-09-06  James Youngman  <jay@gnu.org>
1660         * xargs/xargs.c: Typo in "IEEE" in a comment.
1662 2005-09-04  James Youngman  <jay@gnu.org>
1664         * find/defs.h, find/find.c, find/parser.c, find/pred.c, 
1665         Work around compilation failure with GCC 4 and AIX 5.1, in which
1666         open is #defined to open64
1668 2005-09-03  James Youngman  <jay@gnu.org>
1670         * find/testsuite/find.gnu/quit.exp: Fixed Savannah bug#14390, by
1671         avoiding an accidental assumption in quit.exp that directory
1672         entries are returned by readir() in any particular order
1674         * NEWS, configure.in, doc/find.texi, xargs/testsuite/Makefile.am,
1675         xargs/testsuite/inputs/helloworld.xi,
1676         xargs/testsuite/xargs.gnu/delim-o.exp,
1677         xargs/testsuite/xargs.gnu/delim-o.xo, xargs/xargs.1,
1678         xargs/xargs.c: Added the --delimiter option to xargs, resolving
1679         Savannah support request sr #102914
1681         * ChangeLog, NEWS, configure.in: Released findutils-4.2.25
1684 2005-09-02  James Youngman  <jay@gnu.org>
1686         * doc/find.texi, find/find.1:
1687         Improved documentation in response to Savannah bug #14376
1689 2005-09-01  James Youngman  <jay@gnu.org>
1691         * po/ChangeLog, ChangeLog: Updated with recent changes.
1693         * locate/locate.c: Removed unused struct stringbuf.soffs.
1695         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
1697 2005-09-01  Jim Meyering  <jim@meyering.net>
1699         * locate/locate.c (struct stringbuf) [soffs]: Remove unused member.
1700         (locate): Remove initialization, too.
1702 2005-09-01  James Youngman  <jay@gnu.org>
1704         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
1706 2005-08-30  James Youngman  <jay@gnu.org>
1708         * find/defs.h, find/find.c, find/fstype.c, find/pred.c:
1709         Attempted fix for compilation when AFS is #defined
1711 2005-08-13  James Youngman  <jay@gnu.org>
1713         * find/find.1: Remind the user to quote the pattern argument to -iname.
1715 2005-08-12  James Youngman  <jay@gnu.org>
1717         * NEWS: Corrected typo.
1719 2005-08-09  James Youngman  <jay@gnu.org>
1721         * NEWS: Indicate that regexprops.texi is built on Cygin now that
1722         Savannah bug #14025 has been fixed.
1724         * lib/Makefile.am, lib/regexprops.c: Fixed compilation failure on
1725         Cygwin - Savannah Bug #14025 (tiny change, three lines), reported
1726         and fixed by Eric Blake
1728         * find/testsuite/Makefile.am,
1729         find/testsuite/find.posix/sv-bug-14070.exp,
1730         find/testsuite/find.posix/sv-bug-14070.xo: Added new test case for
1731         SourceForge bug #14070
1733         * find/testsuite/find.posix/sv-bug-14070.exp,
1734         find/testsuite/find.posix/sv-bug-14070.xo: New file.
1736         * find/defs.h, find/ftsfind.c, find/pred.c, find/util.c:
1737         Ensure we can still build with --enable-debug
1739         * find/testsuite/config/unix.exp,
1740         find/testsuite/find.gnu/execdir-one.exp,
1741         find/testsuite/find.gnu/execdir-root-only.exp,
1742         find/testsuite/find.gnu/sv-bug-12230.exp: If . is on $PATH,
1743         indicate that the -execdir tests cannot be carried out, as opposed
1744         to indicating that those tests fail
1746 2005-08-07  James Youngman  <jay@gnu.org>
1748         * NEWS: Indicated that some test suite files have been renamed.
1750         * xargs/testsuite/Makefile.am, xargs/testsuite/inputs/eof.xi,
1751         xargs/testsuite/inputs/eof1.xi,
1752         xargs/testsuite/xargs.sysv/eof.exp,
1753         xargs/testsuite/xargs.sysv/eof.xo,
1754         xargs/testsuite/xargs.sysv/eof1.exp,
1755         xargs/testsuite/xargs.sysv/eof1.xo,
1756         xargs/testsuite/xargs.posix/lc_l2.exp,
1757         xargs/testsuite/xargs.posix/lc_l2.xo,
1758         xargs/testsuite/xargs.sysv/l2.exp,
1759         xargs/testsuite/xargs.sysv/l2.xo,
1760         xargs/testsuite/xargs.sysv/lc_l2.exp,
1761         xargs/testsuite/xargs.sysv/lc_l2.xo,
1762         xargs/testsuite/xargs.posix/L2.exp,
1763         xargs/testsuite/xargs.posix/l2.exp,
1764         xargs/testsuite/xargs.posix/L2.xo,
1765         xargs/testsuite/xargs.posix/l2.xo,
1766         xargs/testsuite/xargs.posix/uc_L2.exp,
1767         xargs/testsuite/xargs.posix/uc_L2.xo: Work around problems with
1768         CVS clients on case-insentitive operating systems
1770         * debian/Changelog: Removed Changelog file since changelog is the
1771         one we should be using and having both files upsets Cygwin
1772         systems which cannot tell the dirrerence between changelog and
1773         Changelog
1775         * find/ftsfind.c:
1776         If DEBUG is defined, show the symbolic names fro fts_info values.
1778         * find/ftsfind.c: Added additional diagnostics.
1780 2005-08-01  James Youngman  <jay@gnu.org>
1782         * ABOUT-NLS, INSTALL, Makefile.am, configure.in, depcomp,
1783         doc/texinfo.tex, install-sh, missing, mkinstalldirs: By adding the
1784         missing AM_GNU_GETTEXT_VERSION call, allowed autopoint to update
1785         those files of which it has updated copies.
1787         * po/Makevars.template, po/Makefile.in.in, po/findutils.pot:
1788         Using AM_GNU_GETTEXT_VERSION, allowed gettext to update the infrastructure
1790         * po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed:
1791         Files added by autopoint now that we are using AM_GNU_GETTEXT_VERSION
1793         * find/testsuite/Makefile.am: Added find.gnu./perm-slash.{exp,xo}.
1795 2005-07-31  James Youngman  <jay@gnu.org>
1797         * find/testsuite/excuses.txt: We now have tests for -perm.
1799         * NEWS, configure.in, find/parser.c,
1800         find/testsuite/find.gnu/perm-slash.exp,
1801         find/testsuite/find.gnu/perm-slash.xo: Fixed bug which caused find
1802         -perm /440 to be treated the same as find -perm 440
1804         * find/testsuite/Makefile.am:
1805         Generic tests for -perm -NNN and -perm NNN
1807         * find/testsuite/excuses.txt: New file - list of test cases that
1808         still need to be written, along with excuses why they haven't been
1809         done yet
1811         * find/testsuite/find.posix/perm-vanilla.exp,
1812         find/testsuite/find.posix/perm-vanilla.xo: Generic tests for -perm
1813         -NNN and -perm NNN
1815         * find/testsuite/find.gnu/inum.exp:
1816         Ensure that the test would fail if -inum just always returned true
1818         * find/testsuite/Makefile.am, find/testsuite/find.gnu/ilname.exp,
1819         find/testsuite/find.gnu/ilname.xo,
1820         find/testsuite/find.gnu/inum.exp, find/testsuite/find.gnu/inum.xo,
1821         find/testsuite/find.gnu/lname.exp,
1822         find/testsuite/find.gnu/lname.xo,
1823         find/testsuite/find.gnu/xtype.exp,
1824         find/testsuite/find.gnu/xtype.xo,
1825         find/testsuite/find.posix/links.exp,
1826         find/testsuite/find.posix/links.xo: New test cases for -ilname,
1827         -inum, -lname, -xtype
1829         * find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
1830         find/testsuite/find.gnu/delete.xo,
1831         find/testsuite/find.gnu/iregex1.exp,
1832         find/testsuite/find.gnu/iregex1.xo,
1833         find/testsuite/find.gnu/regex1.exp,
1834         find/testsuite/find.gnu/regex1.xo,
1835         find/testsuite/find.gnu/regex2.exp,
1836         find/testsuite/find.gnu/regex2.xo,
1837         find/testsuite/find.gnu/samefile-copy.exp,
1838         find/testsuite/find.gnu/samefile-copy.xo,
1839         find/testsuite/find.gnu/samefile-link.exp,
1840         find/testsuite/find.gnu/samefile-link.xo,
1841         find/testsuite/find.gnu/samefile-same.exp,
1842         find/testsuite/find.gnu/samefile-same.xo,
1843         find/testsuite/find.gnu/samefile-symlink.exp,
1844         find/testsuite/find.gnu/samefile-symlink.xo: Further test cases
1846         * find/find.1: Indicate that -delete implies -depth (find.texi
1847         already mentioned this).
1849         * find/testsuite/Makefile.am:
1850         Brought the list of .exp and .xo files in Makefile.am into sync with
1851         the actual contents of the CVS repository.
1853         * find/testsuite/Makefile.am, find/testsuite/find.gnu/depth-d.exp,
1854         find/testsuite/find.gnu/depth-d.xo,
1855         find/testsuite/find.gnu/empty.exp,
1856         find/testsuite/find.gnu/empty.xo,
1857         find/testsuite/find.gnu/execdir-one.exp,
1858         find/testsuite/find.gnu/execdir-one.xo,
1859         find/testsuite/find.gnu/false.exp,
1860         find/testsuite/find.gnu/false.xo,
1861         find/testsuite/find.gnu/follow-basic.exp,
1862         find/testsuite/find.gnu/follow-basic.xo,
1863         find/testsuite/find.gnu/gnu-or.exp,
1864         find/testsuite/find.gnu/gnu-or.xo,
1865         find/testsuite/find.gnu/gnuand.exp,
1866         find/testsuite/find.gnu/gnuand.xo,
1867         find/testsuite/find.gnu/gnunot.exp,
1868         find/testsuite/find.gnu/gnunot.xo,
1869         find/testsuite/find.gnu/iname.exp,
1870         find/testsuite/find.gnu/iname.xo,
1871         find/testsuite/find.gnu/ipath.exp,
1872         find/testsuite/find.gnu/ipath.xo,
1873         find/testsuite/find.gnu/iwholename.exp,
1874         find/testsuite/find.gnu/iwholename.xo,
1875         find/testsuite/find.gnu/path.exp, find/testsuite/find.gnu/path.xo,
1876         find/testsuite/find.gnu/print0.exp,
1877         find/testsuite/find.gnu/print0.xo,
1878         find/testsuite/find.gnu/quit.exp, find/testsuite/find.gnu/quit.xo,
1879         find/testsuite/find.gnu/true.exp, find/testsuite/find.gnu/true.xo,
1880         find/testsuite/find.gnu/wholename.exp,
1881         find/testsuite/find.gnu/wholename.xo,
1882         find/testsuite/find.posix/and.exp,
1883         find/testsuite/find.posix/and.xo,
1884         find/testsuite/find.posix/exec-one.exp,
1885         find/testsuite/find.posix/exec-one.xo,
1886         find/testsuite/find.posix/grouping.exp,
1887         find/testsuite/find.posix/grouping.xo,
1888         find/testsuite/find.posix/name.exp,
1889         find/testsuite/find.posix/name.xo,
1890         find/testsuite/find.posix/posixnot.exp,
1891         find/testsuite/find.posix/posixnot.xo,
1892         find/testsuite/find.posix/prune.exp,
1893         find/testsuite/find.posix/prune.xo: Added new test cases for many
1894         of the actions and tests of find
1896         * find/find.c (default_prints):
1897         not a static function, so do not declare it as one.
1899         * m4/withfts.m4: Fixed underquoted definition of FIND_WITH_FTS.
1900         [this change is currently on a branch only]
1902 2005-07-30  James Youngman  <jay@gnu.org>
1904         * find/finddata.c, find/ftsfind.c, find/parser.c, find/pred.c,
1905         find/util.c, m4/Makefile.am, m4/withfts.m4: Initial attempt to
1906         convert find to use gnulib's fts()
1907         [this change is currently on a branch only]
1908         
1909         * find/finddata.c, find/ftsfind.c, m4/withfts.m4: New file.
1910         [this change is currently on a branch only]
1911         
1912         * NEWS, configure.in, find/Makefile.am, find/defs.h, find/find.c,
1913         import-gnulib.sh: Initial attempt to convert find to use gnulib's
1914         fts() [this change is currently on a branch only]
1916 2005-07-29  James Youngman  <jay@gnu.org>
1918         * NEWS, configure.in
1919         Prepared for the release of findutils-4.2.24
1921         * ChangeLog: Updated with recent changes.
1923         * NEWS, find/find.1, doc/find.texi:
1924         Indicate that -ok and -okdir redirect stdin from /dev/null.
1926         * NEWS: Explain the directory link count change more throroughly.
1928         * NEWS: Fixed bug #13973.
1930         * find/pred.c (pred_fprintf): Fix Savannah bug #13973: Modify the
1931         handling of -printf %Y so that it no longer modifies stat_buf
1933         * find/testsuite/find.gnu/printf-symlink.exp,
1934         find/testsuite/find.gnu/printf-symlink.xo: Detect Savannah bug
1935         #13973: pollution of stat_buf by the %Y directive (trivial change
1936         from Andreas Metzler)
1938         * INSTALL, depcomp, doc/texinfo.tex, install-sh, missing, mkinstalldirs:
1939         Updated auxilliary files from the automake-1.9 distribution
1941         * configure.in:
1942         Introduce new Automake conditional, CROSS_COMPILING, true when we are corss compiling
1944         * find/find.c:
1945         If we decline to follow a symbolic link due to the safety check, issue a more self-explanatory warning message
1947         * lib/Makefile.am: Don't build regexprops if we are cross compiling
1949         * doc/Makefile.am:
1950         Depend on the regex.h file rather than the 'regexprops' binary,
1951         because the header file will always exist even if we are doing "make
1952         dist".  Otherwise "make distcheck" fails because it tries to rebuild
1953         find.info while the source-directory is read-only.
1955 2005-07-28  James Youngman  <jay@gnu.org>
1957         * find/find.1:
1958         Say "other users" rather than "rest of the world" when talking about
1959         Unix permissions.  Fixes Savannah bug #4246.
1961 2005-07-27  James Youngman  <jay@gnu.org>
1963         * xargs/testsuite/Makefile.am: Added new test case 'childfail.exp'.
1965         * doc/find.texi:
1966         Updated the description of the safe-dir-change operation to reflect
1967         what find now does on systems that lack O_NOFOLLOW.
1969         * NEWS, find/parser.c: Indicate in the output of find --version if
1970         the leaf optimisation is enabled or not
1972         * find/find.c: Fixed typo.
1974         * find/find.c: If the link count of a directory starts off less
1975         than two, disable the leaf optimisation for this directory.
1977 2005-07-26  James Youngman  <jay@gnu.org>
1979         * lib/regexprops.c: Further small corrections from Karl.
1981         * doc/find.texi:
1982         Reordered the sections in the manual to put the "Common Tasks" and
1983         "Worked Examples" chapters together.
1985         * configure.in, find/find.c: Allow the leaf optimisation to be
1986         disabled by default with the configure option
1987         --disable-leaf-optimisation
1989         * find/find.c: Removed old code for antuqie version of savedir().
1991         * lib/regextype.c: Put the syntaxes in alphabetical order.
1993         * lib/regexprops.c: Karl made some more readability suggestions.
1995 2005-07-24  James Youngman  <jay@gnu.org>
1997         * doc/Makefile.am: If the regexprops program has changed we should
1998         re-run it, since it will probably now produce different output
2000         * lib/regextype.h:
2001         Allow the caller to detect if one regex type is identical to another.
2003         * configure.in:
2004         Define the preprocessor macro FINDUTILS for that code int he lib/
2005         directory can be slightly more reusable.
2007         * lib/regextype.c:
2008         Allow the caller to detect if one regex type is identical to another.
2010         * lib/regexprops.c:
2011         Made Texinfo style corrections suggested by Karl Berry.
2013 2005-07-22  James Youngman  <jay@gnu.org>
2015         * xargs/testsuite/xargs.posix/childfail.exp, xargs/xargs.c: Fix
2016         Savannah bug #13878, in which xargs deals incorrectly with child
2017         failure, returning 0 when it should return 123
2019 2005-07-17  James Youngman  <jay@gnu.org>
2021         * find/find.1: (tiny change) Corrections by Greg Wooledge
2023 2005-07-16  James Youngman  <jay@gnu.org>
2025         * doc/find.texi: Updates following comments by Dave Gilbert.
2027         * NEWS: Corrected a typo.
2029         * doc/find.texi:
2030         Added in the example about updating an aggregate timestamp file.
2032 2005-07-15  James Youngman  <jay@gnu.org>
2034         * po/da.po: Updated Danish translation from translation project
2036 2005-07-14  James Youngman  <jay@gnu.org>
2038         * NEWS, doc/Makefile.am, doc/find.texi, lib/Makefile.am,
2039         lib/regexprops.c, lib/regextype.c, lib/regextype.h: Added
2040         --regextype and -regextype options to locate and find
2041         respectively, and documented these
2043         * doc/find.texi: We use GNU Emacs regexps by default now.
2045         * doc/find.texi:
2046         We require GNU sort in order for locate to handle newlines correctly,
2047         not just GNU find.
2049 2005-07-10  James Youngman  <jay@gnu.org>
2051         * doc/find.texi:
2052         Applied several documentation improvement patches from Aaron Hawley
2054         * ChangeLog, NEWS: Updated with recent changes.
2056         * NEWS: Recent gnulib changed have fixed -iregex
2058         * doc/find.texi, xargs/xargs.1:
2059         Tiny patch from Andreas Metzler: xargs -I is like xargs -i, but the latter is deprecated
2061 2005-07-06  James Youngman  <jay@gnu.org>
2063         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
2064         Fixed Savannah bug #13650; programs run by -exec cannot read stdin
2066 2005-07-04  James Youngman  <jay@gnu.org>
2068         * NEWS: *** empty log message ***
2070         * doc/find.texi:
2071         Added a "Worked Examples" section.   It currently only contains a
2072         (long) example about deleting files.
2074         * .cvsignore: Some extra stuff to ignore.
2076 2005-07-03  James Youngman  <jay@gnu.org>
2078         * find/Makefile.am: Don't need regexprops.c really...
2080         * lib/regextype.c, lib/regextype.h:
2081         New files for selecting regex type based on a keyword
2083         * locate/locate.1: Documented the fact that we now use Emacs-style
2084         regexps, not POSIX EREs, for compatibility with find -regex.
2086         * lib/Makefile.am, locate/locate.c, doc/find.texi,
2087         find/Makefile.am, find/defs.h, find/find.1, find/find.c,
2088         find/parser.c: Fixed Savannah bug #13495: find now uses
2089         Emacs-style regexps by default
2091 2005-07-02  James Youngman  <jay@gnu.org>
2093         * configure.in, find/defs.h, find/fstype.c, find/parser.c,
2094         intl/dcigettext.c, lib/buildcmd.c, lib/listfile.c,
2095         lib/savedirinfo.c, locate/locate.c, xargs/xargs.c: Assume unistd.h
2096         is present - avoid using HAVE_UNISTD_H
2098 2005-07-01  Jim Meyering  <jim@meyering.net>
2100         With `-fprint F' or `-fprintf F', don't write diagnostics
2101         to F when stderr is closed.
2103         * find/parser.c: Include "stdio-safer.h".
2104         (open_output_file): Use fopen_safer, not fopen.
2105         * import-gnulib.sh (findutils_modules): Add stdio-safer.
2107 2005-07-01  James Youngman  <jay@gnu.org>
2109         * doc/find.texi:
2110         Aaron pointed out a potentially-confusing sentence.  I fixed it.
2112         * find/defs.h, find/find.1, find/find.c, find/parser.c,
2113         find/pred.c, find/util.c: Allow consistency-checking of the
2114         predicates, checking for example that actions all have side
2115         effects
2117 2005-06-29  James Youngman  <jay@gnu.org>
2119         * doc/find.texi: Applied patch from Aaron Hawley (Savannah patch
2120         #3751: Typos and small suggestions to find.texi)
2122 2005-06-27  James Youngman  <jay@gnu.org>
2124         * ChangeLog, locate/locate.c: Applied patch from Bas Van Gompel to
2125         move match counting into a (new) visitor function
2127         * NEWS, configure.in: No longer 4.2.23, as we're moving on now
2129 2005-06-24  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2131         * locate/locate.c (visit_count, visit_limit): New functions.
2132         (locate): Use visit_limit or visit_count. Simplify main loop.
2133         (main) Bail out early when limit is reached.
2135 2005-06-20  James Youngman  <jay@gnu.org>
2137         * xargs/xargs.c:
2138         Removed some code which had already been disabled via the preprocessor.
2140 2005-06-19  Dmitry V. Levin <ldv@altlinux.org>
2142         * lib/savedirinfo.c: Fix two compilation warnings (which would 
2143         prevent compilation if "-Wall -Werror" is in effect).
2144         
2145 2005-06-19  James Youngman  <jay@gnu.org>
2147         * ChangeLog: Indicate that we made (are making) a release.
2149         * ChangeLog, NEWS, configure.in: Preparing to release 4.2.23
2151         * doc/find.texi: Fixed Texinfo syntax error in previous change
2153         * doc/find.texi, xargs/xargs.1:
2154         Document the fact that the -i and -L options are currently
2155         incompatible (Savannah bug 13041).
2157         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
2158         reject trailing slashes in updatedb's --prunepaths, bacsue these
2159         will never be matched
2161         * NEWS: Released findutils-4.2.23.
2163         * doc/find.texi, xargs/xargs.1:
2164         Document the fact that the -i and -L options are currently
2165         incompatible (Savannah bug 13041).
2167         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
2168         reject trailing slashes in updatedb's --prunepaths, because these
2169         will never be matched.
2171 2005-06-18  Martin Buchholz (trivial patch applied by James Youngman)
2173         * find/defs.h, find/find.c, find/parser.c, doc/find.texi: Fix
2174         typos/spelling errors (mostly in source code comments).
2176 2005-06-18  Dmitry V. Levin  <ldv@altlinux.org>
2178         Additional documentation tweaks for -execdir/-okdir actions.
2179         * find/parser.c (parse_help): Mention -execdir and -ordir options.
2180         * doc/find.texi, find/find.1: Additionally document new options.
2181         
2182 2005-06-12  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2184         * locate/locate.c: Implement --all (-A).
2185         
2186         * NEWS, doc/find.texi, locate/locate.1: Document locate --all (-A)
2187         
2188 2005-06-12  James Youngman  <jay@gnu.org>
2190         * find/find.c, NEWS:
2191         Savannah bug #13381 (Debian bug 313081): if we have O_NOFOLLOW,
2192         safely_chdir() does not need to call stat().  However, process_dir()
2193         used to rely on using that stat information.  To work around this
2194         problem, there is now an output parameter in safely_chdir() which
2195         indicates if the stat buffer is valid.
2196         This bug has possible security implications.
2198         * find/find.1, doc/find.texi:
2199         Applied patch from Andreas Metzler, improving the wording for the
2200         documentation of the %k and %b format directives.  This patch does
2201         not require a copyright assignment as it consists of several
2202         copies of the same small wording change.
2204 2005-06-11  James Youngman  <jay@gnu.org>
2206         * find/find.1: Corrected spelling error 'writeable' to 'writable'.
2208         * find/find.1, locate/locate.1:
2209         Fixed Savannah bug #13363, typos in manpages (trivial change)
2211 2005-06-10  James Youngman  <jay@gnu.org>
2213         * find/find.c, lib/savedirinfo.c, lib/savedirinfo.h: Switch to a
2214         new scheme for saving directory entry data which is extensible to
2215         allow additional data to be saved.
2217 2005-06-09  James Youngman  <jay@gnu.org>
2219         * locate/testsuite/config/unix.exp:
2220         Use the new normalize_dir procedure throughout.
2222         * locate/testsuite/config/unix.exp: Move the normalisation into a
2223         procedure.  Don't rely on the "file normalize" command being
2224         available (it's new in Tcl 8.4).
2226 2005-06-08  James Youngman  <jay@gnu.org>
2228         * ChangeLog, NEWS, configure.in: Updated for recent changes
2230         * doc/find.texi:
2231         Explain that you should put the argument of -name in quotes.
2233         * find/find.1:
2234         Added a new "NON-BUGS" section pointing out things that look like bugs
2235         but are caused by mistakes or misunderstandings.
2237         * doc/find.texi, locate/locate.1: Applied Bas van Gompel's patch
2238         which allows the database to be read from stdin.
2240         * locate/locate.c:
2241         Read the database in by using the "visitor" pattern.  Modified file
2242         header comment to indicate that we no longer use the efficient
2243         algorith described in ;login:.  Emit an error message if the
2244         LOCATE_PATH variable implies that we should read stdin twice.
2245         Most of this code is from Bas van Gompel.
2247         * AUTHORS: Credit Bas van Gompel for his work on locate.
2249         * lib/printquoted.h: Appled patch from Bas - fixing compiler warning.
2251 2005-06-07  James Youngman  <jay@gnu.org>
2253         * ChangeLog, NEWS, configure.in: Updates prior to release
2255         * config.rpath: Added file required for 'make dist'
2257         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
2258         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
2259         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2260         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2261         po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
2262         po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
2263         updated the po files for release
2265         * xargs/testsuite/Makefile.am:
2266         Added in all the test files from Dmitry V. Levin.
2268 2005-06-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2270         * NEWS, locate/locate.1, doc/find.texi: Document usage of `-'
2271         to refer to stdin in database-path for locate.
2272         * locate/locate.c: Change prototype for visitors and processors
2273         throughout. Move reading the database and generating base_name
2274         into visitors. Allow `-' to refer to stdin in database-path.
2276         * lib/printquoted.h: Include stdio.h.
2278 2005-06-07  James Youngman  <jay@gnu.org>
2280         * COPYING, debian/copyright, depcomp, doc/texinfo.tex,
2281         find/defs.h, find/find.c, find/fstype.c, find/parser.c,
2282         find/pred.c, find/testsuite/config/unix.exp, find/tree.c,
2283         find/util.c, import-gnulib.sh, intl/Makefile.in,
2284         intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
2285         intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
2286         intl/dngettext.c, intl/explodename.c, intl/finddomain.c,
2287         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
2288         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
2289         intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h,
2290         intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias,
2291         intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y,
2292         intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c,
2293         lib/buildcmd.c, lib/buildcmd.h, lib/extendbuf.c, lib/extendbuf.h,
2294         lib/forcefindlib.c, lib/listfile.c, lib/listfile.h,
2295         lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c,
2296         lib/printquoted.h, lib/qmark.c, lib/savedirinfo.c,
2297         lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c,
2298         locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c,
2299         locate/locatedb.h, locate/testsuite/config/unix.exp,
2300         locate/updatedb.sh, missing, po/fetch-po-files,
2301         xargs/testsuite/config/unix.exp, xargs/xargs.c: 
2302         Updated the FSF's postal address
2304         * ChangeLog: Corrected Bas's email address.
2306         * locate/locate.c: Updated copyright years.
2308 2005-06-07  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2310          * locate/locate.c: Fold case once, only when needed.
2311   
2312 2005-06-07  James Youngman  <jay@gnu.org>
2314         * NEWS: Updated with recent changes.
2316         * mdate-sh: Use the mdate-sh from automake
2318         * find/parser.c, find/pred.c, find/tree.c, find/util.c,
2319         lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c,
2320         lib/listfile.h, locate/code.c, locate/locate.c, find/defs.h,
2321         find/find.c: Fix Savannah bug #13324: Fix compiler warnings for
2322         GCC-3.4
2324         * locate/locate.c:
2325         Fixed Savannah bug #13325: Quoting of output filenames in locate
2326         should match find.
2328         * find/parser.c:
2329         Fixed Savannah bug #13319: C9X-ism in parser.c (declaration after
2330         statements).
2332         * find/pred.c, lib/Makefile.am, lib/listfile.c, lib/nextelem.c,
2333         lib/printquoted.c, lib/printquoted.h, lib/qmark.c, NEWS,
2334         doc/find.texi, find/defs.h, find/find.1, find/parser.c: Fixed
2335         Savannah bug #13303, find should filter out non-printable
2336         characters if outputting to tty
2338 2005-05-30  James Youngman  <jay@gnu.org>
2340         * locate/locate.c: rename new_locate() to locate() since
2341           old_locate() has gone the way of the dodo.
2343 2005-05-29  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2345         Add a ``--print'' (``-p'') option. (to cancel side-effects of -c/-S)
2346         Allow ``--statistics'' in combination with non-options.
2347         * doc/find.texi: Add documentation for locate --print (-p), and the
2348         use of non-options with --statistics.
2349         * locate/locate.1: ditto.
2350         * locate/locate.c: Read each database only once.
2352 2005-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2354         Adjust to recent gnulib changes.
2355         * import-gnulib.sh: Get config.rpath from gnulib/build-aux,
2356         not gnulib/config.
2357         * find/parser.c (parse_perm): Ignore umask when parsing
2358         symbolic permissions.  Adjust to new modechange API.
2360 2005-05-16  James Youngman  <jay@gnu.org>
2362         * find/find.c, find/parser.c, find/pred.c, find/tree.c:
2363         Trivial change: don't use i18n support for debug-only messages
2365         * ChangeLog: Added ChangeLog entry crediting Dmitry
2367 2005-05-09  James Youngman  <jay@gnu.org>
2369         * find/parser.c:
2370         The previous change fixed Savannah bug #12999.  This change doesn't do
2371         anything, it's only intended to be a place to record the Savannah bug
2372         ID we've just fixed.
2374         * find/parser.c:
2375         Oops.  Initialise the variable which indicates which regex syntax to
2376         use.  We use POSIX basic regular expressions.
2378         * find/parser.c:
2379         Suggestion by Ed Avis: point out that "-name foo/bar" will almost
2380         always evaluate to false.   Suggest to the user what alternatives they
2381         might find useful.
2383 2005-05-02  James Youngman  <jay@gnu.org>
2385         * AUTHORS:
2386         Added Dimitry (his new test suite contribution required a copyright
2387         assignment).
2389 2005-05-03  Dmitry V. Levin
2391         * Added xargs test suite tests by Dmitry V. Levin, together with
2392           bugfixes which ensure that the tests pass.
2394 2005-04-18  James Youngman  <jay@gnu.org>
2396         * Added test suite tests for Bas van Gompel's changes.
2398 2005-04-18  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2400         * doc/find.texi: Document locate --non-existing (-E).
2401         * locate/locate.1: Ditto.
2402         * locate/locate.c: Implement --non-existing (-E).
2403    
2404 2005-04-04  James Youngman  <jay@gnu.org>
2406         * configure.in, import-gnulib.sh:
2407         We no longer need gnulib/m4/Makefile.am
2409         * po/vi.po: Updated Vietnamese translation
2411         * locate/updatedb.sh:
2412         Savannah bug #12491: Only use the "-s" option to "su" if it is
2413         supported.
2415 2005-04-01  James Youngman  <jay@gnu.org>
2417         * locate/locate.1, locate/updatedb.1, xargs/xargs.1: Trivial
2418         change from A Costa <agcosta@gis.net>, fixing typos in manual
2419         pages for xargs, locate and updatedb; fixes Savannah bug #12500,
2420         Debian bug #301934
2422 2005-03-22  James Youngman  <jay@gnu.org>
2424         * import-gnulib.sh: Include the new gnulib module stat-macros
2426         * configure.in:
2427         CVS code is (will shortly be) no longer identical to the 4.2.20 release
2429 2005-03-17  James Youngman  <jay@gnu.org>
2431         * configure.in: Preprare for release of 4.2.20.
2433         * NEWS: Updated prior to release of 4.2.20.
2435         * ChangeLog: Updated with recent changes.
2437         * THANKS: Thank Bas van Gompel, but only once.
2439         * THANKS: Thank Bas van Gompel and Aaron S. Hawley.
2441         * po/vi.po: Updated Vietnamese PO file
2443 2005-03-10  James Youngman  <jay@gnu.org>
2445         * po/nl.po: Updated Dutch PO file
2447 2005-03-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2449         * import-gnulib.sh: Re-enable creation of gnulib/m4/Makefile.am.
2451 2005-03-07  James Youngman  <jay@gnu.org>
2453         * Released findutils-4.2.19.
2455         * find/testsuite/find.posix/sizes.exp:
2456         Use 2>/dev/null instead of 2>&1, because Tcl understands the former
2457         but not the latter.
2459         * find/testsuite/Makefile.am: Also distribute sv-bug-12181.xo.
2461         * find/testsuite/Makefile.am: Distribute sv-bug-12181.
2463         * find/testsuite/Makefile.am: Distribute sv-bug-12230.
2465         * NEWS: Updated with new news.
2467         * ChangeLog: Brought up to date.
2469         * lib/buildcmd.c, find/testsuite/find.gnu/sv-bug-12230.exp: Fixed
2470         Savannah bug #12230, in which '-exec echo == {} +' is always run,
2471         even if there were no matched files.
2473 2005-03-06  James Youngman  <jay@gnu.org>
2475         * ChangeLog: Added latest changes.
2477         * po/pt.po, configure.in: Added Portuguese translation
2479 2005-03-04  James Youngman  <jay@gnu.org>
2481         * configure.in: Modernized the way we call AC_INIT and
2482         AM_INIT_AUTOMAKE
2484         * locate/locate.c, find/pred.c, find/find.c:
2485         Eliminated some compiler warnings
2487         * find/pred.c: Clarified the meaning of a comment.
2489         * find/testsuite/Makefile.am: Added sizes.exp, sizes.xo.
2491         * find/testsuite/find.posix/sizes.xo,
2492         find/testsuite/find.posix/sizes.exp: Added tests for -size
2493         predicate
2495 2005-03-03  James Youngman  <jay@gnu.org>
2497         * find/find.c:
2498         safely_chdir_lstat(): if we didn't end up in the right place, and then
2499         fchdir() fails, we can't return to the directory we started in.
2500         Therefore, issue a fatal error message and exit.
2502 2005-03-01  James Youngman  <jay@gnu.org>
2504         * find/find.c, find/testsuite/find.posix/sv-bug-12181.exp,
2505         find/testsuite/find.posix/sv-bug-12181.xo: Fixed SourceForge bug
2506         12181 (find -H symlink-to-dir reports 'Too many Symbolic links')
2507         and bug 12044 (find still hangs on dead NFS filesystems on
2508         Solaris)
2510 2005-02-28  James Youngman  <jay@gnu.org>
2512         * doc/find.texi: Typo: O_NOFOLLOW, not O_FOLLOW
2514         * import-gnulib.sh:
2515         Suggestion from Martin Buchholz; unset CDPATH to prevent "cd" echoing
2516         the new directory.
2518 2005-02-27  James Youngman  <jay@gnu.org>
2520         * README: Indicate how the reader can verify the release.
2522 2005-02-26  James Youngman  <jay@gnu.org>
2524         * po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po,
2525         po/zh_CN.po, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po,
2526         po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot,
2527         po/fr.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2528         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2529         po/pt_BR.po, po/ro.po, po/ru.po: Added new Vietnamese translation
2531         * configure.in: Added new Vietnamese translation.
2533 2005-02-25  James Youngman  <jay@gnu.org>
2535         * po/ga.po: Updated Irish po file
2537 2005-02-23  James Youngman  <jay@gnu.org>
2539         * Makefile.am: Fix Savannah bug #12064 - 'make distclean' deletes
2540         regex.c but should not.
2542         * find/testsuite/Makefile.am,
2543         find/testsuite/find.gnu/printf-h.exp,
2544         find/testsuite/find.gnu/printf-h.xo: Added test case for Savannah
2545         bug #12085 (-printf %h).
2547         * NEWS, doc/find.texi, find/find.1, find/pred.c:
2548         %h now expands to '.' instead of nothing.
2550 2005-02-22  James Youngman  <jay@gnu.org>
2552         * find/find.c:
2553         Fixed Savannah bug #12099 (misinterpretation of system versions
2554         leading to possible incorrect disabling of O_NOFOLLOW).  Reported by
2555         Dmitry V. Levin.
2557         * find/pred.c:
2558         For the %h format, don't bail out early as the format might contain
2559         something else too.
2561 2005-02-21  James Youngman  <jay@gnu.org>
2563         * find/find.c: Fixed accidental C99 dependency.
2565 2005-02-20  James Youngman  <jay@gnu.org>
2567         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
2568         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
2569         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2570         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2571         po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po,
2572         po/sv.po, po/tr.po, po/zh_CN.po: Updated italian translation
2574         * doc/find.texi: Corrected a typo.
2576         * find/find.c:
2577         Read the mounted device list afer parsing the command line, so that
2578         for example "find --version" still works (in response to Savannah bug
2579         #12044).
2581         * configure.in: We've moved on from findutils-4.2.18.
2583 2005-02-19  James Youngman  <jay@gnu.org>
2585         * NEWS: Corrected the summary of the "find -depth" bug.
2587 2005-02-16  James Youngman  <jay@gnu.org>
2589         * NEWS, configure.in: Prepared for release of 4.2.18.
2591         * ChangeLog: Updated prior to release of 4.2.18.
2593         * find/testsuite/Makefile.am:
2594         Distribute the test cases for the recent "find -depth" bug.
2596         * find/testsuite/find.posix/depth1.exp, find/testsuite/find.posix/depth1.xo:
2597         Added test case for find -depth bug reported by Joseph S. Myers
2599         * find/find.c:
2600         If -depth is in effect, processing of the subdirectories invalidates
2601         the information in 'state'.  Therefore once we get around to
2602         processing the predicates, restore the information that we keep in
2603         'state' and in 'stat_buf'.
2605 2005-02-15  James Youngman  <jay@gnu.org>
2607         * ChangeLog: Updated with recent changes
2609         * find/find.1:
2610         Emphasise that -L causes find to recurse into subdirectories pointed
2611         to by symbolic links.
2613         * find/find.1:
2614         Patch to find.1 from Aaron Hawley <Aaron.Hawley@uvm.edu>:
2616         * Notes about -H actually apply to -L.
2617         * Said paragraph is duplicated two paragraphs later.
2618         * Typos: nno, ibmue, surrpounding
2620 2005-02-15  Aaron Hawley  <Aaron.Hawley@uvm.edu>
2622         * find/find.1: Notes about -H actually apply to -L.  Said
2623         paragraph is duplicated two paragraphs later.  Also typos: nno,
2624         ibmue, surrpounding
2626 2005-02-13  James Youngman  <jay@gnu.org>
2628         * find/find.1: Miscellaneous small clarifications and improvements.
2630         * doc/find.texi: Added Info nodes and menus under "Changing the
2631         Current Working Directory" so that it doesn't generate such a huge
2632         Info page.
2634         * find/find.c: Parenthesise #if defined(...).
2636 2005-02-13  Dmitry V. Levin  <ldv@altlinux.org>
2637         
2638         * find/find.c: remove test code snippet (time(NULL) was used to
2639         place a marker for spotting with strace(), but was not actually
2640         needed).
2642         * find/find.c (safely_chdir_nofollow): must not fall back on
2643         safely_chdir_lstat() because that will expose it to race condition
2644         exploits, making it pointless.
2646         * find/find.c (safely_chdir_lstat): Move
2647         complete_pending_execdirs() up into safely_chdir(), because we
2648         need to do that in either case.
2650 2005-02-12  James Youngman  <jay@gnu.org>
2652         * configure.in, doc/find.texi, find/defs.h, find/find.c,
2653         find/parser.c: Fix for Savannah bug #11879, that
2654         init_mounted_dev_list() causes find to hang on systems which are
2655         clients to dead NFS servers
2657 2005-02-10  James Youngman  <jay@gnu.org>
2659         * doc/find.texi: Talk about the problem where find will not work
2660         if you have a filesystem mounted from an unresponsive NFS server.
2662 2005-02-09  James Youngman  <jay@gnu.org>
2664         * find/find.1: Indicate that $TZ affects from printf-format
2665         results, and add extra cross-references in the SEE ALSO section.
2667 2005-02-08  James Youngman  <jay@gnu.org>
2669         * xargs/testsuite/Makefile.am: Distribute the .xe files also.
2671         * Makefile.am: Check that we have the right number of .xe files in
2672         the distribution also.
2674         * ChangeLog, NEWS, configure.in
2675         Preparing to release findutils-4.2.17
2677 2005-02-07  James Youngman  <jay@gnu.org>
2679         * find/testsuite/config/unix.exp: Re-sort the .xo file using the
2680         calling user's locale, because our 'pre-sorted' .so output file
2681         may not be sorted with the same collating order as 'sort' used to
2682         order the output of "find.  Bug spotted by Vin Shelton and Dimitry
2683         V. Levin.
2685         * find/testsuite/Makefile.am:
2686         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
2688         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
2689         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
2690         Fix for starting point /foo/bar/baz where bar is a symlink but baz
2691         is not - we should chdir into bar there even if it is a symbolic
2692         link
2694 2005-02-07  James Youngman  <jay@gnu.org>
2696         * find/testsuite/Makefile.am:
2697         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
2699         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
2700         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
2701         Fix for starting point /foo/bar/baz where bar is a symlink but baz
2702         is not - we should chdir into bar there even if it is a symbolic
2703         link
2705 2005-02-06  James Youngman  <jay@gnu.org>
2707         * doc/find.texi:
2708         -size: Clarification - -size gives a result consistent with 'wc -c'
2709          for example.
2711         * Makefile.am, find/testsuite/Makefile.am,
2712         find/testsuite/find.gnu/execdir-root-only.exp,
2713         find/testsuite/find.gnu/execdir-root-only.xo,
2714         locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
2715         dist-hook: Ensure that we distribute all the .po files and all the
2716         testsuite files
2718         * po/pl.po: Updated Polish translation from TP website
2720 2005-02-05  Dmitry V. Levin  <ldv@altlinux.org>
2722         * find/parser.c, find/pred.c: Additional tweaks for
2723         -execdir/-okdir actions.
2724         
2725         * find/parser.c (new_insert_exec_ok): Disable ignore_readdir_race
2726         for -execdir/-okdir.
2727         
2728         * find/pred.c (pred_execdir, pred_okdir): Use state.rel_pathname
2729         instead of basename(pathname).  Do not add "./" prefix for
2730         absolute pathnames.
2731         
2732         * find/find.c (process_top_path): Treat "/" similarly to ".".
2734         * xargs/testsuite/xargs.posix/savannah-11865.exp,
2735         xargs/testsuite/xargs.posix/savannah-11865.xo, xargs/xargs.c:
2736         Fixed Savannah bug #11866 (not resetting number of used chars in
2737         the command buffer) - reported by Dimitry V. Levin
2739 2005-02-05  James Youngman  <jay@gnu.org>
2741         * THANKS:
2742         Added thanks for Dimitry - has produced many patches, bugfixes and
2743         suggestions.
2745         * find/pred.c:
2746         Fixed Savannah bug #11866: typo in pred_okdir() renders it useless
2748         * find/pred.c:
2749         Savannah bug #11861: undefined symbol 'basename' on IRIX 5.3
2751         * NEWS, configure.in, po/be.po, po/ca.po, po/el.po, po/eo.po,
2752         po/fi.po, po/ga.po, po/hr.po, po/hu.po, po/ja.po, po/lg.po,
2753         po/ms.po, po/ro.po, po/sl.po, po/sr.po, po/zh_CN.po: Added new
2754         translations
2756         * ChangeLog: Updated from CVS prior to release of 4.2.16.
2758         * po/ChangeLog: Updated from CVS.
2760         * NEWS, configure.in: Preparing to release 4.2.16
2762         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
2763         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
2764         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl.po, po/sv.po,
2765         po/tr.po: make update-po prior to 'make distcheck'
2767         * po/fetch-po-files: This is the first version we actually used.
2769         * find/find.c: process_top_path() fixed compilation warning.
2771         * find/find.c: process_top_path(): avoid processing this item if
2772         we can't chdir to the basename of the named file.
2774         * lib/Makefile.am: Always build forcefindlib.c
2776         * locate/locate.c: Say 'base name' rather than 'basename' in comments
2778         * find/pred.c, find/find.c: process_top_path(): Proper bugfix for
2779         correct handling of items at depth 0 (i.e. specified on the
2780         command line) - do an extra chdir to ensure that we're in the
2781         directory containing the item before calling process_path().
2782         Hnece also undo the previous 'quick fix' for the same problem
2784         * doc/find.texi:
2785         -execdir no longer has to treat anything as special, even at depth 0.
2787 2005-02-03  James Youngman  <jay@gnu.org>
2789         * doc/find.texi, find/pred.c: When state.curdepth is 0, our
2790         working directory is not the directory containing the file we are
2791         processing.
2793 2005-02-02  James Youngman  <jay@gnu.org>
2795         * find/pred.c:
2796         To allow compilation on cygwin, use base_name(), not basename().
2799 2005-02-01  James Youngman  <jay@gnu.org>
2801         * ChangeLog: Updated from CVS log.
2803 2005-01-31  James Youngman  <jay@gnu.org>
2805         * find/find.c, lib/nextelem.c, lib/nextelem.h, locate/code.c,
2806         locate/frcode.c, locate/testsuite/config/unix.exp,
2807         xargs/testsuite/config/unix.exp, xargs/xargs.c: Updated/corrected
2808         the email address for David MacKenzie, one of the original authors
2809         of findutils
2811         * doc/Makefile.am: The HTML version of the manual generated for
2812         the GNU project website has each node in a separate file, not each
2813         chapter in a separate file; adjust filenames accordingly
2815         * find/parser.c, find/pred.c, lib/savedirinfo.c:
2816         Removed some unused variables (patch from Dmitry V. Levin)
2818         * find/find.c:
2819         Patch from Dmitry V. Levin <ldv@altlinux.org>: Add subfs to the list
2820         of filesystems which are likely to be automounted.
2822         * m4/findlib.m4: Corrected typo (pointed out by Dmitry V. Levin).
2824         * find/testsuite/config/unix.exp,
2825         find/testsuite/find.gnu/name-period.xo,
2826         find/testsuite/find.gnu/posix-dflt.xo,
2827         find/testsuite/find.gnu/posix-h.xo,
2828         find/testsuite/find.gnu/posix-l.xo,
2829         find/testsuite/find.gnu/printf.exp,
2830         find/testsuite/find.gnu/printf.xo: Systems differ in the order in
2831         which filenames are returned by readdir.  Hence sort the output of
2832         'find' before comparing against the expected-output file.  We
2833         therefore also have the lines in the .xo files ready-sorted.
2835 2005-01-30  James Youngman  <jay@gnu.org>
2837         * doc/Makefile.am:
2838         Added rules for extra targets that we buld to update the web site.
2840 2005-01-29  James Youngman  <jay@gnu.org>
2842         * configure.in: No longer version 4.2.15 - we've changed the manual.
2844         * doc/find.texi:
2845         Clarified the txt about adding extra tests with post-processing via
2846         xargs, and recommend -execdir instead for security reasons.
2848         * doc/find.texi: Patch from Karl Berry:
2849         - more entries for the dir file
2850         - use @copying so the copyright ends up in the HTML etc. output.
2851           (This is the only really important change.)
2852         - put @contents after the title page, for conventional toc location.
2853         - use @ifnottex to wrap the Top node instead of @ifinfo, for the sake of
2854           HTML output, etc.
2856         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
2857         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
2858         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
2859         po/sv.po, po/tr.po: Prepared to release findutils-4.2.15
2861         * ChangeLog: Updated from CVS log.
2863 2005-01-28  James Youngman  <jay@gnu.org>
2865         * configure.in:
2866         Make --enable-d_type-optimization and --enable-d_type-optimisation
2867         both work.
2869         * configure.in: Assume --enable-d_type-optimisation by default
2871         * find/parser.c: Indicate which features are enabled/disabled
2873         * locate/testsuite/config/unix.exp:
2874         Clean up the files left behind by the locate_textonly test
2876 2005-01-27  James Youngman  <jay@gnu.org>
2878         * doc/find.texi: Documented --regex.
2880         * NEWS, locate/locate.1, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/regex1.exp:
2881         Implemented locate --regex - but needs documenting in Texinfo manual.
2883 2005-01-25  James Youngman  <jay@gnu.org>
2885         * configure.in: Bumped version no.
2887         * doc/find.texi:
2888         Document --mmap and --stdio as being synonyms of -m and -s.
2890         * locate/locate.1:
2891         Document --mmap and --stdio as synonyms of -m and -s.
2893         * locate/locate.c:
2894         Document -m and -s (both no-ops) in the usage message.
2896         * doc/find.texi, locate/locate.1: Document -m and -s as no-ops.
2898         * ChangeLog: Updated for release of findutils-4.2.14.
2900         * 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:
2901         Preparing to release findutils-4.2.14
2903 2005-01-25  James Youngman  <jay@gnu.org>
2905         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
2906         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
2907         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
2908         po/sv.po, po/tr.po: Preparing to release findutils-4.2.14
2910 2005-01-24  James Youngman  <jay@gnu.org>
2912         * Makefile.am: Work around the fact that automake-1.7 actually
2913         works, and correctly distributes regex.c; hence dist-hook should
2914         only copy gnulib/lib/regex.c if this has not already been done.
2916         * find/defs.h, find/find.c, find/pred.c,
2917         find/testsuite/Makefile.am,
2918         find/testsuite/find.gnu/printf-symlink.exp,
2919         find/testsuite/find.gnu/printf-symlink.xo,
2920         find/testsuite/find.gnu/xtype-symlink.exp,
2921         find/testsuite/find.gnu/xtype-symlink.xo: Fixes for -xtype and
2922         -printf %Y, which had been the wrong way around.
2924         * NEWS: Avoid including the find.gnu subdirectory in the
2925         distributed file more than once
2927         * locate/locate.c:
2928         Move the printing of the statistics into a new function, print_stats()
2930         * find/testsuite/Makefile.am: Avoid including the find.gnu
2931         subdirectory in the distributed file more than once
2933         * import-gnulib.sh:
2934         We need the regex module anyway, to allow compilation on Solaris
2936 2005-01-23  James Youngman  <jay@gnu.org>
2938         * configure.in:
2939         Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
2940         systems like Solaris, which lacks those functions in libc (fixes GNU
2941         Savannah bug #11710).
2943         * locate/locate.1: -S is a synonym for --statistics
2945         * doc/find.texi: Documented the new -H, -L and -P options.
2947         * locate/locate.1, locate/locate.c: Implement options -L
2948         (default), -H and -P, which mean the same things as for find,
2949         except for the fact that the default is -L rather than -P
2951         * find/find.1: Corrected definition of the exit status for -quit.
2953         * find/find.c, find/pred.c: If DEBUG_STAT is set, issue a debug
2954         message when we call chdir() so that we can figure out what is
2955         actually being stat()ed
2957         * locate/updatedb.sh:
2958         Removed spurious newline from help message (bug report from Karl
2959         Berry).
2961         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
2962         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
2963         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po,
2964         Makefile.am, NEWS, configure.in, find/defs.h, find/find.c,
2965         find/parser.c, find/pred.c, find/tree.c, find/util.c,
2966         import-gnulib.sh, lib/savedirinfo.c: Merged the d_type
2967         optimisation code; this is disabled by default, and can be enabled
2968         with 'configure --enable-d_type-optimisation'
2970         * NEWS:
2971         Updated optimisation NEWS item to indicate the effect on runtime.
2973 2005-01-22  James Youngman  <jay@gnu.org>
2975         * NEWS, configure.in: Prepare for release of findutils-4.2.12
2977         * ChangeLog: Brought up to date with recent changes.
2979         * Makefile.am, import-gnulib.sh, po/Makefile.in.in, po/Makevars,
2980         po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
2981         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
2982         po/pl.po, po/pt_BR.po, po/remove-potcdate.sin, po/ru.po, po/sk.po,
2983         po/sv.po, po/tr.po: Switch to using the gnulib gettext module, to
2984         ensure that 'make distcheck' works with current xgettext,
2985         autoconf, etc.
2987         * find/testsuite/config/unix.exp:
2988         Oops, we do need to clean up after all.
2990 2005-01-21  James Youngman  <jay@gnu.org>
2992         * xargs/testsuite/Makefile.am: Added name of missing input file.
2994         * find/testsuite/Makefile.am:
2995         Distribute a few files that we had forgotten about
2997         * xargs/testsuite/Makefile.am: Added some missing files.
2999         * lib/Makefile.am: Also need buildcmd.h.
3001         * xargs/testsuite/Makefile.am: Fixed a typo.
3003         * NEWS: Indicate the d_type performance improvement
3005 2005-01-18  James Youngman  <jay@gnu.org>
3007         * lib/savedirinfo.h: Added on d_type_optimisation also
3009         * lib/savedirinfo.c: Added on branch d_type_optimisation also.
3011         * find/pred.c: Added assert that we actually know the file type by
3012         the time pred_type() is called
3014         * find/find.c: Always initialise state.have_stat = false when
3015         starting to work with a new file
3017 2005-01-17  James Youngman  <jay@gnu.org>
3019         * ChangeLog: Brought up to date with recent changes.
3021         * NEWS: Documented the changes so far.
3023         * find/testsuite/find.gnu/exec-many-rtn-success.xo:
3024         Expected output for exec-many-rtn-success.exp
3026         * find/find.1:
3027         Indicate that -quit still ensures that pending commands are invoked
3029         * doc/find.texi:
3030         Indicate that -quit still causes partial command lines to be invoked,
3031         but there are some types of fatal error which leave such commands
3032         uninvoked.
3034         * find/defs.h, find/find.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
3035         Fixed savannah bug  #11625 Wrong return status for -exec ... \; when command fails; also execute any pending commands when doing -quit
3037         * 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:
3038         Various test cases for succeeding and failing forms of -exec \; and -exec {} +
3040         * find/pred.c: "-exec ... {} +" always returns "true".
3042         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
3043         Implemented d_type optimisation but not working correctly, so currently disabled
3045         * lib/savedirinfo.h, lib/savedirinfo.c:
3046         Initial implementation (temporarily disabled).
3048         * lib/Makefile.am: Resolved merge conflict.
3050         * lib/Makefile.am:
3051         Make sure nextelem.h is included in the list of sources.
3053         * find/parser.c, lib/nextelem.c, lib/nextelem.h, locate/locate.c:
3054         Use prototypes for next_element() to make sure it is called correctly.
3056 2005-01-16  James Youngman  <jay@gnu.org>
3058         * find/find.c, find/pred.c:
3059         When completing incomplete multiple execs, use 'eval_tree' not 'predicates'
3061         * lib/buildcmd.c:
3062         Oops, initialise state->cmd_initial_argv_chars to zero.
3064         * find/find.1:
3065         Document the way that -execdir and -okdir will refuse to wqork if ">"
3066         is on $PATH.  Also document -okdir in the manpage.
3068         * find/parser.c:
3069         -execdir and -okdir are insecure if $PATH includes the current
3070          directory, and so they refuse to work if the user has done that.
3072         * find/pred.c:
3073         Oops; for -exec ... {} +, pass arguments to bc_push_arg() in the right
3074         order.   Problem spotted by Geoff Clare.
3076         * TODO: Removed items which have now been done.
3078         * lib/buildcmd.c: Tidied up formatting of arg list for bc_do_insert
3080 2005-01-15  James Youngman  <jay@gnu.org>
3082         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo:
3083         Added extra tests for more printf formats; patch by Andreas Metzler
3085         * locate/locate.c:
3086         Ensure that the new long options have a relevang short option too.
3087         Also bring usage message into line with the options actually
3088         supported.  Thanks to Bas van Gompel for noticing this defect.
3090         * locate/locate.1:
3091         Escape "-" in SYNOPSIS.  Thanks to Bas van Gompel for noticing this
3092         defect.
3094         * ChangeLog: Fixed typos.
3096         * doc/find.texi:
3097         Documented -execdir, and the "+" variants of -exec and -execdir.
3099         * find/find.1: Documented -execdir.
3101         * xargs/xargs.c:
3102         Updated to bring into line with bc_*() interface changes
3104         * ChangeLog: Updated with recent changes.
3106         * find/defs.h, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h:
3107         Implemented -execdir and -okdir
3109         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3110         First working version of -exec ...+
3112 2005-01-09  James Youngman  <jay@gnu.org>
3114         * find/defs.h, find/find.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3115         Initial implementation of -exec ..{} +, but currently disabled since not yet working
3117 2005-01-08  James Youngman  <jay@gnu.org>
3119         * find/find.c: Fixed typo in comment.
3121         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
3122         We now understand but do not implement -execdir (a *BSD invention, and a very useful security enhancement) and -okdir (the obvious companion to it)
3124         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
3125         The GNU coding standard requires a space between the function name and
3126         its parenthesised argument list.
3128         * find/defs.h:
3129         Understand the -exec ... {} \+ construction (for multiple
3130         replacement).  No support yet.
3132         * locate/locate.1:
3133         Indicate that empty elements in the dbpath are treated as synonyms for
3134         the default database.
3136         * locate/locate.c:
3137         Support empty elements in the dbpath as synonyms for the default
3138         database.  These colons can be leading, trailing or in the middle of
3139         the string.  We no longer com,plain if the user does this.
3141         * lib/nextelem.c:
3142         If curdir_ok is 0 and an element is empty, return "" instead of NULL
3143         so that the caller knows to keep calling us.
3145         * find/find.c, find/pred.c, import-gnulib.sh, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
3146         Savannah bug 11517: find, xargs, locate, etc. should not hide write failures; patch from Jim Meyering
3148         * 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:
3149         changed .pot creation date
3151         * THANKS, AUTHORS: Take into account the FSF copyright-assignments list
3153         * doc/find.texi:
3154         If -quit is used, the exit value can be nonzero if errors have occurred.
3156         * find/find.1:
3157         Removed incorrect comment about -H, -P and -follow in HISTORY.
3159 2005-01-07  James Youngman  <jay@gnu.org>
3161         * lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3162         Refactored xargs to use an external library function from the new file buildcmd.c
3164         * configure.in: no longer the same as the released 4.2.11 version
3166 2005-01-06  James Youngman  <jay@gnu.org>
3168         * xargs/testsuite/inputs/lines.xi, xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/Makefile.am:
3169         Tests for the -L option
3171         * xargs/testsuite/config/unix.exp: When a test fails, show the diffs
3173         * xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/xargs.posix/l2.xo:
3174         tests for the -l option
3176         * xargs/testsuite/Makefile.am: Added extra test files
3178         * xargs/testsuite/xargs.sysv/trace.exp, xargs/testsuite/xargs.sysv/trace.xe, xargs/testsuite/xargs.sysv/trace.xo:
3179         Added tests for the -t option
3181         * 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:
3182         Use a blanks-only input file for cases where there is supposed to be no output
3184         * xargs/testsuite/inputs/blank.xi: Initial version.
3186         * xargs/xargs.1:
3187         Corrected a typo; also indicate that it's impossible to use xargs
3188         securely due to the race condition.
3190 2005-01-05  James Youngman  <jay@gnu.org>
3192         * find/parser.c:
3193         Fixed Savannah bug 11495: fallthrough from -printf format processing
3194         from 'n' case to 'd' case.
3196 2005-01-03  James Youngman  <jay@gnu.org>
3198         * doc/find.texi:
3199         Oops.  Had duplicated an entire section.  Fortunately this was after
3200         @bye, so there was no adverse effect.
3202         * NEWS: locate -b.
3204         * doc/find.texi, locate/locate.1: document locate -S
3206         * configure.in, doc/find.texi, locate/locate.1, locate/locate.c:
3207         Support locate -b as a synonym for locate --basename
3209         * 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:
3210         distcheck
3212         * find/testsuite/config/unix.exp:
3213         Clean up (delete) find.out at at the end of the test.
3215         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c:
3216         Implemented the -samefile test for find
3218 2005-01-02  James Youngman  <jay@gnu.org>
3220         * ChangeLog: Updated with recent changes.
3222         * NEWS:
3223         Bas van Gompel: two-line patch to locate.c to make locate's -i and -w
3224         options work if -e is in use.
3226         * THANKS: Added Bas van Gompel.
3228         * locate/locate.c:
3229         Bas van Gompel: (visit_exists) when testing for the existence of the
3230         file, check the real filename [printname], not the case-converted
3231         filename [testname].  Really these argument names are badly chosen.
3233         * find/find.1, doc/find.texi:
3234         Improved the documentation for -perm, with plenty of examples,
3235         following a comment by Dan Jacobson that the comment "Symbolic modes
3236         use mode 0 as a point of departure" is baffling and unhelpful.
3238         * locate/locate.c:
3239         Suggestion and patch from Bas van Gompel: (new_locate): Fix display of
3240         negative compression ratios.
3242 2004-12-31  James Youngman  <jay@gnu.org>
3244         * NEWS: Brought up to date with recent changes
3246         * doc/find.texi:
3247         Don't need to nest the "race conditions with..." sections so deeply.
3249         * doc/find.texi: Corrected some spelling errors.
3251         * doc/find.texi: Added new "Security Considerations" chapter.
3253 2004-12-23  James Youngman  <jay@gnu.org>
3255         * locate/locate.c:
3256         Applied bugfixes from Bas van Gompel <patch-findutils.buzz@bavag.tmfweb.nl>.
3257         (lc_strcpy): Zero-terminate result.
3258         (add_visitor): Update lastinspector.
3259         (visit_substring_match_casefold): fix off-by-one error.
3260         (new_locate): Move visit_exists down to improve performance.
3261         (new_locate): Don't fold case when getting stats.
3263 2004-12-19  James Youngman  <jay@gnu.org>
3265         * doc/find.texi:
3266         Indicate that "cd /; find tmp -wholename /tmp" will never match anything.
3268         * doc/find.texi: Documented locate --statistics.
3270         * locate/locate.1: Documented the --statistics option.
3272         * locate/locate.c: Added support for the -S option.
3274 2004-12-12  James Youngman  <jay@gnu.org>
3276         * NEWS: Added a summary of the changes so far.
3278         * find/tree.c: Made some of the error messages more self-explanatory
3280         * find/pred.c: Print pointers with %p, not %x.
3282         * find/find.c: Moved option data into struct options.
3284         * find/find.1: clarifications
3286         * find/testsuite/find.gnu/comma.exp:
3287         Limit the amount of searching with maxdepth.
3289         * doc/find.texi: clearer description of how -prune works
3291         * ChangeLog: Removed duplicate entry.
3293         * configure.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
3294         Separated ariables representing current state from variable representing option information
3296 2004-12-11  James Youngman  <jay@gnu.org>
3298         * find/parser.c: Readability improvement to the usage message.
3300         * find/find.c: Oops.  Fixed unmatched #endif.
3302         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo, THANKS, configure.in, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
3303         Fixed Savannah bug #11280
3305         * find/find.c:
3306         Remember to set path_length and curdepth in process_top_path().
3308 2004-12-07  James Youngman  <jay@gnu.org>
3310         * find/fstype.c: Use xstat() not stat() to examine things.
3312         * find/find.c: Explain why #ifdef EOVERFLOW.
3314         * find/find.c: EOVERFLOW is not defined on UNICOS.
3316         * NEWS: Corrected typo.
3318 2004-12-06  James Youngman  <jay@gnu.org>
3320         * ChangeLog: Brought up to date.
3322         * NEWS, configure.in: releasing 4.2.10
3324         * 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:
3325         distcheck
3327         * ChangeLog: Updated prior to release of finsutils-4.2.10.
3329         * import-gnulib.sh, find/fstype.c:
3330         Use gnulib's mountlist module instead of grokking it ourselves.
3332         * configure.in:
3333         Removed all the out-of-date cruft for grokking getmntent().
3335         * xargs/xargs.c:
3336         Added the -I and -L options; also -E takes an argument which is not optional.
3338 2004-12-05  James Youngman  <jay@gnu.org>
3340         * README, configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c:
3341         Allow debug output to be turned on or off by saying --enable-debug on the configure command line
3343         * README:
3344         Removed disparaging (it is now, it probably wasn't then) comment about
3345         the production-readiness of Automake.
3347         * README: Qualify remarks about POSIX compliance.
3349         * NEWS, configure.in: Preparation for release 4.2.9
3351         * 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:
3352         distcheck
3354         * ChangeLog: Brought up to date.
3356         * find/find.c:
3357         Avoid duplicate error message when we cannot chdir() into a subdirectory.
3359         * THANKS: Added recent thankees.
3361         * NEWS:
3362         Brought up to date with respect to the current set of fixed bugs.
3364         * NEWS, xargs/xargs.1, xargs/xargs.c:
3365         Implemented POSIX options -L, -I and -E
3367 2004-12-03  James Youngman  <jay@gnu.org>
3369         * find/parser.c:
3370         -xdev is an option, not a test.   Fixes Savannah bug 11192.
3372         * find/find.1, xargs/xargs.1:
3373         Escape dashes with a backslash (for fix Savannah bug 11189).
3375 2004-11-27  James Youngman  <jay@gnu.org>
3377         * find/find.c:
3378         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.
3380         * find/find.1: "necessary" only has one "C".
3382         * find/find.1:
3383         If stat() fails with ELOOP, we issue a diagnostic message.
3385 2004-11-26  James Youngman  <jay@gnu.org>
3387         * find/find.c: Removed some unused code.
3389         * Makefile.am: Don't do anything in the 'intl' subdirectory
3391         * find/find.c:
3392         Enhanced safely_chdir() to the point where the test suite passes, and report infinite loops in the directory hierarchy
3394         * find/defs.h:
3395         belt and braces; ensure that SYMLINK_NEVER_DEREF has value zero
3397         * find/find.1:
3398         Describe our strategy for detecting and reporting infinite loops
3400 2004-11-24  James Youngman  <jay@gnu.org>
3402         * doc/find.texi:
3403         Updated the discussion of th error messages for findutils-4.2.8.
3405         * configure.in: Next version will be 4.2.9...
3407         * find/find.c:
3408         Don't issue a warning if we notice the mounting of a filesystem that's
3409         likely just to be an automounter.
3411         * doc/find.texi, find/find.1:
3412         Explain how rounding is performed for -atime and friends.
3414         * xargs/xargs.c:
3415         Once we collect enough arguments (for the value specified by the -n
3416         option) to do an exec(), do it immediaely instead of waiting for the
3417         next one to arrive.  This fixes Savannah bug #7340.
3419         * ChangeLog, configure.in, NEWS: Prepare to release 4.2.8.
3421         * NEWS: Updates for 4.2.8.
3423         * configure.in: check for  sys/types.h
3425         * find/find.c:
3426         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.
3428         * find/defs.h:
3429         Declarations of xmalloc() and friends belong in xalloc.h, not in defs.h
3431         * find/parser.c: avoid signed/unsigned warning, and #include xalloc.h
3433         * find/fstype.c:
3434         Changed to alloc get_mounted_devices() to compile on Solaris
3436         * README-CVS:
3437         Automake requires GNU m4, so point out that the reader needs that.
3439         * find/defs.h, find/find.c, find/fstype.c:
3440         When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted filesystem names
3442         * NEWS: prepare for 4.2.8
3444         * configure.in:
3445         Look for some Solaris headers which are used by get_mounted_devices()
3447         * lib/Makefile.am: don't build savedirtypes yet
3449         * 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:
3450         updated po files
3452         * m4/nullsort.m4:
3453         Avoid suprious output of the test data when the tests fail.
3455 2004-11-21  James Youngman  <jay@gnu.org>
3457         * 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:
3458         Messages changed again
3460         * ChangeLog, configure.in: Preparing to release 4.2.7.
3462         * NEWS: Updated for release of 4.2.7.
3464         * import-gnulib.sh: Also need canonicalize module.
3466         * find/find.c:
3467         When checking to see if a filesystem has changed state, use an
3468         absolute pathname.
3470         * configure.in:
3471         No need to pause to allow James to view his handiwork, it (allegedly)
3472         works now.
3474         * configure.in:
3475         Oops.  Check for setlocale() to re-enable the i18n support which was
3476         accidentally disabled in 4.2.5.
3478         * find/find.c:
3479         Check to see if the new directory is a transitioned mount point by
3480         using its ABSOLUTE name, if we can figure it out.
3482         * doc/find.texi:
3483         Added guidance on some of the error messages.  Not the most common
3484         ones, but the ones where the user might most benefit from some handy
3485         hints or an explanation of what is going on.
3487         * find/pred.c:
3488         Actually emit an error message if we fail to stat a symlink (for
3489         reasons other than nonexistence of the link and infinite loop).
3491         * doc/texinfo.tex: Updated texinfo.tex
3493         * NEWS, configure.in, find/find.c, find/fstype.c:
3494         Enable the 'Warning: filesystem XXX has recently been mounted' check on Solaris, which prevents it exiting fatally when traversing an automount mount point
3496         * 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:
3497         messages changed again
3499         * NEWS: Implemented xargs --arg-file.
3501         * doc/find.texi, xargs/xargs.1, xargs/xargs.c, NEWS:
3502         Implemented xargs --arg-file
3504         * find/find.c:
3505         Where a filesystem was recently (un)mounted, try togive its full name
3507         * configure.in:
3508         Try to avoid requesting -lsun if we don't seem to need it (e.g. on
3509         UNICOS where it is not present and trying to link against it produces
3510         a warning).
3512         * find/defs.h, lib/modetype.h: Guard against multiple inclusion
3514         * find/fstype.c:
3515         We now need <mntent.h> even if we are not using getmntent() to figure
3516         out the type of a filesystem, because wd_sanity_check() needs to
3517         enumerate the system mount points.
3519         * configure.in: Next release will be 4.2.7.
3521         * find/fstype.c:
3522         get_mounted_filesystems() should use getmntent() if that function is
3523         present, rather than just if configure didn't find anything better for
3524         filesystem_type_uncached() to use than that.
3526         * find/parser.c:
3527         If -delete is the only action on a file, don't assume the default
3528         -print action too.
3530         * 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:
3531         Preparation to release findutils-4.2.6.
3533         * find/Makefile.am, xargs/Makefile.am:
3534         Enable checking of support for --version and --help
3536         * locate/Makefile.am:
3537         Con't check command-line options for frcode, code or bigram
3539         * locate/code.c: Support --version and --help.
3541         * ChangeLog: *** empty log message ***
3543         * find/defs.h, find/find.c, find/fstype.c, lib/Makefile.am, lib/extendbuf.c, lib/extendbuf.h, NEWS:
3544         Avoid fatal error if automount mounts a filesystem on a directory because we chdir()ed into it
3546         * configure.in: Next release will be 4.2.6.
3548         * find/find.1:
3549         Indicate that the '-' flag does work for most fields.   Also provide
3550         an example of using the comma operator to traverse the filesystem just
3551         once but search for more than one thing.
3553         * doc/find.texi: Indicate that the '-' flag does work for most fields.
3555 2004-11-19  James Youngman <jay@gnu.org>
3557         * configure.in: releaseing findutils-4.2.5
3559         * find/testsuite/Makefile.am, locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
3560         If a directory has no Makefile.am, omit it from the parent's DIST_SUBDIRS - automake-1.9 requires this
3562         * 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:
3563         updated by make distcheck
3565         * ChangeLog, NEWS: Updated for release 4.2.5.
3567         * find/find.1, doc/find.texi:
3568         Tell the reader that format flags may not work as they expect.
3570         * configure.in:
3571         Use the correct name for the macro gl_AC_TYPE_LONG_LONG (not
3572         jm_AC_TYPE_LONG_LONG).
3574 2004-11-15  James Youngman <jay@gnu.org>
3576         * import-gnulib.sh:
3577         Avoid test -e because not all systems are POSIX-compliant (bug
3578         #11005).  Also don't need regex module any more if we're not building
3579         in intl.
3581         * Makefile.am, configure.in:
3582         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
3584         * doc/find.texi:
3585         Use @ref not @xref for a reference at the beginning of a sentence.
3587         * intl/Makefile.in:
3588         Make sure gnulib.lib is on the #include path (Savannah bug #11002)
3590         * locate/locate.c:
3591         Use base_name instead of basename - fixes Savannah bug 11003.
3593         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, locate/bigram.c, locate/locate.c:
3594         Don't need banner to emphasise the location of the call to jy_SORTZ
3596 2004-11-12  James Youngman <jay@gnu.org>
3598         * 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:
3599         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]
3601 2004-11-11  James Youngman <jay@gnu.org>
3603         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c:
3604         Implemented -H and -L options.
3606         * find/util.c: Added in the -H and -L options on the usage message.
3608 2004-11-10  James Youngman <jay@gnu.org>
3610         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3611         Implemented %M and %A+ format specifiers
3613         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3614         Documented the fact that only %d and %m format specifiers honour the various formatting flags
3616         * xargs/xargs.c:
3617         Get the right number of bytes in a Kilobyte (hint: it's not 1048; that
3618         was a typo, honest :)
3620         * po/pl.po: Applied Polish translations
3622 2004-11-08  James Youngman <jay@gnu.org>
3624         * 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:
3625         distcheck changed the po files again
3627         * locate/Makefile.am:
3628         Make install-data-hook honour the setting of DESTDIR so that "make
3629         DESTDIR=/tmp/foo install" works and puts localstater in the right
3630         place.
3632         * configure.in: We're now working on findutils-4.2.5.
3634         * doc/find.texi, xargs/xargs.1:
3635         Point out that xargs -i only splits input items at newlines
3637         * ChangeLog: Indicate that we released 4.2.4.
3639         * ChangeLog: Updated for release 4.2.4
3641         * NEWS, configure.in: Prepare for release of 4.2.4.
3643         * NEWS: Brought up to date with latest changes.
3645         * 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:
3646         Turn warning messages off by default if stdin is not a tty; allow these to be controlled explicitly by options -warn and -nowarn
3648         * po/et.po, po/it.po: Updated translation files
3650         * po/sk.po: New translation file
3652         * po/fr.po, po/nl.po, po/tr.po: Updated translation files
3654         * configure.in: Added Slovak (sk) language.
3656         * xargs/xargs.c:
3657         Enforcing a lower limit on the value specified by -s makes the test
3658         suite fail.  Removed that lower limit.
3660         * locate/Makefile.am: Oops, multilocate doesn't exist yet.
3662         * NEWS: *** empty log message ***
3664         * doc/find.texi, locate/updatedb.1, locate/updatedb.sh:
3665         Added option --findoptions to updatedb
3667         * locate/Makefile.am, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
3668         Fixed section numbers in manpage titles and cross-references
3670         * NEWS, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
3671         Increased the default argument length and improved POSIX compliance of the handling of out-of-range values for the -s option
3673 2004-11-07  James Youngman <jay@gnu.org>
3675         * m4/Makefile.am:
3676         Added in the extra files we need to distribute, nullsort.m4
3677         order-bad.bin order-good.bin
3679         * doc/find.texi: Documented locate's --limit option
3681         * locate/locate.1, locate/locate.c:
3682         Implmented --limit and corrected the implementation of the -i option.
3684 2004-11-06  James Youngman <jay@gnu.org>
3686         * NEWS, doc/find.texi, locate/locate.1:
3687         Documented --wholename and --basename and updated the NEWS file
3689         * README-CVS:
3690         Give the autogen commands in a form that you can usefully cut and paste into a shell
3692         * NEWS: Options --null and --count) for locate
3694         * lib/nextelem.c:
3695         Don't return '.' for an empty path element, because the path we are splitting may not be intended to contain directories
3697         * configure.in: we're working on findutils-4.2.4 now
3699         * locate/Makefile.am: Substitute @SORT_SUPPORTS_Z@
3701         * doc/find.texi:
3702         Documented new locate option --null and newline handling
3704         * locate/locate.1, locate/locate.c:
3705         New locate options --null, --wholename, --basename, --count
3707         * locate/frcode.c, locate/updatedb.1, locate/updatedb.sh:
3708         correctly handle newlines in the file names
3710         * configure.in: Determine if sort -z works
3712         * m4/nullsort.m4, m4/order-bad.bin, m4/order-good.bin:
3713         jy_SORTZ: a macro to determine if the system has a sort command with a working -z option
3715 2004-11-01  James Youngman <jay@gnu.org>
3717         * NEWS: Fixed "find -printf '%H\n'".
3719         * find/find.c:
3720         Avoid segfault if -printf %H is used where the matched file was the default, unspecified starting point, the current directory
3722 2004-10-31  James Youngman <jay@gnu.org>
3724         * find/find.1, find/parser.c: NetBSD also supports -d.
3726         * find/find.1, doc/find.texi:
3727         Documented the behaviour of -daystart and -follow in more detail
3729         * find/parser.c: Corrected the usage message.
3731         * find/parser.c:
3732         When deciding whether to issue a warning about options following
3733         non-options, ignore any options whose position affects the tests
3734         (i.e. -daystart and -follow).
3736         * find/parser.c: -daystart is a positional option like -follow.
3738         * find/parser.c:
3739         Issue a warning message if an option is specified after a test or an
3740         action (because the user might have believed that the behaviour of the
3741         option is in some way conditional on the preceding tests).
3743         * locate/updatedb.sh:
3744         Oops; removed some test code that I shouldn't have checked in.
3746         * locate/updatedb.sh:
3747         Indicate that the old locate database format will shortly be unsupported.
3749         * doc/find.texi:
3750         Use @direntry instead of hard-coding START-INFO-DIR-ENTRY inside @ifinfo.
3752         * locate/updatedb.1: Updated default location of locatedb file.
3754         * README-alpha:
3755         Updated to give correct FTP location and to not talk about "test"
3756         versions of automake, which are no longer required.
3758         * locate/updatedb.sh:
3759         Incorporated the default list of filesystems to avoid from the Debian
3760         package.  Also added /afs and /sfs to the default pruned paths.
3762         * configure.in: Released findutils 4.2.3
3764         * 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:
3765         did make distcheck, which updates these files
3767         * find/defs.h, find/fstype.c:
3768         Use const qualifier in arguments to filesystem_type() to allow callers with const variables to use them
3770         * ChangeLog: Updated.
3772         * NEWS: Added new news.
3774         * find/find.c:
3775         Extra diagnositcs for the case where we have the error "%s changed
3776         during execution of %s" - that is when we chdir back to the parent
3777         directory only to find that it has changed.
3779 2004-10-30  James Youngman <jay@gnu.org>
3781         * .cvsignore, NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
3782         Implemented the -quit action
3784         * NEWS, doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3785         Refactored time handling routines in preparation for support of absolute timestamp comparison predicates
3787         * locate/locate.c:
3788         Applied Savannah patch #2952 ("getline off-by-one bugfix").
3790         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
3791         Added -delete action (Savannah patch #3454 with additions)
3793         * locate/locate.c:
3794         Applied Savannah patch #2692 (allowing get_short to process negative integers).
3796         * find/find.c:
3797         If we are iossuing an error message because $FIND_BLOCK_SIZE is set,
3798         ignore the setting of errno.
3800         * find/parser.c: More fixes for pedantic compiler warnings
3802         * NEWS, find/parser.c, find/tree.c: Eliminated some compiler warnings
3804         * find/find.c, find/parser.c, find/pred.c:
3805         Various fixes for compiler warninga sbout unreachable code or unused function arguments
3807         * intl/plural.y: Silence compiler warning about unused argument.
3809         * locate/testsuite/Makefile.am:
3810         Subdirectory "inputs" does not exist, so remove it from DIST_SUBDIRS.
3812         * locate/locate.c:
3813         Corrected the explanation of why we have to use no parentheses around
3814         the String argument to the N_ macro in its expansion.
3816         * configure.in: Nextr release is 4.2.3.
3818         * configure.in: IOndicate this is no longer the pristine release.
3820         * NEWS:
3821         Oops, comments for release 4.2.0 should have said 20480 bytes, not 2480.
3823         * lib/listfile.c:
3824         The -ls predicate should not truncate usernames.  Fixes Savannah bug #10800.
3826         * find/fstype.c, locate/locate.c:
3827         Fixes for Savannah bug #3727 (Intel icc compilation errors).
3829 2004-10-25  James Youngman <jay@gnu.org>
3831         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3832         Support -printf %D, which prints the device number of the containing filesystem
3834         * locate/updatedb.sh:
3835         Avoid confusion between James Woods and James Youngman, by using the
3836         disambiguating surname.
3838         * find/parser.c: Use RE_ICASE instead of re->translate.
3840         * configure.in, find/parser.c, find/pred.c, xargs/xargs.c:
3841         No need to #define _GNU_SOURCE if we use gl_INIT.
3843 2004-10-24  James Youngman <jay@gnu.org>
3845         * ChangeLog: Prepared to release findutils-4.2.2.
3847         * 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:
3848         Updates prior to release of 4.2.2
3850         * NEWS: Updated with news for findutils-4.2.2.
3852         * 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:
3853         Corrected typo in the address of the FSF office
3855         * lib/strspn.c: Updated FSF address.
3857         * m4/.cvsignore: 'cvs status' should ignore Makefile.in
3859         * 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:
3860         Use gnulib-tool --import to import the gnulib code, rather than the odd way we were doing it before
3862         * 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:
3863         Work round an apparent compiler bug in HP-UX 11.23 for
3864         ia64
3866         * locate/locate.c:
3867         Work around what appears to be a C compiler bug in HP-UX 11.23 for
3868         ia64.
3870         * INSTALL, depcomp, install-sh, missing, mkinstalldirs:
3871         Updated from automake
3873         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c, find/find.c:
3874         Avoid use of exit() within main, to silence warnings about unreachable code
3876 2004-10-22  James Youngman  <jay@gnu.org>
3878         * doc/find.texi: Syntax corrections.
3880         * doc/find.texi: Indicate that "-exec {}+" is not yet supported.
3882         * find/find.1: Indicate that "{}+" is not yet supported.
3884         * find/testsuite/find.gnu/name-period.xo, find/testsuite/find.gnu/name-period.exp, find/find.1, doc/find.texi:
3885         The -name predicate must allow '*' to match '.foo' as demanded by IEEE
3886         Std 1003.2-1992 Interpretation #126.
3888         * find/pred.c:
3889         Remove use of FNM_PERIOD for -name as demanded by IEEE Std 1003.2-1992
3890         Interpretation #126
3892         * find/parser.c: Fix for compilation (on AIX 4.3) with GCC 2.x.
3894         * xargs/xargs.c:
3895         Changed the erorr message issued when there is an unmatched quote to
3896         point out that the user might have wanted to use the -0 option instead.
3898 2004-10-17  James Youngman  <jay@gnu.org>
3900         * configure.in:
3901         Define intmax_t if it is not already defined - allows parser.c to compile on AIX 4.3
3903         * configure.in:
3904         Adjust version number to indicate that this s/w has moved on since the
3905         4.2.1 release.
3907         * configure.in: preparing to release 4.2.1
3909         * ChangeLog: updated with current changes
3911         * README-CVS: Updated to go with newer version of gnulib.
3913         * 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:
3914         preparation for release
3916         * NEWS: Mention the changes to "trap".
3918         * NEWS: Brought up to date.
3920         * import-gnulib.sh:
3921         Use xalloc-die module from gnulib, since that has now been split out
3923         * find/parser.c:
3924         Check fnmatch() when other predicates that rely on fnmatch() are used.
3926         * find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup
3928 2004-10-16  James Youngman <jay@gnu.org>
3930         * import-gnulib.sh:
3931         Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.
3933         * locate/updatedb.sh:
3934         Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
3935         names instead.  See
3936         http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
3937         which indicates that support for signal numbers is optional, while
3938         support for signal names is mandatory.
3940         * configure.in:
3941         Indicate that this is the CVS version (once again) now that findutils
3942         4.2.0 has been released.
3944         * 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:
3945         findutils 4.1.20 check-in for tagging
3947 2004-10-02  James Youngman <jay@gnu.org>
3949         * po/Makefile.in.in:
3950         Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.
3952         * NEWS: Brought up to date, organised more clearly, and tidied up.
3954         * NEWS: brought up to date with recent changes
3956         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
3957         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
3959         * find/pred.c:
3960         Fixed usage of human_readable() in '%k' format specifier to fix a bug
3961         reported by Dmitry V. Levin (arguments to human_readable() were
3962         specified in the wrong order, which resulted in a floating-point
3963         error).
3965 2004-08-08  James Youngman <jay@gnu.org>
3967         * locate/updatedb.sh:
3968         cd to / to avoid inability to examine the current directory if we're
3969         invoked via cron (and hence in root's home directory for example).
3971         * doc/find.texi, find/find.1:
3972         Deprecate -path and -ipath in favour of -wholename and -iwholename
3974         * find/parser.c:
3975         As per RMS's suggestion, deprecate -path and -ipath in favour of
3976         -wholename and -iwholename.
3978         * locate/locate.c:
3979         Fixed Savannah bug #9923, in which get_short() returns large positive
3980         ints when it should be returning negative shorts.
3982         * xargs/xargs.1:
3983         Applied documentation improvements suggested by Dan Jacobson
3984         <jidanni@jidanni.org>.
3986         * xargs/xargs.c:
3987         Don't check size_of_environment against arg_max since that causes the
3988         test suite to fail.
3990         * xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option
3992 2004-05-03  James Youngman <jay@gnu.org>
3994         * find/find.1:
3995         document the various suffixes for -size and also the new 
3996         option -ignore_readdir_race
3998         * locate/locate.c:
3999         Fixes Savannah bug #8623 (failure to check consistency of data 
4000         read from locate database)
4002         * locate/updatedb.sh:
4003         Resolves Savannah bug 4380, that updatedb generates an empty
4004         database if one of the commands fails
4006         * NEWS: Talk about -ignore_readdir_race
4008         * doc/find.texi:
4009         Documented -ignore_readdir_race and -noignore_readdir_race
4011         * find/find.c:
4012         -ignore_readdir_race should have no effect if the reason for the
4013          failure of stat(2) was anything other than ENOENT.
4015         * find/defs.h, find/find.c, find/parser.c:
4016         Fixed Savannah bug 4391 (readdir race condition leading to 
4017         spurious error messages)
4019 2004-04-24  James Youngman <jay@gnu.org>
4021         * README-CVS: Corrected the instructions for getting gnulib via CVS.
4023 2004-04-13  James Youngman <jay@gnu.org>
4025         * doc/find.texi:
4026         Actioned Savannah bug #8558 (find complains when it tries to recurse
4027         into directories that it had removed).
4029 2004-03-13  James Youngman <jay@gnu.org>
4031         * ChangeLog: Updated from checkin comments.
4033         * find/find.c:
4034         Oops, there is no access to the predicate name table if DEBUG is 
4035         not #defined.
4037         * find/parser.c:
4038         Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
4039         the failure to handle large arguments to -mtime.  The existing code
4040         does careful computation and then bungs the value into a time_t, which
4041         ruins all our careful effort.  The new code is not a great
4042         improvement.  We just check the result to detect overflow, rather than
4043         actually avoiding the overflow.
4045         * find/find.c:
4046         Fixed Debian bug #185202 by checking for any trailing predicates after
4047         the top-level invocation of get_expr() has done its work.
4049         * locate/locate.1, xargs/xargs.1:
4050         Fixed Debian bug 175372, inappropriate 'L' suffixes on manual 
4051         page section indicators
4053         * find/find.1:
4054         Removed "L" suffixes from manual page section indicators, to fix
4055         Debian bug 175372.
4057         * debian/updatedb.conf:
4058         Updated with list of filesystems from current Debian release.  This
4059         includes devfs, for example.
4061         * xargs/xargs.1:
4062         Modified documentation of "-s" option to take into account the fix for
4063         Debian bug #176201.
4065         * xargs/xargs.c:
4066         Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
4067         reading a patch offered by Bob Proulx and implementing something
4068         substantially similar myself.
4070 2004-01-03  James Youngman  <jay@gnu.org>
4072         * xargs/xargs.c:
4073         Indicate that prep_child_for_exec() fixes Savannah bug #3992.
4075         * xargs/xargs.c:
4076         Attach the stdin of xargs' child process to /dev/null so that if it
4077         tries to read from its stdin it doesn't consume any of the list of
4078         files that xargs is trying to use.
4080         * find/find.1:
4081         Documented that the -regex option follows Gnulib's re_match() 
4082         implementation.
4084         * NEWS, locate/locate.c: Applied Savannah patch 2108
4086         * xargs/xargs.c: Applied Savannah patch 1500
4088         * find/find.1, doc/find.texi:
4089         Improved the documentation for the %k and %b format specifiers to
4090         -printf (Savannah bug #5034).  Also pointed out that this handling is
4091         different to that used by the "b" and "k" suffixes with "-size".
4093         * find/find.1: Improved the documentation for %k (Savannah bug #5034).
4095         * find/find.1:
4096         Improved the documentation for -print0 in the manpage, fixing Debian
4097         bug 111143.
4099         * README-CVS, find/pred.c, lib/listfile.c:
4100         Brought up-to-date with change in gnulib's human.c - we no longer 
4101         use human_readable_inexact(), because it is no longer provided.
4103 2003-08-08  James Youngman  <jay@gnu.org>
4105         * find/find.1:
4106         Documented the fact that -printf also supports the '\0' escape code.
4107         Added "STANDARDS CONFORMANCE" section.
4109 2003-08-02  James Youngman  <jay@gnu.org>
4111         * find/find.1:
4112         Explain that braces are not special when performing filename matching
4113         with -name.
4115         * find/find.1:
4116         added example of the use of -exec to the EXAMPLES section
4118         * find/fstype.c, locate/locate.c:
4119         Savannah bug #4295 - implicit declarations of ctype.h functions
4121         * locate/locate.c:
4122         Savannah bug #4279 - missing newline on locate help message
4124         * find/find.1, xargs/xargs.1:
4125         Improved discussion of the -print0 option of find and the -0 option of xargs
4127 2003-06-26  James Youngman  <jay@gnu.org>
4129         * import-gnulib.sh:
4130         Remove reference to nonexistent module "basename" ("dirname" exists
4131         and we already use that).
4133 2003-06-21  James Youngman  <jay@gnu.org>
4135         * doc/find.texi:
4136         Indicate that xargs stops immediately if a command exits with status 255
4138         * xargs/xargs.1:
4139         Document the fact that xargs exits immediately with an error message
4140         if the command it executes exits with a status of 255.
4142 2003-06-18  James Youngman  <jay@gnu.org>
4144         * find/find.1:
4145         Indicate that -fls and friends always create their output file
4147 2003-06-16  James Youngman  <jay@gnu.org>
4149         * ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
4150         Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.
4152         * AUTHORS: Identify the current maintainer.
4154         * TODO: Removed the TODO items which have now been done.
4156         * THANKS: Added Bruno Haible and Bob Proulx.
4158         * xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
4159         (mbstrstr): New function.
4160         (do_insert): Use it instead of strstr.
4162         * config.guess, config.sub:
4163         Use config.guess and config.sub from automake
4165         * find/fstype.c:
4166         Bruno Haible: (fstype_to_string) Don't define this function if
4167         HAVE_F_FSTYPENAME_IN_STATFS is defined.
4169         * configure.in:
4170         Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
4171         because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.
4173         * doc/find.texi, find/find.1:
4174         Applied patch 1498 (documenting the backslash escape sequence)
4176         * locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.
4178         * doc/find.texi:
4179         Applied Savannah patch #1547 (document the fact that printf
4180         field-width specifiers are supported).
4182         * xargs/xargs.c:
4183         Applied Savannah patch #1499 (adds final newline to usage message).
4185 2003-06-14  James Youngman  <jay@gnu.org>
4187         * NEWS, configure.in:
4188         Updated version number to 4.2.0-CVS [not ready for release yet]
4190         * 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
4191         also need stpcpy (e.g. for Solaris)
4193         * intl/dcigettext.c:
4194         plural_lookup: don't use a variable called "index", because we may
4195         have done "#define strchr index", in which case using a variable
4196         called index will prevent us calling strchr(p, ch) in the same scope.
4198         * 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:
4199         Updated copyright years and the address of the FSF
4201         * aclocal.m4, config.h.in, configure:
4202         Removed files that are generated from other files (e.g. configure)
4204         * NEWS: Updated NEWS file for 4.1.20.
4206         * 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:
4207         Updates to the i18n files to ensure that 'make dist' succeeds
4209         * lib/posix/.cvsignore, lib/posix/Makefile.am,
4210         lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
4211         lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
4212         lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
4213         lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
4214         lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
4215         lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
4216         locate/Makefile.am, locate/Makefile.in, locate/locate.c,
4217         locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
4218         m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
4219         m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
4220         m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
4221         m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
4222         m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
4223         m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
4224         m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
4225         m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
4226         m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
4227         m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
4228         m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
4229         m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
4230         m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
4231         xargs/Makefile.in, xargs/testsuite/Makefile.in,
4232         find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
4233         lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
4234         lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
4235         lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
4236         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
4237         lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
4238         lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
4239         lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
4240         lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
4241         lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
4242         lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
4243         lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
4244         find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
4245         Updated to work with current version of gnulib
4247         * import-gnulib.sh: New file.
4249         * config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
4250         Updated to work with current version of gnulib
4252         * README-CVS: New file.
4254         * Makefile.am, Makefile.in, README-CVS, aclocal.m4:
4255         Updated to work with current version of gnulib
4257 2001-06-09  Kevin Dalley  <kevin@seti.org>
4259         * intl/plural.c:
4260         Changes the location of bison.simple after running bison on local
4261         machine
4263         * ChangeLog: *** empty log message ***
4265         * Makefile.in, aclocal.m4, config.h.in, configure,
4266         doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
4267         lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
4268         locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
4269         xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38
4271         * ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.
4273         * configure.in: * configure.in: add tr to ALL_LINGUAS.
4275         * intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
4276         intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
4277         intl/locale.alias, intl/ngettext.c, intl/plural.y,
4278         intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38
4280         * intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
4281         intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***
4283         * m4/jm-macros.m4:
4284         * jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
4285         AM_ICONV, which is imported from gettext-0.10.38.  removed
4286         jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
4287         imported from gettext-0.10.38.
4289         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
4291         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
4293         * po/ChangeLog:         * cat-id-tbl.c: Remove file.
4295         * po/de.po, po/es.po, po/et.po, po/fr.po:
4296         * fr.po, et.po, es.po, de.po: updated translations to
4297         findutils-4.1.7.
4299         * po/tr.po: * tr.po:  New Turkish translation.
4301         * m4/ChangeLog: *** empty log message ***
4303         * intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
4304         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
4305         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
4306         intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
4307         intl/localealias.c, intl/plural.c, intl/textdomain.c,
4308         intl/ChangeLog, intl/Makefile.in, intl/VERSION,
4309         intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38
4311         * m4/Makefile.am:
4312         reflects addition of codeset.m4 from gettext-0.10.38, automatically
4313         generated.
4315         * m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
4316                 m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
4317                 progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
4318                 glibc21.m4, gettext.m4, codeset.m4: updated from
4319                 gettext-0.10.38.
4321         * ChangeLog: *** empty log message ***
4323         * THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>
4325         * m4/ChangeLog, locate/testsuite/.cvsignore,
4326         xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
4327         doc/.cvsignore: *** empty log message ***
4329         * m4/jm-macros.m4:      * jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME
4331         * doc/Makefile.in: *** empty log message ***
4333         * doc/Makefile.am:
4334         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
4335         created by dvips.  This should be taken care of by automake, but
4336         the code is commented out.
4338 2001-06-09  Kevin Dalley  <kevin@seti.org>
4340         * ABOUT-NLS: updated from gettext-0.10.38.
4342         * configure.in: add tr to ALL_LINGUAS.
4344         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
4345         created by dvips.  This should be taken care of by automake, but
4346         the code is commented out.
4348 2001-06-05  Kevin Dalley  <kevin@seti.org>
4350         * locate/updatedb.sh: replace "whoami" with "id -u" when testing
4351         for root.
4353 2001-06-04  Kevin Dalley  <kevin@seti.org>
4355         * locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
4356         instance of DIST_SUBDIRS.
4358         * locate/Makefile.am (install-data-hook): changed install target
4359         to install-data-hook, which still installs other files.
4361         * doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
4362         probably be handled by automake.
4364         * doc/mdate-sh: removed file in doc directory.  It now exists only
4365         in top_srcdir, but this changed required a patch to automake.
4367 2001-05-20  Kevin Dalley  <kevin@seti.org>
4369         * Version 4.1.7
4370         
4371         * lib/Makefile.am (EXTRA_DIST): add strcasecmp.c
4373         * find/testsuite/Makefile.am (EXTRA_DIST): new tests:
4374         find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
4375         find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo
4377         * configure.in: update to 4.1.7
4379         * config.sub, config.guess: upgraded to recent versions of
4380         config.sub and config.guess.
4382         * locate/updatedb.sh: Add space to "#! /bin/sh"
4384         * configure.in: Add id to ALL_LINGUAS
4386         * lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
4387         (libfind_a_SOURCES): getline.[ch] removed since getline.c is not
4388         always needed.
4390 2001-05-20  Lionel CONS <lionel.cons@cern.ch>
4392         * find/find.c: Fixed security holes.  1.  There is a race
4393         condition between the lstat() to detect a symbolic link and the
4394         actual chdir().  2.  An attacker can move directories while find
4395         is _inside_ so that chdir(..) goes out of the intended file tree.
4397         * lib/modetype.h: support for Solaris door files is added.
4399         * lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN
4401         * find/pred.c (pred_type): -D option (for Solaris door files) is
4402         added.
4404         * find/parser.c (insert_type):  -D option (for Solaris door files)
4405         is added. 
4407         * find/find.1: -D option (for Solaris door files) is documented
4409         * doc/find.texi (Type): -D option (for Solaris door files) is
4410         documented
4412 2001-05-02  Kevin Dalley  <kevin@seti.org>
4414         * configure.in: Change AC_CHECK_MEMBERS to conform to new
4415         autoconf.  Add Danish.
4417 2001-01-20  Kevin Dalley  <kevin@seti.org>
4419         * doc/find.texi (Adding Tests): Place space in "#! /bin/sh".
4421         * find/testsuite/find.gnu/prune-default-print.xo,
4422         find/testsuite/find.gnu/prune-default-print.exp: test for "find
4423         . -prune" which passes after changes.  Also see name-opt.exp.
4425         * find/util.c (get_new_pred):
4426         * find/tree.c (set_new_parent):
4427         * find/parser.c (various parse functions):
4428         * find/find.c (main): 
4429         (default_prints): new function 
4430         * find/defs.h (struct predicate): added no_default_print
4431         side_effects are no separated from no_default_print.  predicates
4432         which cause side effects should not be reordered (optimized).
4433         predicates which cause printing should have printing turned off.
4434         Printing statements also cause side effects.
4436 2000-10-29  Bruno Haible <haible@ilog.fr>
4438         * locate/code.c (main), doc/find.texi: improve handling of
4439         non-ASCII characters used old format.
4441 2000-10-21  Paul Eggert  <eggert@twinsun.com>
4443         If open + fchdir fails, fall back on xgetcwd + chdir.
4444         The old code tested for this at compile-time,
4445         but SunOS 4.1.4 fchdir can fail at run-time.
4447         * find/defs.h (fchdir): Define to -1 if not available.
4448         * find/defs.h (starting_dir, starting_desc):
4449         Always declare.  starting_dir now points to const.
4450         * find/find.c (starting_dir, starting_desc): Likewise.
4451         * find/find.c (starting_dir):
4452         Now "." if starting_desc is nonnegative, for benefit of diagnostics.
4453         (main, process_top_path, process_dir):
4454         If open + fchdir fails, fall back on xgetcwd + chdir.
4455         * find/pred.c (launch): Likewise.
4457 2000-10-20  Kevin Dalley  <kevin@seti.org>
4459         * xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
4460         find/parser.c (parse_help): add bug reporting address to help
4462 2000-10-13  Kevin Dalley  <kevin@seti.org>
4464         * depcomp, lib/depcomp: depcomp moved from lib to .
4466 2000-10-11  Kevin Dalley  <kevind@rahul.net>
4468         * Version 4.1.6
4469         
4470         * locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
4471         testsuite. 
4473 2000-10-10  Bruno Haible <haible@ilog.fr>
4475         * lib/Makefile.am (libfind_a_SOURCES): added yesno.c
4477         * lib/yesno.c, lib/rpmatch.c: new files.
4479         * find/pred.c: use function yesno().
4481 2000-10-10  Kevin Dalley  <kevind@rahul.net>
4482         
4483         * locate/testsuite/Makefile.am: Added missing \ at end of
4484         EXTRA_DIST lines.
4486         * locate/testsuite/locate.gnu/ignore_case3.xo,
4487         locate/testsuite/locate.gnu/ignore_case3.exp,
4488         locate/testsuite/locate.gnu/ignore_case2.exp,
4489         locate/testsuite/locate.gnu/ignore_case1.xo,
4490         locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
4491         inside tmp directory, add subdir directory under tmp.
4493         * locate/testsuite/config/unix.exp: clean up tmp after test is
4494         finished. 
4496 2000-10-10  Kevin Dalley  <kevind@rahul.net>
4498         * locate/testsuite/config/unix.exp (Repository): 
4500 2000-10-09  Kevin Dalley  <kevind@rahul.net>
4502         * lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
4503         fnmatch which works with Solaris.
4505         * locate/testsuite/config/unix.exp: dejagnu unix.exp
4507         * xargs/testsuite/config/unix.exp: remove temporary file
4509         * xargs/xargs.c: spelling correction
4511         * m4/prereq.m4: updated and changed some macros
4513         * m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
4514         kd_FUNC_FNMATCH_CASE_REPL 
4516         * m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
4517         m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
4518         m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.
4520         * m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4
4522         * locate/testsuite/locate.gnu/ignore_case3.xo,
4523         locate/testsuite/locate.gnu/ignore_case3.exp,
4524         locate/testsuite/locate.gnu/ignore_case2.xo,
4525         locate/testsuite/locate.gnu/ignore_case2.exp,
4526         locate/testsuite/locate.gnu/ignore_case1.xo,
4527         locate/testsuite/locate.gnu/ignore_case1.exp,
4528         locate/testsuite/config/unix.exp: tests related to "--ignore-case"
4529         option.
4531         * locate/testsuite/locate.gnu: testsuite directory
4533         * locate/testsuite/Makefile.am (Repository): 
4535         * locate/testsuite: add directory for locate testsuite
4537         * po/findutils.pot: updated file
4539         * po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
4540         po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
4541         updated various po files.
4543         * locate/updatedb.sh: export TMPDIR, which is used by child
4544         processes.
4546         * locate/locate.1, locate/locate.c:  add "--ignore-case" option.
4548         * locate/Makefile.am: add testsuite subdirectory
4550         * find/testsuite/find.gnu/perm.xo,
4551         find/testsuite/find.gnu/perm.exp,
4552         find/testsuite/find.gnu/name-opt.xo,
4553         find/testsuite/find.gnu/name-opt.exp: added test suites
4555         * configure.in: add locate/testsuite/Makefile
4557         * doc/find.info*: removed from repository
4559         * doc/find.texi: add documentation for "-i" option.
4561         * aclocal.m4: removed from repository, as it is generated.
4563         * find/pred.c: fixes problem with "find -perm -0100".
4565         * lib/lstat.c, lib/stat.c: removed from repository.  These files
4566         are generated from lib/xstat.in.
4568 2000-08-24  Kevin Dalley  <kevind@rahul.net>
4570         * doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.
4572 2000-05-13  Kevin Dalley  <kevind@rahul.net>
4574         * find/tree.c (opt_expr): move iname and ipath to the front of the
4575         list of arguments.
4577         * doc/find.texi (Directories): changed wording for "-prune".
4579         * find/parser.c (parse_prune): set side_effects to true, to
4580         prevent prune from being moved in opt_expr.
4582 2000-04-12  Kevin Dalley  <kevind@rahul.net>
4584         * doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.
4586         * lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
4587         since getstr is needed.
4589         * Version 4.1.5
4590         
4591         * po/POTFILES.in: updated list of files, updated po files.
4594 2000-04-02  Paul Eggert  <eggert@twinsun.com>
4596         Add support for large files, and port to Solaris 8 and earlier
4597         versions.
4599         * lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
4600         HAVE_DECL_GETENV.
4602         * lib/strftime.c (my_strftime): Make sure we call the system
4603         strftime, not ourselves, when invoking the underlying strftime.
4604         
4605         * m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.
4607         * m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
4608         require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
4609         jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
4610         jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
4611         jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
4612         replace strcasecmp, dup2, gethostname, getusershell, stime,
4613         strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
4614         strverscmp, memchr, memmove.  Do not check for declaration of
4615         lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
4616         POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
4617         (jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
4618         struct stat.st_blksize.
4620         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
4621         in shell rather than using putenv, which isn't portable.
4622         
4623         * COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
4624         lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
4625         m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
4626         m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
4627         m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
4628         to latest version from sh-utils-2.0g.
4630         * config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
4631         lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
4632         lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
4633         lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
4634         m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
4635         m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
4636         m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.
4638         * lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
4639         lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
4640         unreleased version of GNU tar (between 1.13.17 and 1.13.18).
4642         * lib/basename.h, lib/waitpid.c: New files, taken from same
4643         version of GNU tar.
4644         
4645         * lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.
4647         * lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
4648         GNU grep 2.4.2.
4650         * lib/strftime.c: Sync to textutils 2.0e.
4651         
4652         * acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
4653         m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
4654         m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
4655         m4/utimes.m4: Remove these files; no longer needed.
4657         * configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
4658         jm_AC_TYPE_UINTMAX_T): Add.
4659         (CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
4660         FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
4661         we don't need acconfig.h.
4662         (AC_CHECK_TYPE): Add ssize_t.
4663         (AC_REPLACE_FUNCS): Add waitpid.
4664         (AC_CHECK_FUNCS): Remove basename.
4665         (AC_FUNC_MKTIME): Remove.
4666         (LIBOBJS): Add no-ops to work around automake 1.4 bug.
4667         (AC_OUTPUT): Add lib/posix/Makefile.
4669         * find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
4670         <stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
4671         include these files, and to include "defs.h" first (since config.h
4672         must be included first).
4673         (CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
4674         S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
4675         MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
4676         (enum permissions_type): New enum.
4677         (struct long_val.negative): New member.
4678         (struct long_val.l_val): Now uintmax_t, not unsigned long.
4679         (struct size_val.size): Likewise.
4680         (struct perm_val): New type.
4681         (struct predicate.perm): Now struct perm_val, not unsigned long.
4682         (struct predicate.type): Now mode_t, not unsigned long.
4683         (list_file): New parameters current_time, output_block_size.
4684         All callers changed.
4685         (savedir, basename): Remove decls.
4686         (output_block_size, start_time): New extern vars.
4688         * find/find.c: Include <human.h>, <savedir.h>.
4689         (output_block_size, start_time): New vars.
4690         (main): Initialize them.  No need to check for negative st_size,
4691         since savedir now does it for us.
4693         * find/fstype.c: Include "dirname.h".
4694         (xatoi): Remove.
4695         (filesystem_type_uncached): Use xstrtoumax instead of xatoi.
4696         
4697         * find/parser.c: Include "xstrtol.h".
4698         (get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
4699         parse_size, parse_used, insert_time, insert_num): Compute using
4700         uintmax_t, not unsigned long.
4701         (parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
4702         Keep track of whether time was negative before converting it to an
4703         unsigned type.
4704         (parse_daystart): Don't assume that localtime succeeds; e.g. it
4705         can fail with 64-bit time_t and 32-bit tm_year.
4706         (parse_perm, insert_type): Compute using mode_t, not unsigned
4707         long.
4708         (insert_type): Use symbolic constants like MODE_ALL instead of
4709         traditional ones like 07777.  Set new kind member to indicate
4710         permissions type, instead of using unportable magic numbers.
4711         (make_segment): We will use human_readable to convert most numeric
4712         values, so simplify the cases.
4713         (get_num_days): Write in terms of get_num, to avoid duplicated
4714         code.
4715         (insert_time, insert_num): When debugging, convert large values to
4716         uintmax_t and output with %ju.
4717         (get_num): Use xstrtoumax to do the real work.
4719         * find/pred.c: Include "basename.h", "human.h".
4720         (DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
4721         fileutils.
4722         (ST_NBLOCKS): Replace with fileutils defn.
4723         (MAX): New macro.
4724         (ctime_format): New function.
4725         (pred_fprintf, format_date): Use human_readable to output large
4726         numbers portably.
4727         (pred_fprintf): Use ctime_format to output ctime-style dates.  Use
4728         base_name to compute the base name of a path.  With %m, output the
4729         mode portably using traditional numbers, even if the host uses
4730         some other numbering scheme.
4731         (pred_iname, pred_name): basename -> base_name.
4732         (pred_perm): Use new kind member to deduce permissions type,
4733         instead of relying on magic numbers.
4734         (pred_size): Compute using uintmax_t, not unsigned long.  Avoid
4735         overflow if file size is near the maximum.
4736         (pred_type): Compute using mode_t, not unsigned long.
4737         (launch): Use waitpid, not wait.  Check for EINTR.
4738         (format_date): Don't assume that localtime succeeds.
4740         * find/util.c (basename): Remove; we now use base_name.
4742         * lib/Makefile.am (SUBDIRS): New macro.
4743         (libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
4744         basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
4745         Remove error.h, error.c, getline.c.
4746         (EXTRA_DIST): Add mktime.c, regex.c.
4748         * lib/listfile.c: Include "human.h".
4749         (alloca): Declare, or include appropriate files to declare.
4750         (DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
4751         (convert_blocks): Remove.
4752         (list_file): New current_time and output_block_size args.
4753         Revamp quite a bit, to handle large numbers correctly
4754         and to match GNU ls behavior more closely.
4756         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
4757         largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
4758         strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
4759         decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
4760         uptime.m4, utimbuf.m4, utime.m4, utimes.m4.
4762         * xargs/xargs.c (wait_for_proc): Retry wait if it fails with
4763         errno == EINTR.
4765 2000-04-05  Kevin Dalley  <kevind@rahul.net>
4767         * xargs/Makefile.am:  add ansi2knr
4769         * xargs/xargs.c: add macros PARAMS rather than P_.  Add
4770         prototypes.
4772         * po/POTFILES: new file listing all POFILES.
4774         * m4/gl.po, m4/et.po: new files
4776         * m4/Makefile.am.in:  updated file
4778         * m4: update directory
4780         * locate/Makefile.am: create updatedb from updatedb.sh
4782         * locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
4783         by updatedb.sh
4785         * locate/frcode.c, locate/code.c, locate/bigram.c: add macros
4786         PARAMS rather than P_.  Add prototypes.
4788         * lib/xstat.in: new file
4790         * lib/Makefile.am: update to latest versions of library files.
4792         * find/testsuite/Makefile.am: add CLEANFILES
4794         * find/util.c: remove definition of basename
4795         
4796         * find/util.c, find/tree.c, find/pred.c, find/parser.c,
4797         find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
4798         than P_, for consistency, change to prototypes
4800         * find/Makefile.am: Add prototypes and ansi2knr
4802         * configure.in: add Galition and Estonian languages.
4803         Miscellaneous other fixes.
4804         
4806 2000-03-11  Kevin Dalley  <kevind@rahul.net>
4808         * lib/basename.c: Add file from libit.
4809         * lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
4810         no longer replaceable.
4812         * find/util.c: Remove definition of basename, which is now in
4813         lib/basename.c (as base_name).
4814         * find/pred.c: Use base_name, not basename.
4815         * find/defs.h: Likewise.
4817         * configure.in : Don't replace basename.  Now we use only
4818         base_name.
4820 2000-02-26  Kevin Dalley  <kevind@rahul.net>
4822         * Version 4.1.4
4823         
4824         * lib/strtoul.c: added to distribution
4825         
4826         * configure.in: added strtoul to AC_REPLACE_FUNCS
4828         * configure.in: added jm_CHECK_ALL_TYPE
4830 2000-02-23  Kevin Dalley  <kevind@rahul.net>
4832         * po/ChangeLog: removed, merged with top-level ChangeLog.
4833         
4834         * po/de.po: new version of German file.
4835         
4836         * po/gl.po, po/et.po: new languages, Estonian and Galician.
4838         * locate/updatedb.sh (PRUNEFS): enclose paths in quotes
4840 2000-02-17  Kevin Dalley  <kevind@rahul.net>
4842         * po/it.po: new version of Italian file.
4843         
4844         * locate/updatedb.sh (prunefs_exp): have sed statement use '*'
4845         rather than the often unsupported '+'.
4847 2000-02-13  Kevin Dalley  <kevind@rahul.net>
4849         * configure.in: removed AC_ARG_PROGRAM, which is already in
4850         AM_INIT_AUTOMAKE. 
4852         * locate/Makefile.am (updatedb), locate/updatedb.sh: add
4853         transforms of find, frcode, bigram, and code back into
4854         updatedb.sh, which were accidentally removed.
4856 2000-02-12  Kevin Dalley  <kevind@rahul.net>
4858         * lib/wait.h: updated address.
4860 2000-01-26  Kevin Dalley  <kevind@rahul.net>
4862         * Version 4.1.3
4864         * acconfig.h: added internationalization.
4866         * intl/*: copied from tar-1.13.17.
4868         * locate/Makefile.am, locate/locate.c, locate/code.c:
4869         internationalized file.
4871         * locate/frcode.c, locate/bigram.c: include headers from ../lib
4872         directory.
4874         * xargs/Makefile.am, xargs/xargs.c: internationalized directory.
4876 2000-01-26  Kevin Dalley  <kevind@rahul.net>
4878         * POTFILES.in: added list of files with translatable strings.
4880         * de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
4881         ru.po, sv.po: New, slightly out of date, files imported from the
4882         Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
4883         German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
4884         Portuguese.
4887 2000-01-24  Kevin Dalley  <kevind@rahul.net>
4889         * lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
4890         works with current version of gettext.
4892         * lib/getline.h : added declaration of getstr.
4893         * lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
4894         standard compilation. Added internationalization.
4895         * find/Makefile.am (INCLUDES): corrected -I options for building
4896         in other directories.
4897         (LDADD): changes for internationalization.
4899         * configure.in (ALL_LINGUAS): added internationalization. 
4900         getline.c is always compiled and linked, because of getstr.
4901         AM_GNU_GETTEXT
4903         * Makefile.am: 
4904         (DISTCLEANFILES): added intl/libintl.h
4905         (AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
4906         (SUBDIRS): added intl and po
4908         * acconfig.h: added internationalization values
4910         * THANKS: added thanks file for gnits compatibility.
4912 2000-01-22  Kevin Dalley  <kevind@rahul.net>
4914         * added intl directory.
4916         * Added internationalization, only with slightly out of date po
4917         files for many locales.
4919 2000-01-18  Kevin Dalley  <kevind@rahul.net>
4921         * Version 4.1.2
4922         
4923         * locate/Makefile.am: remove creation of updatedb, since it is now
4924         made by configure
4926         * configure.in: updatedb is now created by configure.
4928         * xargs/Makefile.am: added testsuite to xargs directory
4930         * locate/updatedb.in: updatedb is now created by configure
4932         * locate/frcode.c, locate/code.c, locate/bigram.c: change return
4933         from main to int.  Replace getstr with getline, where possible.
4935         * locate/Makefile.am: place frcode, code, bigram in
4936         libexec_PROGRAMS
4938         * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
4939         lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
4940         lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
4941         lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
4942         lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
4943         lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
4944         lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
4945         lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
4946         lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
4947         lib/dirname.c, lib/alloca.c: updated to newer version of file from
4948         fileutils.
4950         * find/version.c: version number is now automatically generated by
4951         configure.
4953         * find/fstype.c (filesystem_type_uncached): fixes bug described as
4954         follows:  When 'find' looks for a fstype, it parses the /etc/mtab
4955         until it finds the good line. But, if there is, before the good
4956         line, a line whose mountpoint is unreachable, it fails.
4958         * doc/texinfo.tex: updated to newer version
4960         * doc/find.texi: added version.texi, fixed a few documentation bugs.
4962         * configure.in: new m4 features.
4964         * Makefile.am: moved testsuite to below corresponding directories
4965         find and xargs.
4967         * acconfig.h: updated to match new m4 files.
4969         * m4: added m4 directory, largely borrowed from Jim Meyering's
4970         fileutils.
4972 2000-01-17  Kevin Dalley  <kevind@rahul.net>
4974         * doc/find.texi (Multiple Files): placed missing xargs in examples
4976         * find/testsuite/find.gnu/depth.exp: added find tests to test
4977         "-depth" bug.
4979         * doc/find.texi: include version.texi for automatic determination
4980         of version number, update bug report email address to
4981         bug-findutils@gnu.org.
4982         (Combining Primaries With Operators): add indices for " ,", "()",
4983         "-a", "-o", etc.
4985 2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4987         * find/tree.c (opt_expr): Never rearrange the arguments of the
4988         comma operator, since it is not commutative.  Remove useless
4989         assignment.2
4990         
4991 2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
4992         
4993         * find/find.c (process_path): fix problem with "-depth" which is
4994         tested in depth.exp test.
4996 1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>
4998         * find/fstype.c (filesystem_type_uncached): a stat failure with
4999         EACCESS will ignore this file system keep on looking.  Patch
5000         suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.
5002 1999-08-15  Mark Kettenis  <kettenis@gnu.org>
5004         * xargs/xargs.c (LONG_MAX): Define if necessary.
5005         (main): If ARG_MAX is -1 (that is sysconf
5006         (_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
5007         that case, use LONG_MAX as the limit.
5008         
5009 1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>
5011         * find/version.c: version string is now set by config.h
5013 1999-08-08  Kevin Dalley  <kevin@seti.org>
5015         * Version 4.1.1
5017         * README-alpha: added alpha README file
5019         * find/defs.h: move lstat declarations into defs.h
5021         * xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
5022         lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
5023         Makefile.am: update for automake-1.4
5025 1999-08-02  Kevin Dalley  <kevind@rahul.net>
5027         * AUTHORS: added file listing AUTHORS
5029         * lib/Makefile.am: modified code for EXTRA sources
5030         
5031 1999-01-30  Kevin Dalley  <kevind@rahul.net>
5033         * added const to declaration of basename, which should satisfy
5034         Linux as well as Hurd (fixes bug #31325).
5035         
5036 1998-12-04  Kevin Dalley  <kevind@rahul.net>
5037         
5038         * lib/nextelem.c: removed declaration of strdup and free, which
5039         meets GNU coding standards and allows compilation on more
5040         platforms.
5041         
5042         * find.texi: corrected explanation of -amin option which described
5043         hours instead of minutes
5044         
5045 1998-09-26  Kevin Dalley  <kevind@rahul.net>
5046         
5047         * lib/getline.c: fix getstr so that it correctly handles long file
5048         paths
5049         
5050 1998-09-20  Kevin Dalley  <kevind@rahul.net>
5051         
5052         * removed more function declarations to meet GNU coding standards
5053         
5054 1998-08-30  Kevin Dalley  <kevind@rahul.net>
5055         
5056         * lib/nextelem.c: removed declaration of strdup and free, which
5057         meets GNU coding standards and allow compilation on sparc
5058         
5059         * corrected explanation of -amin option which described hours
5060         instead of minutes
5061         
5062 1998-02-27  Kevin Dalley  <kevind@rahul.net>
5063         
5064         * locate/locate.c: add --existing option to locate, which only
5065         prints the names of files which still exist
5066         
5067 1998-02-08  Kevin Dalley  <kevind@rahul.net>
5068         
5069         * locate/locate.c: corrected get_short so that it correctly
5070         returns negative numbers.
5071         
5072         * remove declarations of various string functions.  Removing the
5073         declarations almost matches the GNU Coding Standards.
5074         
5075 1997-03-03  Kevin Dalley  <kevind@rahul.net>
5076         
5077         * xargs/xargs.c: xargs fixed to prevent occasional core dumping.
5078         
5079 1997-01-11  Kevin Dalley  <kevind@rahul.net>
5080         
5081         * locate/updatedb.sh: add --localuser option to updatedb, which
5082         allows find to be run as nobody, while allowing database file to
5083         be created as root, change suggested by
5084         <Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
5085         
5086 1996-12-28  Kevin Dalley  <kevind@rahul.net>
5087         * added PRUNEFS as variable in updatedb and --prunefs as option to
5088         updatedb
5090 1996-05-27  Kevin Dalley  <kevind@rahul.net>
5091         
5092         * updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
5093         is root
5094 1996-04-27  Kevin Dalley  <kevind@rahul.net>
5096         * lib/getline.c (getstr): verify that nchars_avail is *really*
5097         greater than 0; set *n to a large enough number, stops some core
5098         dumping
5100 Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5102         * Version 4.1.
5104         * locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.
5106         * Makefile.am (distname): Change distribution name from find to
5107           findutils.
5109         * testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.
5111         * locate/Makefile.am (CLEANFILES): Fix typo.
5113 Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5115         * The big 4 0.
5117         * lib/listfile.c find/defs.h (list_file): Take a stream arg.
5118         * find/pred.c (pred_ls): pass it.
5119         * find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.
5121 Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5123         * find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
5124         Flack.
5126         * find/parser.c (insert_fprintf): Warn about unrecognized \ and %
5127         sequences.
5129 Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5131         * find/defs.h parser.c pred.c tree.c util.c: Globally change
5132         "victim" to "primary".
5134         * find/parser.c (insert_fprintf): For 'c' format, don't lose the
5135         need_stat information.  From Chapman Flack.
5137         * doc/find.texi perm.texi: New files.
5138         * configure.in: Configure the doc directory.
5140         * find/pred.c (pred_regex): Check that the regex matched the whole
5141         file name.
5143 Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
5145         * find/find.c (main): Tell what the invalid arg is.
5146         From Kaveh Ghazi.
5148 Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5150         * find/parser.c: Add -mount as an alias for -xdev.
5151         From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).
5153         * lib/modechange.c: Make umask_value unsigned short.
5155         * xargs/xargs.c: Use symbolic constants in longopts.
5156         From Chapman Flack.
5158 Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5160         * xargs/xargs.c (main, read_line, read_string, do_exec): Pass 
5161           along the lengths of the args.
5162           (main): Calculate length of replace_pat.
5163           (push_arg, do_insert): Use those lengths instead of calculating
5164           them. 
5166 Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
5168         * locate/updatedb.sh Makefile.in: Add substitutions to get
5169           the transformed program names.
5171         * xargs/xargs.c: Put back the global variables for now.
5172         Rename some variables.  Increase default args_per_exec.
5173         Use boolean where applicable.
5174         (main): Reduce default arg_max by 2048 for POSIX.2.
5175         (read_string): Don't check EOF string.
5176         (read_line, read_string): Take initial args size into account.
5178 Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5180         * find/pred.c (launch): Use pid_t.
5182         * xargs/xargs.c (EOF_STR): Define and use.
5183         [__STDC__]: Declare xrealloc and xmalloc using void *.
5184         * find/defs.h: Likewise.
5186         * find/defs.h: Only declare stpcpy if !HAVE_STPCPY.
5188         * xargs/xargs.c: Replace most global variables with structure
5189           pointers passed as arguments.  Use pid_t.
5190         * lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
5191         * configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.
5193         * xargs/xargs.c: Improve paging performance and memory
5194           fragmentation by building command arguments in a pre-allocated
5195           buffer and re-implementing the child pid list as an expandable
5196           array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5198 Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
5200         * xargs/xargs.c [__STDC__]: Prototype declarations.
5202 Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
5204         * find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.
5206 Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
5208         * find/fstype.c (fstype_to_string): Add more cases.  Use
5209           INITMOUNTNAMES if defined.
5210         * find/defs.h: Change boolean typedef from char to int.
5211         * configure.in: Check for mktime.
5213 Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)
5215         * configure.in: Add AC_HEADER_STAT.
5216         * lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.
5218         * find/pred.c: Move the inclusion of defs.h ahead of the first
5219           test of _POSIX_VERSION.
5221         * lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.
5223 Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5225         * configure.in: Add AC_CONFIG_HEADER.
5226         * find/*.c locate/*.c xargs/*.c: Include config.h.
5227         * locate/updatedb.sh: Add --version; --old -> --old-format.
5229 Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5231         * find/* [__STDC__]: Prototype declarations.
5233         * locate/updatedb.sh: Account for renaming code and frcode.
5235         * find/find.c (process_path): Store dev and ino of directories in
5236           current branch to avoid symlink loops.  From DJ Delorie
5237           <dj@ctron.com>.
5238           (process_dir): If following symlinks, don't cd to ..; instead,
5239           cd to the starting directory and then to the parent directory.
5240           (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
5241           (process_top_path) [HAVE_FCHDIR]: Use it.
5242         * find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
5243         * defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
5244         * configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.
5246 Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5248         * lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
5249         From Andreas Luik <luik@isa.de>.
5251 Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5253         * locate/locate.c (last_literal_end): Dynamically allocate enough
5254           memory for the subpattern.
5256 Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5258         * locate/locate.c (locate): Warn if database is >8 days old.
5259         From Ian Lance Taylor.
5261         * xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
5262           default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5263         * find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
5264           calls before error.  error does it, and doesn't trash errno.
5265           From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5267         * find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
5268           number on HPUX.  From Andreas Luik <luik@isa.de>.
5269           (filesystem_type_uncached): Don't cache unknown file system
5270           types.  From casper@fwi.uva.nl (Casper Dik).
5272         * locate/updatedb.sh: Collect results in temp file and rename it
5273           atomically.  From Andreas Luik <luik@isa.de>.
5275         * xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
5276           Meyering.
5278         * find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
5279           Emulate strchr and strrchr with index and rindex, not vice versa.
5281         Remove man directory; move man pages to the directories of the
5282         programs they document.
5284         * locate/frcode.c: Renamed from code.c.
5285         * locate/frcode.c (put_short): Renamed from puthalfword.
5286         * locate/locate.c (get_short): Renamed from gethalfword.
5287         (last_literal_end): Renamed from patprep.
5288         (locate): Recognize old-format databases too.
5289         * locate/locatedb.h: Add defines for old-format databases.
5290         * locate/bigram.c locate/code.c: Put back programs to create
5291         old-format databases.
5292         * locate/updatedb.sh: Take --old option to use them.
5294 Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5296         * configure.in: Update for Autoconf v2.
5297         * find/pred.c lib/savedir.c: Use new symbols for dir header.
5298         * locate/updatedb.sh: Add --help option.
5300 Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)
5302         * man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.
5304 Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5306         * bigram.c: File removed.
5307         * getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
5308         * updatedb.sh: Take command line options.
5309         Don't do bigram compression.
5310         * code.c, locate.c: Don't do bigram compression.
5311         Write and read counts in network byte order.
5312         Handle arbitrarily long paths.
5313         Use a magic number at the start of the databases.
5315 Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
5317         * Makefile.in (config.status): Run config.status --recheck, not
5318         configure, to get the right args passed.
5320 Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5322         * listfile.c (list_file): Print inode as a long.
5324 Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5326         * fstype.c [STDC_HEADERS]: Include stdlib.h.
5328         * Move unistd.h include from parser.c and pred.c to defs.h.
5330 Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5332         * updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
5333         Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.
5335 Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5337         * pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.
5339 Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
5341         * fstype.c (in_afs) [AFS]: New function, derived from code by
5342         Sanjay Ramamurthy <ramams@rpi.edu>.
5343         (filesystem_type_uncached) [AFS]: Call it if the fs type is
5344         otherwise unknown.
5346         * parser.c (parse_size): Recognize b and w suffixes for dd
5347         compatibility. 
5349         * code.c (puthalfword): New function.
5350         (main): Call it.
5351         * locate.c (gethalfword): New function.
5352         (locate): Call it.
5353         From ifado!wb@germany.eu.net (Wilhelm B. Kloke).
5355         * listfile.c: Include pathmax.h.
5356         (get_link_name): Always allocate PATH_MAX + 1 bytes for
5357         readlink buffers.
5358         * pred.c (pred_fprintf, insert_lname): Call get_link_name.
5360         * fstype.c (filesystem_type, filesystem_type_uncached),
5361         listfile.c (list_file): Take an arg for the path to access.
5362         * pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.
5364         * find.c (process_dir): Renamed from scan_directory.
5366         Changes from jrs@world.std.com (Rick Sladkey) to chdir into
5367         subdirectories instead of using string concatenation, for speed:
5368         * find.c (process_top_path): New function.
5369         (main): Call it, and xgetcwd.
5370         (process_path, scan_directory): Take new arg, the pathname
5371         relative to ".".  Use it and pass it on.
5372         * pred.c (pred_and, pred_comma, pred_negate, pred_or,
5373         pred_xtype, pred_fprintf, pred_empty, insert_lname):
5374         access rel_pathname instead of pathname.
5375         (launch): chdir to starting_dir.
5376         * defs.h: Declare rel_pathname and starting_dir.
5377         * find.c: Define them.
5379         * xgetcwd.c: New file.
5381         * updatedb.sh: Recognize -fstype NFS as well as nfs.
5382         * locate.c (patprep): Skip trailing character classes correctly.
5383         From luik@pharao.stgt.sub.org (Andreas Luik).
5385         * parser.c (parse_group): Make gid a gid_t, not short or int.
5386         (parse_nogroup): Cast gid to unsigned when using it as an array index.
5387         (parse_user, parse_nouser): Similar changes for uid.
5388         * defs.h: Use uid_t and gid_t.
5390         * parser.c (parse_help): New function.
5391         (parse_table):  Add --version, -help, and --help options.
5392         Rename struct parser_table_t to struct parser_table.
5393         (parse_version): Exit after printing message, on
5394         stdout not stderr.
5396         * xargs.c, locate.c (main, usage): Add --version and --help
5397         options.
5399 Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)
5401         * parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
5402         * xargs.c: Ditto.
5404 Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5406         * pred.c (pred_fprintf): If curdepth is 0, don't nuke
5407         segment->text; nuke cp.
5409 Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5411         * Version 3.8.
5413 Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)
5415         * pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
5416         (pred_table): Add them.
5417         (insert_lname): New function.
5418         (pred_lname): Call it.
5419         * parser.c (parse_ilname, parse_iname, parse_ipath,
5420         parse_iregex): New functions.
5421         (parse_table): Add them.
5422         (insert_regex): New function.
5423         (parse_regex): Call it.
5425         * fstype.c (filesystem_type): Cache previous result.
5426         (filesystem_type_uncached): New function.
5427         pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.
5429         * parser.c: Don't define const.
5431         * fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
5432         MOUNT_PC for 386bsd.
5434 Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5436         * parser.c (parse_regex): If ignore_case, set up a translate
5437         table for the regex.
5439         * defs.h: Include string.h or strings.h.
5440         * find.c fstype.c parser.c pred.c util.c: Don't.
5442         * nextelem.c [index]: Don't redefine.
5444 Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5446         * xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
5447         status, not the wait status value.  From
5448         Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.
5450         * parser.c (make_segment, insert_fprintf), pred.c
5451         (pred_fprintf): Add '%F' to print filesystem type.
5453         * parser.c (parse_fprintf): Check if second arg is missing.
5455 Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5457         * pred.c (pred_fprintf): For %P, don't move past an assumed
5458         slash if the ARGV element ends with one, because in that case
5459         we didn't add one.
5461         * parser.c (parse_printf): Check for missing arg.
5462         From smj@cats.com (Steve James).
5464         * parser.c: Add #ifdef around atol decl for Linux.
5466 Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)
5468         * defs.h: Remove dcl of process_path.
5469         * find.c: Put dcl of p
5471         * pred.c (pred_fprintf): Don't print "\n" unless it's in the
5472         format string.
5474 Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5476         * defs.h, parser.c, pred.c: Rename some types that conflict
5477         with reserved POSIX.1 namespace (ended in _t).
5479         
5480         
5481 Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5483         * xargs.c: Don't determine memory.h based on POSIX, which
5484         doesn't mention it.
5486 Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
5488         * parser.c (parse_perm): Parse new `-perm +mode' notation.
5489         * pred.c (pred_perm): Interpret same.
5491 Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
5493         * xargs.c [POSIX]: Always use sysconf to get ARG_MAX.
5495 Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)
5497         * bigram.c, code.c (main): Make path_max int, not unsigned.
5498         * locate.c (main): Check for pathconf failure.
5500 Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
5502         * parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
5503         interpretation.
5504         * pred.c (pred_fprintf): fixed off-by-one indexing problem
5505         when handling [gGuU] printf formats.
5507 Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5509         * Version 3.2.
5511 Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
5513         * bigram.c, code.c: Fix handling of PATH_MAX.
5514         Check for anomalous input line lengths.
5515         From Bruce Evans.
5517 Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)
5519         * pred.c (pred_fprintf): Round block number up to get K.
5521 Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)
5523         * pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
5524         byte for link object since st_size is wrong.
5526         * listfile.c (list_file): Don't convert blocks to kilobytes if
5527         env. var POSIX_ME_HARDER is defined.
5529         * fstype.c [FS_AIX_STATFS]: New case.
5531         * configure: Make sure the sys/mount.h is the 4.4BSD version
5532         with grep instead of just testing whether it exists.
5534         * listfile.c (list_file): Add 1 to number of 512-byte blocks
5535         before dividing to get 1K blocks (so we round up, not down).
5537 Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5539         * Version 3.1.
5541         * parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
5542         conversion to print 1K blocks.
5544         * listfile.c: Print counts of 1K blocks, for consistency with
5545         new fileutils release.  Bad timing, there.
5547         * Version 3.0.
5549         * pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
5550         which returns void on some systems, like Sequents.
5551         * configure: Check sys/dir.h for 'void closedir'.
5553 Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)
5555         * modetype.h: Define POSIX.1 stat stuff if missing.
5556         * pred.c, parser.c, find.c, fstype.c: Don't define it.
5557         * updatedb.sh: Use a variable substitution method like configure's.
5558         * Makefile.in: Add datadir variable to separate programs from
5559         data file.
5561         * parser.c, pred.c: Rename -fulldays to -daystart.
5563         * defs.h, find.c, parser.c, pred.c: Add many new predicates
5564         from Jay Plett (jay@princeton.edu).
5566 Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)
5568         * parser.c (parse_size), pred.c (pred_size), defs.h (struct
5569         size_t): Allow `k' to follow number to measure size in Kbytes.
5570         * parser.c (parse_size, get_num, insert_num), defs.h (struct
5571         size_t): Use enum comparison_type instead of short.
5573 Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5575         * xargs.c (read_line): Use isblank, to support POSIX locales.
5577         * fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
5578         (Paul Slootman).
5579         * configure: Figure out when to use it.
5581         * configure: Check for st_blocks in struct stat.
5582         * listfile.c (ST_NBLOCKS): New macro.
5583         (list_file): Print file's block count.
5584         Use S_ISLNK instead of S_IFLNK.
5585         * fileblocks.c: New file, from fileutils.
5587 Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5589         * parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
5590         gid lookups into table lookups.
5592 Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)
5594         * configure, Makefile.in's: Support +srcdir option via VPATH.
5595         Clean up clean targets.
5597 Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)
5599         * configure: Filter /etc and /usr/etc from path.
5601         * xargs.c (wait_for_proc): Fix handling of child exit status.
5602         (main): Exit with a nonzero status if any child did.
5604         * pred.c (launch): Flush stdout and stderr before forking.
5606         * fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
5607         type "ignore".
5609 Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)
5611         * pred.c, locate.c: Use fnmatch instead of glob_match.
5612         * fnmatch.c, fnmatch.h: New files.
5614         * Many files: Use string.h if STDC_HEADERS, as well as if USG.
5616         * locate.c, code.c, bigram.c: Possibly use pathconf to get
5617         PATH_MAX.  Use malloc to allocate path arrays.
5619         * xargs.c: Possibly use sysconf to get ARG_MAX.
5620         (env_size): Make definition unconditional.
5621         (main): Do arg_max adjustment that can't be done with
5622         preprocessor now that ARG_MAX might be a function call.
5623         (do_exec): Exit with status 126 or 127 after failed exec, for
5624         POSIX.2 draft 11.1.
5626         * xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
5627         * wait.h: Use POSIX, not WAIT_MACROS_MISSING.
5629         * COPYING: Use version 2.  Update all files.
5631         * Replace Makefile and lib/Makefile with Makefile.in,
5632         lib/Makefile.in and configure.  Update README.
5634 Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)
5636         * Version 2.2.
5638 Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
5640         * xargs.c (main): Always run the command if some args are left over.
5641         Rename some variables.
5643 Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
5645         * bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
5646         _POSIX_SOURCE, to decide whether to include limits.h.
5648         * parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
5649         to decide whether to declare getpwuid and getgrgid.
5651         * xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
5652         to include memory.h.
5654 Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
5656         * defs.h, find.c, parser.c, pred.c: Remove -permmask option.
5658 Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
5660         * wait.h: Include sys/types.h to get pid_t.
5662         * xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
5663         _POSIX_SOURCE.
5665 Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
5667         * Version 2.1.
5669 Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)
5671         * locate.c, bigram.c, code.c: Attempt to get max. path length
5672         on more kinds of systems, incl. POSIX.
5674         * pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
5675         if available. 
5677         * find.c, defs.h: Make `cur_day_start' a time_t, not long.
5679 Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)
5681         * defs.h, parser.c: Remove unused field from `struct exec_t'.
5683         * xargs.c: Add +no-run-if-empty option to cause the command to
5684         not be run if the input is empty.
5686         * defs.h (struct exec_t): Change the array of offsets into an
5687         array of `struct path_arg'.
5688         * parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
5689         to be substituted (multiple times) anywhere in an arg to -exec
5690         or -ok.
5691         * pred.c (pred_exec): Add code to substitute "{}" within args.
5692         (pred_ok): After prompting, just run pred_exec.
5694 Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)
5696         * fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
5697         "0x" at front of "dev=" mount option, which amd puts there but
5698         Sun automounter doesn't.
5700 Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)
5702         * find.c (main), util.c (usage): Make directory args optional,
5703         defaulting to ".".
5705 Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)
5707         * listfile.c: Define major and minor if not defined (as in POSIX).
5709 Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)
5711         * find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
5712         writing to stderr, in case they have been redirected to the
5713         same file descriptor.
5715         * pred.c (launch): Use POSIX wait macros from wait.h.
5717         * xargs.c (print_xargs): Read from tty_stream, not stdin.
5719 Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)
5721         * Version 2.0.
5723         * fstype.c [FS_USG_STATFS]: New code.
5724         [FS_STATFS]: For symlinks, statfs the directory the link is in
5725         instead of the link.
5726         * Various files: Conditionalize some declarations on
5727         STDC_HEADERS or _POSIX_SOURCE.
5729 Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)
5731         * modetype.h: New file.
5732         parser.c, pred.c: Use it.
5734 Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)
5736         * xmalloc.c: New file from fileutils.
5738         * fstype.c (fstype_to_string): Add case for MFS.
5739         (filesystem_type): Take a pathname as a second arg.
5740         [FS_STATFS] return "unknown" instead of exiting if statfs
5741         fails because of ENOENT.
5742         * pred.c (pred_fstype): Pass the pathname.  Set current_dev.
5743         * find.c (process_path): Make root_dev local again.
5745 Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)
5747         * pred.c (pred_fstype): Free old fs type.
5749         * fstype.c, pred.c (pred_fstype), parser.c (parse_fstype): 
5750         Reread the file system type info. every time a filesystem
5751         mount point is crossed, to allow for automounting.
5753         * xstrdup.c: New file from fileutils.
5755         * find.c (process_path): Rename root_dev to current_dev and
5756         make it global, for -fstype.
5758         * wait.h: New file taken from xargs.c.
5760         * xargs.c: Make limits.h vs. sys/param.h conditional on
5761         LIMITS_MISSING instead of USG, to accomodate SVR2.
5763 Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)
5765         * parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
5766         getpwuid and getgrgid.  Use them.
5768         * listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
5769         S_ISBLK.  Use them. 
5771         * find.c: Use S_ISDIR instead of S_IFDIR, and define if not
5772         _POSIX_SOURCE. 
5774         * Makefile: Define AR and RANLIB and pass to child makes.
5775         lib/Makefile: Use them.
5777         * xargs.c (WIFSIGNALED): Redefine so it works.
5779 Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)
5781         * find.c (process_path): For -xdev, process filesystem
5782         mountpoints (but don't descend them), instead of skipping them
5783         entirely. 
5785         * find.c, parser.c, defs.h: Add -follow predicate.
5787         * xargs.c: Change ifdefs to support STDC POSIX systems.
5789 Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)
5791         * xargs.c (do_exec): Child process exits with status 255, not
5792         127, if command can't be run.
5794 Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)
5796         * xargs.c: Exit with status 127 if running commmand fails, as
5797         required by POSIX.
5799         * fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
5800         Sun/BSD code is now -DFS_MNTENT.
5802 Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)
5804         * Reorganize into subdirectories and add xargs.  Rewrite Makefiles.
5806         * find.c (process_path, main): Allow a maxdepth of 0, meaning
5807         only process command line args.
5809         * parser.c, pred.c: Add -print0 predicate.
5811         * xargs.c: Add -0 option and long options.  Move standard
5812         library functions into separate files.  Use error instead of
5813         fatal and fprintf/perror.  Use POSIX macros for examining exit
5814         status from wait.
5815         (read_string): New function.
5817 Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)
5819         * find.c (process_path): Take DEPTH as an arg instead of ROOT,
5820         and change callers.
5822 Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)
5824         * parser.c (parse_maxdepth): New function.
5825         * find.c (process_path): If -maxdepth was given, don't go
5826         more than that many levels deep.
5827         * defs.h: Declare maxdepth.
5829 Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)
5831         * parser.c: Add -not as synonym for !.
5833 Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
5835         * Makefile (TAGS): New target.
5837 Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5839         * xargs.c (main): Tell getopt to not permute.
5841 Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
5843         * parser.c (parse_perm), pred.c (pred_perm): Always compare
5844         bits 07777.
5846         * locate.c, Makefile: Rename 'fastfind' program to 'locate',
5847         following comment in POSIX.2 draft 10 rationale for find.
5849 Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5851         * listfile.c (getuser, getgroup): Make uid and gid unsigned
5852         short, not int.
5854 Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5856         * defs.h: Don't declare fprintf and printf, in case they have
5857         prototypes in stdio.h (important for functions that use stdarg).
5859 Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5861         * parser.c (parse_and): New function, for compatibility.
5863 Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)
5865         * find.c (main): Only enclose expressions that produce no side
5866         effects within `( ... )'.
5868 Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)
5870         * parser.c (strspn): Stop when end of string reached.
5872         * Version 1.2.
5874         * Move version number from Makefile to new file version.c.
5875         * parser.c: Recognize new -version predicate.
5877         * find.c (main): If no predicates that produce output are
5878         given, default to -print if the entire expression is true, not
5879         just the last part of an alternation.
5880         * Print the names of predicates with invalid arguments.
5882 Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)
5884         * pred.c: Don't check for invalid comparison types in numeric
5885         predicate functions.
5887 Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)
5889         * parser.c (parse_regex): Set fastmap and translate before
5890         compiling regex.
5892 Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5894         * fastfind.c (fastfind): Initialize count to 0.
5896         * lib/updatedb.sh: Only do regex comparison on directories,
5897         for speed.
5899         * listfile.c (list_file): Truncate user and group name to 8 chars.
5901 Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5903         * Version 1.1.
5905         * Makefile [DISTFILES]: Add COPYING.
5907 Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5909         * Version 1.0.
5911 Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5913         * lib/updatedb.sh: Prune entries that match PRUNEREGEX.
5914         Split up finding files from computing bigrams.
5915         Use redirection instead of nonportable grep -s to detect sort
5916         failure.  Optionally search network filesystems as well as
5917         local ones.
5919         * pred.c (pred_regex): Match against full pathname instead of
5920         just last element.
5921         * util.c (basename): Return "/", not "", if given "/".
5923         * find.c (process_path): Fix error in handling "/" directory.
5925 Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)
5927         * parser.c [STRSPN_MISSING] (strspn): New function.
5929 Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)
5931         * listfile.c: New file.
5932         * parser.c (parse_ls): New function.
5933         * pred.c (pred_ls): New function.
5935         * find.c (main): Remove interface to fastfind, to prevent
5936         conflict with POSIX syntax.
5937         * util.c (usage): Remove fastfind syntax from message.
5938         * fastfind.c (main): New function.
5939         * Makefile: Make fastfind a separate program.
5941         * find.c (main): Print correct message if a predicate arg is
5942         missing. 
5944         * parser.c (insert_exec_ok): Make args that start with a ';' but
5945         contain other characters not terminate the command.
5947 Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5949         * fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
5950         instead.  True for HP/UX, at least.
5952 Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5954         * savedir.c: New file; now find won't run out of file
5955         descriptors in deep trees.
5956         * find.c (process_path): Use savedir.
5958 Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5960         * parser.c (parse_permmask): Allow symbolic mode masks.
5961         (parse_perm): Free 'struct change' when done with it.
5962         (get_oct): Function removed.
5964         * find.c (process_path): Allow arbitrarily-long filenames.
5965         More efficient string copying.  Initialize perm_mask to 07777
5966         instead of -1.
5968 Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5970         * Makefile, find.c: Use DIRENT to control whether <dirent.h>
5971         is used.
5973 Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5975         * parser.c (parse_regex): New function.
5976         * pred.c (pred_regex): New function.
5978         * fstype.c (read_mtab): If mtab entry has a "dev=" option
5979         (like in SunOS 4.1), use it, so there is no need to stat the
5980         special file later on.
5981         (xatoi, strstr): New functions.
5983 Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)
5985         * lib/updatedb.sh: Put BINDIR in PATH.
5987         * fstype.c: Do nothing if MNTENT_MISSING is defined.
5989         * fstype.c: New file.
5990         * parser.c (parse_fstype): New function.
5991         * pred.c (pred_fstype): New function.
5993         * parser.c (parse_newer): Failure to stat -newer file is a
5994         fatal error.
5996         * pred.c (pred_ok): Flush output before reading.  Use getchar
5997         instead of scanf.
5999         * pred.c (pred_prune): Return false if -depth given.
6000         * find.c: Apply the predicates to the dir when -depth and
6001         -prune are given.
6003 Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6005         * pred.c (pred_prune): Set new global var `stop_at_current_level'.
6006         * find.c (process_path): Test and reset it.
6008 Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)
6010         * modechange.c, modechange.h: New files.
6011         * parser.c (parse_perm): Use mode_compile and mode_adjust to
6012         parse arg, to allow symbolic mode for POSIX.
6014 Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)
6016         * parser.c (get_oct): Don't consider an empty string a valid number.
6018         * parser.c (parse_perm): If arg starts with '-', set flag bit
6019         for special comparison (POSIX).
6020         * pred.c (pred_perm): If flag bit set, compare s[ug]id &
6021         sticky bits as well, and return true if the given perms are
6022         set, ignoring other bits.
6024         * find.c: New global var `exit_status'.  Use it.  (POSIX)
6025         * parser.c: Set `exit_status' if lstat on -newer file fails.
6027         * fastfind.c: New file.
6028         * find.c (main): Call fastfind if given only 1 arg.
6029         * util.c (usage): Update message. 
6030         * lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
6031         * Makefile: Add 'all' and 'install' targets.
6033 Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)
6035         * parser.c (parse_nogroup, parse_nouser): Implement.
6036         * pred.c (pred_nogroup, pred_nouser): Implement.
6038 Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)
6040         * find.c: Add variable `stay_on_filesystem' for -xdev.
6041         (process_path): Take an arg determining whether this call is
6042         the root of a tree.  Use lstat instead of stat.  If
6043         stay_on_filesystem, don't process a dir on a different
6044         filesystem. 
6046         * parser.c (parse_newer): Use lstat instead of stat.  Is this right?
6047         (parse_xdev): Set stay_on_filesystem.
6049         * parser.c: Add dummy parse_nogroup, parse_nouser,
6050         parse_prune, and parse_xdev; to be written later.
6051         * pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.
6053         * find.c: Support System V directory library/headers.
6055         * find.c (process_path): Don't continue with a file that stat
6056         fails on.
6058         * defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
6059         'unsigned long' and 'unsigned short'.
6060         * find.c, defs.h: Remove 'convert_glob' variable.
6061         * parser.c (parse_fullregex): Function removed.
6062         (parse_name): Remove regular expression code.
6063         (parse_type): Recognize sockets.
6064         Add code to check for missing arguments to many parse_* functions.
6065         * pred.c (pred_name): Use glob_match instead of regex.
6067 Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6069         * Replace fprintf, simple_error, and mem_error with error and
6070         usage. 
6072         * Fix string header includes for USG.
6074 Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6076         * defs.h: Change some #defines to enums.
6078 Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6080         * find.c (main): Don't take basename of argv[0].
6082         * util.c (xmalloc): New function.
6083         * find.c, parser.c, utils.c: Use xmalloc instead of malloc.
6085         * pred.c: Remove emulation of regex for BSD and use GNU
6086         library version in regcmp.c instead.
6087         * parser.c: Remove emulation of regcmp for BSD and use GNU
6088         library version in regcmp.c instead.
6089         * Makefile: Link with regex.o and regcmp.o.
6090         Add a DISTFILES macro and dist target.
6092         * Indent source code.  Move RCS logs to this file.
6094 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
6096         * xargs.c: Indent.  Comment and rename some global variables.
6097         (main): Use getopt to parse options.  Open new global var
6098         `tty_stream' to /dev/tty if querying requested.
6099         (print_args): Read response from tty_stream, not stdin.
6100         (xmalloc): New function.
6101         Global: Use xmalloc instead of malloc.
6102         (usage): Revise message.
6104 87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)
6106         * pred.c: added guts to pred_size
6108 87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)
6110         * pred.c: added guts to perm and permmask.
6112 87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)
6114         * pred.c: made pred_name only look at the last component of
6115         the path.
6117 87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)
6119         * pred.c: added guts to name.  useds regex and regcmp to do
6120         regular expression handling.
6122 87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)
6124         * pred.c: added predicate newer
6126 87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)
6128         * pred.c: added guts to pred_ok
6130 87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)
6132         * pred.c: finished exec.
6134 87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)
6136         * parser.c: added guts to parse_size
6138 87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)
6140         * parser.c: added guts of perm and permmask.  added getoct
6141         routine for perm and permmask
6143 87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)
6145         * parser.c: added -fre, -fullregex predicate to turn off
6146         globbing conversion
6148 87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)
6150         * parser.c: reworked name so the regexpr pattern includes $ at
6151         the end to force globbing to work correctly.  End of the
6152         pattern refers to the end of the filename.
6154 87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)
6156         * parser.c: added guts to name.  uses a conversion from
6157         globbing to regexp format.  uses regex and regcmp to actually
6158         to the comparison.
6160 87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)
6162         * parser.c: added predicate newer
6164 87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)
6166         * parser.c: added ok guts.  consolidated exec and ok to using
6167         insert_exec_ok
6169 87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)
6171         * parser.c: minor bug in -fulldays predicate parser.  It
6172         should have set the flag full_days to true.
6174 87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)
6176         * find.c: changed where we are setting perm_mask to -1.  need
6177         to make sure that this happens before every apply_predicate.
6179 87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)
6181         * find.c: added error checking for no paths.  better error
6182         message if illegal ordering.
6184 87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)
6186         * find.c: added global convert_glob
6188 87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)
6190         * defs.h: added definition of BLKSIZE for size
6192 87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)
6194         * defs.h: added global convert_glob for name