aa73446cfc78db736c5a72ec4428207e168a4894
[debian/tar] / ChangeLog
1 2004-02-29  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
2
3         * src/buffer.c (flush_read): Bugfix: the
4         condition at line 714 included
5
6               || (status > 0 && !read_full_records_option)
7
8         which is grossly wrong, since even if new_volume() below succeeds,
9         the subsequent call to rmtread will overwrite the chunk of data
10         already read in the buffer and thus spoil everything.
11         * src/system.c (sys_child_open_for_uncompress): Minor stylistic
12         fix.
13         * tests/star/multi-fail.sh: New test.
14         * tests/Makefile.am: Added multi-fail.sh
15         * tests/star/README: Updated
16         
17 2004-02-29  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18
19         * NEWS: Updated
20         * configure.ac: Removed spurious AC_CHECK_LIB(iconv)
21         * src/common.h (utc_option): new global
22         (enum old_files.KEEP_NEWER_FILES): New element
23         * src/extract.c: Handle --keep-newer-files option
24         * src/list.c (tartime): Print UTC if --utc was given.
25         * src/tar.c: New options: --utc and keep-newer-files
26         
27         * tests/Makefile.am: Added new tests
28         * tests/after: Rewritten
29         * tests/before: Rewritten
30         * tests/preset.in: Rewritten
31         * tests/delete03.sh: Accomodate for the new testsuite logic
32         * tests/gzip.sh: Likewise
33         * tests/incremen.sh: Likewise
34         * tests/listed01.sh: Likewise
35         * tests/multiv01.sh: Likewise
36         * tests/old.sh: Likewise
37         * tests/options.sh: Likewise
38         * tests/version.sh: Likewise
39         * tests/volume.sh: Likewise
40         
41         * tests/star: New directory
42         * tests/star/README: New file
43         * tests/star/gtarfail.sh: New file
44         * tests/star/gtarfail2.sh: New file
45         * tests/star/pax-big-10g.sh: New file
46         * tests/star/qucktest.sh: New file
47         * tests/star/ustar-big-2g.sh: New file
48         * tests/star/ustar-big-8g.sh: New file
49
50 2004-02-26  Paul Eggert  <eggert@twinsun.com>
51
52         * doc/tar.texi (dircategory Individual utilities): Append period,
53         as suggested by Karl Berry.
54
55 2004-02-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
56
57         * src/list.c (decode_header): Call xheader_decode before
58         the assignment to current_stat_info.archive_file_size.
59
60 2004-02-23  Paul Eggert  <eggert@twinsun.com>
61
62         * configure.ac: Invoke AM_ICONV, to define ICONV_CONST if needed.
63
64 2004-02-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
65
66         1.13.93 released.
67
68         * NEWS: Updated
69         * tests/before: Move testing of the prerequisite archive formats
70         to the separate function 'prereq'. Do not expect any arguments
71         * tests/delete03.sh: Use prereq() instead of passing arguments
72         to 'before'.
73         * tests/incremen.sh: Likewise.
74         * tests/listed01.sh: Likewise.
75         * tests/multiv01.sh: Likewise.
76
77 2004-02-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
78
79         Added UTF-8 support. Finished global extended header
80         support.
81         
82         * NEWS: Minor fix
83         * configure.ac: Detect libiconv
84         * src/utf8.c: New file. Conversions to and from utf-8.
85         * src/Makefile.am: Added utf8.c
86         * src/create.c (write_header_name) In pax format, use
87         "path" keyword if the file name is not ASCII
88         (start_header): Likewise for uname and gname.
89         * src/list.c: Decode encountered global headers.
90         * src/xheader.c: Use keywords from the global
91         headers.
92         Correctly handle UTF-8 conversions.
93         (xheader_list_destroy): New function.
94         (xheader_set_single_keyword,xheader_set_keyword_equal): Added
95         missing gettext markers
96         (decode_record): Rewritten using caller-provided handler and
97         data closure.
98         * tests/listed01.sh: Give credit to Andreas Schuldei.   
99
100 2004-02-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
101
102         * src/create.c (dump_file0): The conditional at line
103         1296 prevented incremental backups on individual files
104         from working, as reported by Andreas Schuldei
105         <andreas@schuldei.org>.
106
107         This is due to the condition
108      
109           (0 < top_level || !incremental_option) 
110
111         Removing it makes incremental backups work for individual
112         files as well as for directories. On the other hand, it does
113         not affect other functionality, as shown by the reasoning below:
114
115         To begin with, the two parts of this condition are mutually
116         superfluous, because
117
118           1) when top_level < 0, incremental_option == 1
119           so the condition yields false
120           2) when top_level >= 0, incremental_option == 0
121           so the condition yields true.
122
123         In other words, it is completely equivalent to
124
125               (!incremental_option)
126
127         Now, let's consider the effect of its removal. There are two cases:
128
129         1) when incremental_option==1
130         This means incremental backup in progress. In this case dump_file
131         is invoked only for directories or for files marked with 'Y' by
132         get_directory_contents. The latter are those that did not meet the
133         condition in incremen.c:242, which is exactly the same condition
134         as this at create.c:1296. So, for these files the check
135         (!incremental_option) is useless, since the rest of the
136         conditional will yield false anyway. On the other hand, if
137         dump_file is invoked on a directory, the conditional will yield
138         false due to !S_ISDIR assertion, so these will be processed as usual.
139
140         Thus, for this case the extra condition (!incremental_option) is
141         irrelevant, and its removal won't alter the behavior of tar,
142         *except* that it will enable incremental backups on individual
143         files, which is the wanted effect.
144      
145         2) when incremental_option==0
146         In this case the condition yields true and its removal does not
147         affect the functionality.
148
149         * THANKS: Updated
150         * configure.ac: Raised patchlevel to 93
151         * src/incremen.c: Minor stylistic fixes.
152         * tests/listed01.sh: New test. Check listed incremental
153         backups on individual files.
154         * tests/Makefile.am: Added listed01.sh
155         
156 2004-02-20  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
157
158         * src/common.h (simple_finish_header,start_private_header): New
159         declarations
160         (xheader_ghdr_name): Changed declaration
161         * src/create.c (start_private_header): Removed static qualifier.
162         (write_extended): Removed superfluous last argument. Use
163         xheader_write()
164         (simple_finish_header): New function.
165         (finish_header): Use simple_finish_header() to break recursive
166         dependency between this function and write_extended().
167         * src/tar.c (assert_format): Do not bail out if several
168         --format arguments are given. This is a common case when
169         TAR_OPTIONS are used.
170         (decode_options): New option --show-defaults displays the
171         compiled-in defaults.
172         Use POSIX format if no --format option was given and
173         --pax-option was specified.
174         Do not allow to use --pax-option unless the archive format is
175         set to POSIX (or reading subcommand is requested).
176
177         * src/update.c (update_archive): Write global extended header if
178         constructed.
179         * src/xheader.c (xheader_format_name): Bugfix. 
180         (xheader_xhdr_name): Changed the default extended header name
181         to '%d/PaxHeaders.%p/%f', as POSIX requires.
182         (xheader_ghdr_name): Removed unused argument.
183         (xheader_write,xheader_write_global): New function.
184         (xheader_decode): Modified to honor overrides whatever
185         the current archive format is.
186
187         * src/delete.c (delete_archive_members): Call xheader_decode
188         unconditionally.
189         * src/list.c (decode_header): Likewise.
190         * src/incremen.c (sort_obstack): Fixed typo in the comment
191         
192         * doc/tar.texi: Document new default for extended
193         header names.
194         
195         * tests/before: Accept an optional list of allowed archive
196         formats. Exit with the status 77 if the current archive
197         format does not match any of them.
198         * tests/delete03.sh: Require gnu, oldgnu or posix format
199         * tests/incremen.sh: Require gnu or oldgnu format
200         * tests/multiv01.sh: Likewise
201         
202 2004-02-20  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
203         
204         * doc/tar.texi (Option Summary): Documented --pax-option
205         * src/tar.c: Likewise.
206         * NEWS: Likewise.
207         * src/create.c (to_chars): Added a comment.
208         * src/tar.h: Comment to GNU_FORMAT
209         
210 2004-02-18  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
211
212         * README: Updated
213         * configure.ac: Added stpcpy
214         * bootstrap: Likewise
215         * lib/Makefile.am: Likewise
216         * src/common.h (xheader_xhdr_name,xheader_ghdr_name): New
217         functions
218         * src/create.c (write_extended): Call xheader_xhdr_name
219         instead of using hardcoded "././@PaxHeader" name.
220         * src/tar.c: New option --pax-option (equivalent to -o option
221         of pax).
222         * src/xheader.c: Implement pax -o option. Fixed misleading
223         heading comment (introduced 2003-09-02). 
224         * src/incremen.c: Minor fixes
225         * m4/.cvsignore: Updated
226         
227 2004-02-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
228
229         * src/incremen.c: Removed accumulator stuff in favor of obstack.
230         (get_directory_contents): Split into two functions
231         * src/update.c: Minor changes
232         * doc/tar.texi: Fixed typo
233         
234 2004-02-15  Paul Eggert  <eggert@twinsun.com>
235
236         Fix Debian bug 230872, originally reported by Jeff King in
237         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230872>.
238
239         * doc/tar.texi (posix compliance): Remove.  The whole section
240         was a misunderstanding of what POSIXLY_CORRECT is supposed to
241         mean.  The GNU Coding Standards says that POSIXLY_CORRECT
242         is for disabling extensions that are incompatible with POSIX:
243         it is not for disabling compatible extensions.  All references
244         to this section removed.
245         (posix): This format is created only if the posix format is
246         specified; it is no longer created if gnu format is specified
247         and POSIXLY_CORRECT is set.
248         * src/tar.c (decode_options): Ignore POSIXLY_CORRECT.
249         POSIX does not specify the behavior of tar, so we should
250         not worry about POSIXLY_CORRECT here.
251
252 2004-01-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
253
254         * Makefile.am: Removed m4
255         * configure.ac: Require automake-1.8/autoconf-2.59. Removed
256         m4/Makefile.
257         * README-alpha: Updated
258         * bootstrap: Updated TP URL, improved help output. Default
259         to :ext:anoncvs and set CVS_RSH, unless already set.
260         * m4/Makefile.am: Removed
261
262 2004-01-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
263
264         * bootstrap: Bugfix by Marco Gerards <metgerards@student.han.nl>:
265         Use $option instead of $1 so all options will be parsed.
266
267 2004-01-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
268
269         Started rewriting buffer.c ...
270
271         * bootstrap: New option --no-po
272         * src/buffer.c (new_volume,check_label_pattern): Changed return type.
273         (time_to_start_writing): Changed data type
274         (file_to_switch_to): Removed. Variable never assigned to.
275         (open_archive) Moved option compatibility checks to tar.c
276         Other minor changes.
277         * src/common.h (maybe_backup_file): Changed return type
278         * src/misc.c: Likewise.
279         * src/create.c: Updated invocations of safer_name_suffix
280         * src/extract.c: Likewise
281         * src/delete.c: Updated assignment to write_archive_to_stdout
282         * src/tar.c (decode_options): More option compatibility checks
283         (moved from buffer.c)
284         * src/update.c (time_to_start_writing): Changed data type.
285         * tests/recurse.sh: New test case.
286         * tests/mksparse.c: New file.
287         * tests/Makefile.am: Added recurse.sh and mksparse.c
288
289 2004-01-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
290
291         * src/sparse.c (sparse_diff_file): Bugfix. Thanks
292         Martin Simmons for the patch.
293         * src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski
294         <pius@pld-linux.org> for the patch.
295
296 2003-12-26  Paul Eggert  <eggert@twinsun.com>
297
298         Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59,
299         and translation website.
300
301         * bootstrap: Don't bother skipping codeset.m4, glibc21.m4,
302         intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4,
303         isc-posix.m4, and lcmessage.m4 from gnulib.  This list of files is
304         a bit obsolete anyway, now that gettext 0.13.1 is out.  Also, the
305         files are replaced by autoreconf.  Also, there seems to be a bug
306         in gettext/autoconf/automake if we try to omit these files after
307         autoreconf has replaced them, even though the gettext manual says
308         they're optional.  So give up and just include them for now, even
309         though they make 'configure' longer and slower.
310
311         Change translation URL from
312         <http://www.iro.umontreal.ca/contrib/po/maint/tar/> to
313         <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
314         accommodate translator website revamp.
315
316         Fail if autoreconf fails.
317
318         * m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4,
319         signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to
320         ignore files now supplied by gettext 0.13.1.
321
322 2003-12-25  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
323
324         Synchronized with the backup repository on Mirddin
325
326 2003-12-19  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
327
328         * configure.ac: Check for varios members of struct stat
329         that may represent file modification times with a subsecond
330         precision.
331         Check for utimes (for future use)
332         * src/buffer.c (short_read): Issue a warning on short reads.
333         * src/common.h (sys_stat_nanoseconds): New function
334         * src/create.c (dump_file0): Use sys_stat_nanoseconds().
335         * src/list.c (read_and): Treat only two successive zero
336         filled blocks as an EOF indicator. Issue a warning if
337         a single one is encountered.
338         * src/system.c (sys_stat_nanoseconds): New function
339         * src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New
340         members.
341         * src/xheader.c (code_time,decode_time): Support for subsecond
342         precision.
343         (atime_coder,atime_decoder,ctime_coder,ctime_decoder)
344         (mtime_coder,mtime_decoder): Update invocations of code_time and
345         decode_time.
346         (gid_decoder,size_decoder,uid_decoder,sparse_size_decoder)
347         (sparse_numblocks_decoder,sparse_offset_decoder)
348         (sparse_numbytes_decoder): Updated
349
350 2003-12-18  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
351
352         * src/names.c (safer_name_suffix): Reverted change made
353         2003-11-14. Reason: Discussion with Paul Eggert and
354         Jean-Louis Martineau. See also ChangeLog entry from
355         1999-08-14.
356         * tests/delete03.sh: Likewise.
357         * tests/extrac04.sh: Likewise.
358         * tests/multiv01.sh: Likewise.
359
360 2003-12-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
361
362         * src/incremen.c (write_directory_file): Use sys_truncate
363         * src/list.c (print_header): Use archive_file_size member
364         when printing real file size.
365         * src/sparse.c (sparse_scan_file): Correctly handle files with
366         a hole at the end.
367         (sparse_dump_region,sparse_extract_region): Allow for zero size
368         trailing blocks
369
370 2003-12-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
371
372         * configure.ac: Raised version number to 1.13.92
373         * src/list.c (decode_header): Discern between pax and ustar
374         formats
375         Initialize current_stat_info.archive_file_size.
376
377         NOTE: Modifications from this date on are temporarily
378         stored on local CVS on mirddin. This repository will
379         be synchronized with Savannah as soon as the latter
380         becomes operational again.
381
382 2003-12-01  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
383
384         * TODO: Updated
385         * src/sparse.c: Initial implementation of GNU/pax sparse
386         file format.
387         * src/common.h (xheader_store): Changed prototype.
388         * src/create.c: Update calls to xheader_store
389         * src/extract.c (extract_archive): Check reported size vs.
390         archive file size to determine if we have to do with a
391         sparse file.
392         * src/tar.c (usage): Cleaned up the sample argument to --newer
393         option.
394         (decode_options): Allow --sparse for POSIX_FORMAT archives.
395         * src/xheader.c (struct xhdr_tab.coder; all coder function): Added
396         extra argument
397         Implemented GNU.sparse.* keywords.
398
399 2003-11-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
400
401         * configure.ac: Check for setlocale. Thanks Bruno Haible for
402         reporting.
403
404 2003-11-25  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
405
406         * src/create.c (write_gnu_long_link): Use oldgnu
407         magic with @LongLink blocks.
408
409 2003-11-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
410
411         * src/tar.h: Support for star sparse format.
412         * src/sparse.c: Likewise.
413
414 2003-11-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
415
416         * src/sparse.c (sparse_diff_file): New function
417         * src/common.h (sys_compare_uid,sys_compare_gid): New functions
418         (sys_compare_uid_gid): Removed.
419         (sys_compare_links,report_difference): Changed prototype
420         (sparse_diff_file): New function
421         * src/system.c (sys_compare_uid,sys_compare_gid): New functions
422         (sys_compare_uid_gid): Removed.
423         (sys_compare_links): Changed declaration
424         * src/compare.c (diff_archive): Use sparse_diff_file.
425
426 2003-11-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
427
428         Rewritten sparse file handling.
429
430         * src/sparse.c: New file. Provides a universal framework
431         for various methods for sparse files handling.
432         * src/Makefile.am: Added sparse.c
433         * src/common.h (struct sp_array,sparsearray,sp_array_size)
434         (init_sparsearray,fill_in_sparse_array): Removed
435         (enum dump_status): New data type
436         (pad_archive,close_diag,open_diag,read_diag_details)
437         (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
438         functions.
439         (sparse_file_p,sparse_dump_file,sparse_extract_file): New
440         functions.
441         (print_header): Changed prototype declaration.
442         * src/tar.h (struct sp_array): Declaration from common.h
443         (struct tar_stat_info): New members archive_file_size,
444         sparse_map_avail,sparse_map.
445         * src/create.c: Major rewrite.
446         * src/extract.c: Use new sparse file interface.
447         * src/compare.c (diff_sparse_files): Temporary placeholder.
448
449         * src/buffer.c: Minor changes
450         * src/tar.c: Likewise.
451         * src/list.c: Likewise.
452         * src/misc.c (close_diag,open_diag,read_diag_details)
453         (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
454         diagnostics functions.
455         * src/incremen.c: Use new diagnostics functions.
456         * src/names.c: Likewise.
457
458 2003-11-14  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
459
460         * configure.ac: Fixed check for setsockopt
461
462         * src/create.c: Do not zero-terminate name field if
463         the name is exactly 100 characters long.
464         (write_ustar_long_name): Fixed cheking for unsplittable
465         names.
466
467 2003-11-14  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
468
469         * src/create.c (start_header): Removed debugging hook
470         (dump_file): Fixed handling of linkname field.
471         * src/names.c (safer_name_suffix): If the input
472         file name ends with a slash, output one should do so
473         as well.
474         * doc/tar.texi: Documented --format=ustar
475
476 2003-11-14  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
477
478         * src/tar.h (archive_format): USTAR_FORMAT: New type.
479         * src/create.c: Added POSIX.1-1988 support.
480         * src/names.c (safer_name_suffix): Skip leading ./
481         * src/tar.c: New option --format=ustar forces
482         POSIX.1-1988 archive format.
483         * tests/delete03.sh: Updated.
484         * tests/extrac04.sh: Updated.
485         * tests/multiv01.sh: Updated.
486
487 2003-11-13  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
488
489         * src/list.c (read_and): Initialize current_stat_info
490         and extended_header at the start of the loop.
491         * src/names.c (all_names_found): Check if the argument
492         contains valid filename. Fixes coredump on `not_a_tar_file'
493         * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder)
494         (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax.
495         Fixes `pax-big-10g' bug.
496
497 2003-11-12  Paul Eggert  <eggert@twinsun.com>
498
499         Fix some C compatibility bugs reported by Joerg Schilling.
500
501         * src/common.h (stripped_prefix_len): Fix misspelling
502         "stripped_path_len" in declaration.
503         * src/rmt.c (main): Use "return FOO;" rather than
504         "exit (FOO);"; we no longer have to worry about
505         pre-ANSI hosts that mishandled returned values from "main".
506         * src/tar.c (main): Likewise.  This avoids warnings on some
507         compilers.
508         * src/system.c: Include signal.h, for 'kill'.
509         * src/system.h (DEV_BSIZE): Remove.
510         (DEFAULT_ST_BLKSIZE): New macro.
511         (ST_BLKSIZE): Use it, instead of DEV_BSIZE.
512         * src/tar.c (enum): Remove comma just before }.
513
514 2003-11-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
515
516         * src/list.c (decode_header): Initialize st_atime and
517         st_ctime.
518
519 2003-11-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
520
521         * configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian
522         Bunk <bunk@fs.tum.de> for reporting.
523         * doc/tar.texi: Fixed spelling. Thanks Martin Buchholz
524         <martin@xemacs.org> for spotting.
525
526 2003-11-04  Paul Eggert  <eggert@twinsun.com>
527
528         * src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and
529         C99 require this.
530
531 2003-10-26  Paul Eggert  <eggert@twinsun.com>
532
533         * src/system.c (sys_spawn_shell): Cast trailing null to (char *).
534         Bug reported by Christian Weisgerber.
535
536 2003-10-19  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
537
538         * AUTHORS: Updated
539         * NEWS: Updated
540         * src/tar.c (decode_options): Removed superfluous archive format
541         check
542         * doc/tar.texi: Documented new features.
543
544 2003-10-08  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
545
546         * NEWS: Updated
547         * THANKS: Added Wojciech Polak
548         * configure.ac: Added checks for missing functions. Raised
549         version number to indicate alpha release.
550         * lib/Makefile.am: Added missing headers
551         * lib/waitpid.c: Added missing includes.
552         * src/extract.c: Likewise.
553         * src/names.c: Removed spurious includes.
554         * src/xheader.c: Likewise.
555         * src/system.h [MSDOS]: Fixed spelling of EACCES. Added
556         macro overriding broken mkdir prototypes.
557
558 2003-10-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
559
560         * configure.ac: Check for dev_t and ino_t.
561         * m4/Makefile.am: Added missing files.
562         * src/system.c: New file.
563         * src/Makefile.am: Added system.c
564         * src/common.h: Prototypes for functions from system.c
565         * src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines
566         * src/buffer.c: Moved system dependencies to system.c
567         * src/compare.c: Likewise.
568         * src/create.c: Likewise.
569         * src/delete.c: Likewise.
570         * src/extract.c: Likewise.
571         * src/rtapelib.c: Likewise.
572
573 2003-10-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
574
575         Implemented --occurrence option.
576
577         * NEWS: Updated.
578         * src/tar.c: New option --occurrence.
579         * src/common.h (occurrence_option): New global
580         (struct name): Changed `found' member to `uintmax_t
581         found_count'.
582         (names_done): Removed
583         (all_names_found): Changed prototype.
584         (ISFOUND,WASFOUND): New macros
585         * src/delete.c (delete_archive_members): Honor --occurrence
586         option.
587         * src/list.c (read_and): Likewise.
588         * src/names.c: Count number of occurrences of each name in the
589         archive.
590         (name_match): Honor --occurrence option.
591         (names_done): Removed
592         (all_names_found,names_notfound): Rewritten.
593
594 2003-10-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
595
596         * src/tar.c: Removed extra precaution regarding
597         subcommand_option == CAT_SUBCOMMAND
598         * lib/Makefile.am: Updated
599
600 2003-10-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
601
602         * src/common.h (names_done): New function.
603         * src/names.c: Likewise.
604         * src/list.c (read_and): Use all_names_found() as `while'
605         condition.
606         * src/tar.c: New option --first-copy
607         * NEWS: Updated
608
609 2003-09-24  Paul Eggert  <eggert@twinsun.com>
610
611         * src/rmt.c (main): Don't translate Copyright string; international
612         law says the word "Copyright" should be in English.
613         * src/tar.c (decode_options): Likewise.
614
615 2003-09-22  Paul Eggert  <eggert@twinsun.com>
616
617         * doc/tar.texi (extracting untrusted archives): New section.
618
619         * src/common.h (stripped_path_len): Renamed from cut_path_elements.
620         Return size_t, not pointer, so that we don't have to worry about
621         violating the C standard by converting char const * to char *.
622         All callers changed.
623         * src/names.c (stripped_path_len): Likewise.  Strip file system
624         prefix, too.  Count adjacent slashes as if they were one slash;
625         that is the POSIX standard.
626
627 2003-09-17  Paul Eggert  <eggert@twinsun.com>
628
629         * README-alpha: Document maintainer tool assumptions a bit.  GNU
630         'sed' is no longer required.  For GNU m4 1.4, suggest the patch in
631         Debian bug 211447.  Fix minor misspellings/whitespace nits.
632
633         * configure.ac (AC_AIX, AC_MINIX): Remove; subsumed by
634         gl_USE_SYSTEM_EXTENSIONS.
635
636         * lib/.cvsignore: Add exit.h, time_r.c, time_r.h.
637         * m4/.cvsignore: Add restrict.m4, time_r.m4.
638
639 2003-09-17  Paul Eggert  <eggert@twinsun.com>
640
641         * bootstrap: Don't use "for option; do";
642         Solaris 8 /bin/sh doesn't like that.
643
644 2003-09-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
645
646         * README-alpha: Updated
647         * bootstrap: Updated
648
649 2003-09-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
650
651         * README-alpha: Updated
652         * bootstrap: Updated
653         * po/POTFILES.in: Added src/xheader.c
654         * src/common.h (cut_path_elements): Added proto.
655
656 2003-09-05  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
657
658         * src/buffer.c: Use ngettext where appropriate.
659         * src/compare.c: Likewise.
660         * src/create.c: Likewise.
661         * src/misc.c: Likewise.
662         * src/tar.c: Likewise.
663         * src/update.c: Likewise.
664
665 2003-09-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
666
667         * .cvsignore: Added *.shar.gz
668         * NEWS: Updated
669         * TODO: Updated
670         * src/common.h (strip_path_elements): New variable.
671         * src/extract.c (extract_archive): Implemented --strip-path
672         * src/names.c (cut_path_elements): New functon.
673         * src/tar.c: New option --strip-path=NUM.
674         (decode_options) Assign boolean values to bool variables.
675
676 2003-09-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
677
678         * src/delete.c: Fixed deletion from the POSIX archives.
679         * src/list.c (read_header): Minor change.
680         * src/tar.c (main): Do not check for volume_label_option
681         if subcommand_option is not CREATE_SUBCOMMAND.
682         * src/xheader.c (xheader_decode): Store the header as
683         well (for eventual delete).
684
685         * tests/incremen.sh: Explicitly request GNU format. This will
686         disappear when GNU extended header keywords are working.
687         * tests/multiv01.sh: Likewise
688         * tests/volume.sh: Likewise
689
690 2003-09-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
691
692         * src/create.c: Support for "linkpath" extended keyword.
693         * src/xheader.c (decode_record): Reversed the return
694         condition.
695
696 2003-09-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
697
698         * configure.ac: Allow to redefine the default output format.
699         * src/tar.c: Use DEFAULT_ARCHIVE_FORMAT macro
700         (archive_format_string): New function.
701         (usage): Updated help output.
702         * README: Updated.
703         * NEWS: Updated.
704         * TODO: Updated.
705
706 2003-09-02  Paul Eggert  <eggert@twinsun.com>
707
708         * src/common.h (destroy_stat, xheader_decode, xheader_store,
709         xheader_read, xheader_finish, xheader_destroy): Add decls;
710         C99 requires this.
711
712         * src/create.c (write_extended): Remove unused local 'bufsize'.
713
714         * src/delete.c (delete_archive_members): Handle case of
715         HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
716         * src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
717         occurs, as it's not possible.
718         * src/update.c (update_archive): Likewise.
719
720         Use "const" when possible in new code.
721         * src/tar.c (struct fmttab.name): Now char const *.  All uses changed.
722         (fmttab): Now const.  All uses changed.
723         * src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
724         (struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
725         decode_record, xheader_store, xheader_print, code_string, code_time,
726         code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
727         gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
728         linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
729         mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
730         uid_coder, uid_decoder, uname_coder, uname_decoder):
731         Use pointers to const when possible.
732         (xhdr_tab): Now const.
733
734         * src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
735         (set_archive_format): Report an error if no format name matches,
736         instead of returning an undefined value.
737
738         * src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
739         atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
740         ctime_decoder, mtime_decoder, path_decoder, size_decoder,
741         uid_decoder, uname_decoder): Remove unused keyword arg.
742         All uses changed.
743
744         * src/tar.c (set_archive_format): Now static.
745         * src/xheader.c (xhdr_tab, format_uintmax): Now static.
746
747         * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
748         atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
749         linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
750         ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
751         size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
752         Remove forward decls; no longer needed.
753         (xhdr_tab): Move to end, so that the forward decls aren't needed.
754         Add a forward declaration.
755
756         Use 'bool' in new code, when appropriate.
757         * src/xheader.c (decode_record): Return bool, not int.
758         * src/common.h (read_header): Since it accepts bool, change
759         all callers to use false and true rather than 0 and 1.
760
761         * src/xheader.c (decode_record): Fix misspelling in diagnostic
762         "extended headed" -> "extended header".
763
764         GNU coding style fixes.
765         * src/xheader.c (decode_record, xheader_decode):
766         Do not use decls like "char *p, *q;".
767
768         Minor style fixes.
769         (xheader_store): Avoid parentheses around object operand of sizeof.
770
771 2003-09-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
772
773         * src/create.c (start_header): Store long file names
774         in "path" keyword of an extended header if in POSIX
775         mode.
776         (finish_header): print header before calling write_extended().
777         * src/list.c (list_archive): Always decode the header. This
778         is necessary so the extended header is processed and the correct
779         filename is printed no matter what the state of verbose_option.
780         * src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
781         for the time being).
782
783 2003-09-01  Paul Eggert  <eggert@twinsun.com>
784
785         Update from gnulib, and correct fnmatch to fnmatch-gnu.
786         * bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
787         Sort.
788         * configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
789         of AC_GNU_SOURCE.
790         * lib/.cvsignore: Add alloca.h, stdbool.h.  Sort.  Append newline.
791         * lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
792         copying rules from gnulib module descriptions.
793         (BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
794         Update from gnulib modules alloca, fnmatch, getline, stdbool.
795         * m4/.cvsignore: Add utimes-null.m4.  Sort.
796
797 2003-09-01  Sergey Poznyakoff
798
799         Added initial support for creating POSIX headers.
800
801         * src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
802         (string_to_chars): New functions
803         (struct xheader): Changed structure
804         (gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
805         prototypes.
806         * src/create.c (string_to_chars): New function.
807         (write_extended): New function
808         (start_header): Create extended POSIX headers if necessary.
809         (finish_header): Likewise.
810         * src/list.c (print_header): Take user/group from
811         current_stat_info.
812         * src/names.c (gid_to_gname,gname_to_gid)
813         (uid_to_uname,uname_to_uid): Changed prototypes.
814         * src/tar.c: New option --format.
815         * src/tar.h (OLDGNU_COMPATIBILITY): Removed
816         (struct extra_header): Removed unused structure.
817         (union block.extra_header): Removed unused member.
818         * src/xheader.c: Implemented coder functions.
819         * bootstrap: Added obstack.
820         * lib/.cvsignore: Likewise.
821         * configure.ac: Added 'gl_OBSTACK'
822         * m4/Makefile.am: Added new files.
823         * m4/.cvsignore: Likewise.
824         * TODO: Minor formatting change
825
826 2003-08-31  Sergey Poznyakoff
827
828         Added initial support for POSIX extended and STAR headers
829         (only for listing/extracting).
830
831         * src/xheader.c: New file.
832         * src/Makefile.am: Added xheader.c
833         * src/tar.h (struct star_header): New datatype
834         (XHDTYPE,XGLTYPE): New defines
835         (enum archive_format:STAR_FORMAT): New member
836         (struct tar_stat_info): New datatype.
837         (union block.star_header): New member.
838         * src/common.h (orig_file_name,current_file_name)
839         (current_trailing_slash,current_link_name): Removed variables.
840         (current_stat_info): New variable
841         (current_stat): Removed
842         (extended_header): New variable
843         (decode_header): Changed prototype.
844         * src/list.c (decode_header): Added initial support for POSIX extended
845         and STAR headers.
846         (skip_member): Check oldgnu_header only if current_format is set
847         to OLDGNU_FORMAT.
848         * src/buffer.c: Use current_stat_info
849         * src/compare.c: Likewise.
850         * src/create.c: Likewise.
851         * src/delete.c: Likewise.
852         * src/incremen.c: Likewise.
853         * src/mangle.c: Likewise.
854         * src/update.c: Likewise.
855         * src/extract.c: Likewise.
856         (make_directories): Improved check for the existence of the directory
857         * src/tar.c (destroy_stat): New function.
858
859 2003-08-29  Paul Eggert  <eggert@twinsun.com>
860
861         * NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
862         was worth (e.g., different users in en_GB disagree about -ize
863         versus -ise).
864         * po/en_GB.po: Remove.
865
866 2003-07-28  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
867
868         * TODO: Updated
869         * NEWS: Updated
870         * src/tar.c: Removed support for the obsolete command line
871         options.
872         * doc/tar.texi: Removed references to the obsolete command
873         line options.
874
875 2003-07-27  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
876
877         * TODO: Updated
878         * NEWS: Updated
879         * doc/tar.texi: Updated
880         * src/common.h (check_links_option): New variable
881         (orig_file_name): New variable
882         (check_links): New proto.
883         * src/create.c (struct link.nlink): New member
884         (link_table): Static for the module.
885         (dump_file): Update `link' member when adding new links
886         to the link_table.
887         (check_links): New function.
888         * src/list.c (print_header): Use orig_file_name.
889         * src/tar.c: New option --check-links. Changed semantics of
890         -o to comply to UNIX98 when extracting and to its previous
891         semantics otherwise.
892         (main): Call check_links if --check-links. was given.
893
894 2003-07-25  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
895
896         * src/list.c (print_header): Revised
897         * NEWS: Started the entry for 1.13.26
898         * doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
899
900 2003-07-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
901
902         * .cvsignore: Added to the repository.
903         * doc/.cvsignore: Likewise.
904         * lib/.cvsignore: Likewise.
905         * m4/.cvsignore: Likewise.
906         * po/.cvsignore: Likewise.
907         * scripts/.cvsignore: Likewise.
908         * src/.cvsignore: Likewise.
909         * tests/.cvsignore: Likewise.
910
911         * lib/Makefile.am: Added exitfail.[hc]
912         * src/misc.c (chdir_do): Fixed call to restore_cwd
913         * src/buffer.c (flush_read): Fixed behavior on short
914         reads right after opening the new archive (multiv01.sh test).
915         (new_volume): Special handling for "-".
916         * src/list.c (print_header): Print trailing slash if
917         current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
918         * tests/multiv01.sh: Minor changes.
919         * m4/Makefile.am: Added missing files.
920
921 2003-07-05  Paul Eggert  <eggert@twinsun.com>
922
923         Finish the checkin begin yesterday.
924
925         * NEWS: Document the user-visible changes installed in the last
926         two days.
927
928         * TODO: New file (actually, resurrected; but with new contents).
929
930         * src/list.c (read_and): Give full type for procedure arg.
931         (read_header): Strip trailing slashes, setting current_trailing_slash.
932         (tartime): Avoid int overflow when printing year (!).
933         (print_header): New arg specifying block ordinal.  All uses changed.
934         Print link as 'h' type.  Give labels for long links and names.
935
936         * src/misc.c (contains_dot_dot): Moved to names.c
937         (must_be_dot_or_slash): New function.
938         (safer_rmdir): Use it.
939         (remove_any_file): Now takes enum as option, not boolean.
940         Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
941         to unlink a directory.
942         (deref_stat): Accept bool, not int.
943
944         * src/names.c (namelist_match): Allow partial matches only if
945         recursive.
946         (hash_string_hasher): Renamed from hash_avoided_name.
947         (hash_string_compare): Renamed from compare_avoided_anames.
948         (hash_string_insert, hash_string_lookup): New functions.
949         (add_avoided_name, is_avoided_name): Use them.
950         (safer_name_suffix): New function.
951         (contains_dot_dot): Moved here from misc.c.  Now returns bool, not int.
952
953         * src/rmt.c: Don't include print-copyr.h.
954         (prepare_input_buffer): New arg FD.
955         Do not read more than INT_MAX bytes at once,
956         since it breaks on some brain damaged Tru64 hosts.
957         Divide size by two
958         when retrying instead of subtracting 1024; for speed.
959         (main): Use gettext to translate (C), not print_copyright.
960
961         * src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
962         now that gnulib handles this.
963         Include <stddef.h> and <limits.h> unconditionally, now that we assume
964         C89 or better.
965         Assume that offsetof is defined in stddef.h.
966         Do not include <sys/param.h>.
967         (realloc, lseek): Do not declare.
968         (HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
969         (CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
970         declarations, since we now assume C89 or better.
971         (PARAMS): Remove, as we now assume C89.  All uses changed.
972         (bindtextdomain, textdomain): Include <gettext.h> to define.
973         Include <unlocked-io.h>.
974         (valloc): Define if not defined, and if valloc is not declared.
975         (xstrdup): Remove decl.
976
977         * src/tar.c: Do not include <print-copyr.h>.
978         Include <getdate.h>.
979         (get_date): Remove decl.
980         (ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
981         IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
982         NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
983         SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
984         (long_options, decode_options): Use them.
985         (OVERWRITE_DIR_OPTION): Remove.
986         (long_options): New options --index-file, --no-overwrite-dir.
987         Remove --overwrite-dir option.
988         (usage): Use PACKAGE_BUGREPORT.
989         (decode_options): Terminate new argv properly.
990         Use PACKAGE_NAME, PACKAGE_VERSION.
991         If verbose, report how we grokked any textual date option.
992         (main): Add support for index-file.
993
994         * tests/Makefile.am: Convert to UTF-8.
995         (AUTOMAKE_OPTIONS): Remove.
996         (TESTS): Add delete04.sh, multiv01.sh, options.sh.
997         (INCLUDES): Remove ../intl.
998         (LDADD): Don't link libtar.a twice.
999
1000         * tests/genfile.c: Convert to UTF-8.
1001         Don't include <print-copyr.h>.
1002         (DEFAULT_PATTERN): Renamed from DEFAULT.
1003         (ZEROS_PATTERN): Renamed from ZEROS.
1004         (main): Use gettext to translate (C), not print_copyright.
1005
1006 2003-07-04  Paul Eggert  <eggert@twinsun.com>
1007
1008         Revamp to meet current standards of autoconf, automake,
1009         gettext, and gnulib, and incorporate new translations.
1010
1011         * config/config.guess, config/config.sub, config/depcomp,
1012         config/install-sh, config/mdate-sh, config/missing,
1013         config/mkinstalldirs, config/texinfo.texi:
1014         Moved here from parent directory, or from doc.
1015         * config.hin: Renamed from config.h.in.
1016         * config/config.rpath: New file.
1017
1018         * intl: Remove this subdirectory.
1019
1020         * lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
1021
1022         * lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
1023         lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
1024         lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
1025         lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
1026         lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
1027         m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
1028         stamp-h.in: Remove.
1029
1030         * lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
1031         lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
1032         lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
1033         m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
1034         m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
1035         m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
1036         m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
1037         m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
1038         m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
1039         m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
1040         m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
1041         m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
1042         m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
1043         m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
1044         m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
1045         m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
1046         po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
1047         po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
1048         po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
1049
1050         * ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
1051         lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
1052         lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
1053         lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
1054         lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
1055         lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
1056         lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
1057         lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
1058         lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
1059         lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
1060         lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
1061         lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
1062         lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
1063         m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
1064         m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
1065         m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
1066         m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
1067         m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
1068         po/Makefile.in.in:
1069         Upgrade to latest version from external source.  The file "bootstrap"
1070         now grabs these automatically, so we needn't keep track of them
1071         in this change long any longer.
1072
1073         * Makefile.am (AUTOMAKE_OPTIONS): Remove.  Now done by configure.ac.
1074         (SUBDIRS): Remove intl.
1075         * PORTS: Update for star, Macintosh.
1076         * README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
1077         Bison 1.875, gettext 0.12.1.
1078         * THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
1079         * configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
1080         (AC_CONFIG_AUX_DIR): New.
1081         (AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
1082         like coreutils.
1083         (AC_PREREQ): Bump from 2.52 to 2.57.
1084         (AC_GNU_SOURCE): New.
1085         (AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
1086         we no longer support K&R C.
1087         (YACC): Remove.
1088         (AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
1089         sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
1090         (AC_MBSTATE_T): Remove.
1091         (HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
1092         HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
1093         HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
1094         (AM_STDBOOL_H): Add.
1095         (AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
1096         jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
1097         (AC_CHECK_TYPE): Remove ssize_t.
1098         (gt_TYPE_SSIZE_T): Add.
1099         (jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
1100         jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
1101         AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
1102         AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
1103         jm_FUNC_MKTIME, jm_FUNC_REALLOC):
1104         Remove.  Switch to gnulib macros like gl_BACKUPFILE instead.
1105         (tar_LDADD): Rename to LIB_CLOCK_GETTIME.  All uses changed.
1106         (rmt_LDADD): Rename to LIB_SETSOCKOPT.  All uses changed.
1107         (AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
1108         napms, poll, select, strstr, usleep.
1109         (AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
1110         rmdir, strcasecmp, strncasecmp, strtol, strtoul.
1111         (AM_GNU_GETTEXT): Use external and need-ngettext options.
1112         (AM_GNU_GETTEXT_VERSION): New.
1113         (AC_OUTPUT): Remove intl/Makefile.
1114
1115         * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1116         ($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
1117         * doc/fdl.texi: Update to current GNU version.
1118         * doc/gettext.texi: Update to current coreutils version,
1119         plus a copyright notice.
1120         * doc/tar.texi: Switch to new method for doing copyright notices.
1121         Use @acronym instead of @sc where appropriate.
1122         Remove empty examples.  Give a few more examples.
1123
1124         * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1125         (EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
1126         are built up in pieces with +=.
1127         (noinst_HEADERS, INCLUDES): Remove.
1128         (BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
1129         (libtar_a_LIBADD): Use $ rather than @.
1130         (all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
1131
1132         * m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
1133         bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
1134         ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
1135         intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
1136         isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
1137         memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
1138         pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
1139         safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
1140         stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
1141         strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
1142         unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
1143         Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
1144         prereq.m4, xstrtoimax.m4.
1145
1146         * po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
1147         be translated, since it's not a user-visible tool.
1148
1149         * scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1150
1151         * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1152         (INCLUDES): Remove ../intl.  Put top-srcdir before ., for
1153         consistency with coreutils.
1154         (LDADD): Link LIBINTL after libtar.a, since
1155         it's now external and should stand by itself.
1156
1157         * src/buffer.c (print_total_written): Adjust to new human.h
1158         interface.
1159         (child_open_for_compress): Do not increase size to BLOCKSIZE.
1160         (open_archive): Open index file name.
1161         Strip trailing slahes from file names.
1162         (flush_write): Set size to 0 if not saving names.
1163         (flush_write, flush_read): Use safer_name_suffix rather than
1164         inline code.
1165
1166         * src/common.h: Include <quote.h>.
1167         (absolute_names_option, atime_preserve_option, backup_option,
1168         block_number_option, checkpoint_option, dereference_option,
1169         force_local_option, ignore_failed_read_option, ignore_zeros_option,
1170         incremental_option, interactive_option, multi_volume_option,
1171         numeric_owner_option, one_file_system_option, recursive_unlink_option,
1172         read_full_records_option, remove_files_option, same_order_option,
1173         show_omitted_dirs_option, sparse_option, starting_file_option,
1174         to_stdout_option, totals_option, touch_option, verify_option,
1175         dev_null_output, now_verifying, we_are_root): Now bool, not int.
1176         (current_trailing_slash, index_file_name, recent_long_name_blocks,
1177         recent_long_link_blocks): New vars.
1178         (NO_OVERWRITE_DIR_OLD_FILES): New constant.
1179         (OVERWRITE_OLD_DIRS): Remove.
1180         (enum remove_option): New enum.
1181         (remove_any_file): Use it as option arg, not int.
1182         (is_avoided_name, contains_dot_dot): Return bool, not int.
1183         (safer_name_suffix): New decl.
1184
1185         * src/compare.c (now_verifying): Now bool, not int.
1186         (fill_in_sparse_array): Move to extract.c.  Now returns bool;
1187         all callers changed to test for failure.
1188         (diff_sparse_files): Take size from current_stat, not from param.
1189         (diff_archive): Do not count trailing slashes in archives.
1190         (verify_volume): Test for header failure after loop, not before.
1191
1192         * src/create.c (relativize): Remove; replaced by safer_name_suffix.
1193         All callers changed.
1194         (start_header): Clear devmajor and devminor fields, too.
1195         (finish_header): New arg block_ordinal.
1196         (init_sparsearray): Now extern.  Set sp_array_size to
1197         SPARSES_IN_OLDGNU_HEADER if it is zero.
1198         (dump_file): Keep link table as a hash.
1199         Do not count "file changed as we read it" as a failure.
1200
1201         * src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
1202         Move extern decl to common.h.
1203
1204         * src/extract.c (we_are_root): Now bool, not int.
1205         (check_time): Warn about implausibly old time stamps.
1206         (set_stat): Use utimbuf, not stat_info.
1207         (prepare_to_extract): New arg DIRECTORY.
1208         (fill_in_sparse_array): Moved here from compare.c.
1209         (extract_sparse_file): Now returns off_t, giving size left.
1210         Truncate file at end.
1211         (extract_archive): Use safer_name_suffix rather than rolling our own.
1212         Use fill_in_sparse_array rather than rolling our own.
1213         Strip trailing slashes more effectively.
1214         Check for unsafe names.
1215
1216         * src/incremen.c (struct directory): nfs and found are now of type
1217         bool, not int.
1218         (gnu_restore): Now takes directory name as argument, not offset
1219         of directory name in a global.  All uses changed.
1220         (CURRENT_FILE_NAME): Remove.
1221
1222         New tests.
1223         * tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
1224         files.
1225
1226 2002-09-30  Paul Eggert  <eggert@twinsun.com>
1227
1228         * src/rmt.c (prepare_input_buffer): Renamed form
1229         prepare_record_buffer.  All uses changed.  Do not assume that
1230         size_t is the same width as int.
1231
1232 2002-03-29  Paul Eggert  <eggert@twinsun.com>
1233
1234         * src/incremen.c (get_directory_contents):
1235         If ignore_failed_read_option, only warn about
1236         get_directory_contents failures.  Fix suggested by
1237         Mark Costlow.
1238
1239 2002-01-31  Mark W. Eichin  <eichin@thok.org>
1240
1241         * src/buffer.c (child_open_for_compress): Don't try to read
1242         past the end of the buffer.
1243
1244 2001-10-11  Jim Meyering  <meyering@lucent.com>
1245
1246         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
1247         and quote_n (1, ... to avoid clobbering a buffer.
1248
1249 2001-09-26  Paul Eggert  <eggert@twinsun.com>
1250
1251         * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
1252
1253         * src/buffer.c (flush_read): Don't diagnose partial blocks before
1254         end of file; just ignore them silently.
1255
1256         * src/list.c (read_header): Don't keep around extended name
1257         and link info indefinitely; keep it only for the next file.
1258         This fixes a bug introduced in 1.13.24, and removes the need
1259         for some static variables.  Set recent_long_name and
1260         recent_long_link to zero if there were no long links; this
1261         avoids a violation of ANSI C rules for pointers in delete.c.
1262         * THANKS: Add Christian Laubscher.
1263
1264 2001-09-26  Jim Meyering  <meyering@lucent.com>
1265
1266         * doc/tar.texi (Remote Tape Server): is know -> is known
1267
1268 2001-09-25  Paul Eggert  <eggert@twinsun.com>
1269
1270         * lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
1271         <iconv.h> may define EILSEQ (e.g. libiconv).  Define a
1272         replacement EILSEQ to be ENOENT, not EINVAL, since callers may
1273         want to distinguish EINVAL and EILSEQ.
1274
1275 2001-09-24  Christophe Kalt  <Christophe.Kalt@kbcfp.com>
1276
1277         * src/extract.c (maybe_recoverable):
1278         Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
1279
1280 2001-09-22  Paul Eggert  <eggert@twinsun.com>
1281
1282         * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
1283
1284         * ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
1285         with GPL.
1286
1287         * INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
1288         * PORTS: Add copyright notice, 'star' reference.
1289         * README-alpha: Add copyright notice, autoconf 2.52 patch.
1290         * THANKS: Add Christophe Kalt.
1291         * config.sub: Upgrade to 2001-09-14 version.
1292
1293         * configure.ac (ALL_LINGUAS): Add ko.
1294         * po/ko.po: Resurrected file.
1295
1296         * doc/convtexi.pl: Add coding advice for Emacs.
1297
1298         * doc/getdate.texi: Add copyright notice.
1299
1300         * doc/mdate-sh: Upgrade to automake 1.5 version.
1301
1302         * doc/tar.texi (extracting files): Mention --to-stdout.
1303         (Option Summary, Dealing with Old Files): New option --overwrite-dir.
1304         (Overwrite Old Files): Likewise.
1305
1306         * lib/Makefile.am (noinst_HEADERS):
1307         Remove copysym.h.  Add print-copyr.h, unicodeio.h.
1308         (libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
1309
1310         * lib/copysym.c, lib/copysym.h: Remove.
1311         * lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
1312         lib/unicodeio.h: New files.
1313
1314         * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
1315         lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
1316
1317         * lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
1318         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
1319
1320         * m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
1321         * m4/isc-posix.m4: Remove.
1322
1323         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
1324
1325         * po/POTFILES.in: Add copyright notice.
1326
1327         * src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
1328         well as after.
1329         * tests/Makefile.am (LDADD): Likewise.
1330
1331         * src/buffer.c (write_archive_buffer, close_archive):
1332         If an archive is a socket, treat it like a FIFO.
1333         (records_read, records_written): New vars.
1334         (write_archive_to_stdout): Now bool, not int.
1335         (open_archive, flush_write, flush_read): Keep records_read and
1336         records_written up to date.
1337
1338         * src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
1339         (write_archive_to_stdout): Now bool, not int.
1340         (enum read_header): New value HEADER_SUCCESS_EXTENDED.
1341         (read_header): Now takes bool arg.  Existing callers modified
1342         to pass 0, unless otherwise specified.
1343
1344         * src/delete.c (records_read): Remove; now a global.
1345         (acting_as_filter): Now bool, not int.
1346         (recent_long_name, recent_long_link, recent_long_name_blocks,
1347         recent_long_link_blocks, records_read, records_written): New decls.
1348         (records_skipped): New var.
1349         (move_archive): Don't divide by zero if arg is 0.
1350         Use the above vars to compute how far to move.
1351         (write_recent_blocks): New function.
1352         (delete_archive_member): Pass 1 to read_header, so that it doesn't
1353         read more than 1 block.  Handle resulting HEADER_SUCCESS_EXTENDED code.
1354         Keep track of how many records have been skipped.
1355         Let the buffer code count records.
1356         When copying a header, copy any extended headers that came before it.
1357
1358         * src/extract.c (extract_archive): When marking a directory to be
1359         updated after symlinks, stat all directories after it in the
1360         delayed-set-stat list too, since they will be checked after
1361         symlinks.  Add support for --overwrite-dir.
1362
1363         * src/list.c (recent_long_name, recent_long_link,
1364         recent_long_name_blocks, recent_long_link_blocks): New vars.
1365         (read_and): Pass 0 to read_header.
1366         (read_header): New arg RAW_EXTENDED_HEADERS.  Store away extended
1367         headers into new vars.  Null-terminate incoming symbolic links.
1368
1369         * src/rmt.c: Include print-copyr.h, not copysym.h.
1370         (main): Use print_copyright, not copyright_symbol.
1371         * src/tar.c (decode_options): Likewise.
1372         (OVERWRITE_DIR_OPTION): New constant.
1373         (long_options, usage, decode_options): Add --overwrite-dir.
1374
1375         * src/tar.h: Put copyright notice into documentation.
1376
1377         * tests/Makefile.am (TESTS): Add delete03.sh.
1378         * tests/delete03.sh: New file.
1379
1380         * tests/genfile.c: Include print-copyr.h, not copysym.h.
1381         (main): Use print_copyright, not copyright_symbol.
1382         Include <argmatch.h>.
1383         (pattern_strings): Remove.
1384         (pattern_args, pattern_types): New constants.
1385         (main): Use XARGMATCH, not argmatch.
1386
1387 2001-09-20  Jim Meyering  <meyering@lucent.com>
1388
1389         * lib/xstrtol.c (strtoimax): Guard declaration with
1390         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
1391         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
1392         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
1393         (strtoumax): Likewise, for completeness (it wasn't necessary).
1394         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
1395         Check for declaration of strtoimax.
1396         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
1397         Check for declaration of strtoumax.
1398
1399 2001-09-16  Paul Eggert  <eggert@twinsun.com>
1400
1401         * fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
1402
1403 2001-09-14  Paul Eggert  <eggert@twinsun.com>
1404
1405         * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
1406
1407         * README-alpha: Describe automake patch.
1408
1409         * configure.ac (LIBOBJS):
1410         Remove automake 1.4 workaround, as we're using 1.5 now.
1411         (USE_INCLUDED_LIBINTL): New AC_DEFINE.
1412
1413         * lib/copysym.c: Include stddef.h, for size_t.
1414         Include langinfo.h if needed.
1415         Use locale_charset only if USE_INCLUDED_LIBINTL;
1416         if not, use nl_langinfo (CODESET) if available.
1417
1418 2001-09-13  Paul Eggert  <eggert@twinsun.com>
1419
1420         * config.guess, config.sub: Sync with canonical versions.
1421
1422         * configure.ac (jm_PREREQ_XGETCWD): Add.
1423
1424         * lib/Makefile.am (noinst_HEADERS): Add copysym.h.
1425         (libtar_a_SOURCES): Add copysym.c.
1426         * copysym.c, copysym.h: New files.
1427
1428         * lib/error.c: Sync with fileutils version.
1429
1430         * m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
1431         * m4/getcwd.m4: New file.
1432         * m4/uintmax_t.m4: Remove.
1433
1434         * m4/gettext.m4 (AM_WITH_NLS):
1435         Fix bug with calculating version of Bison 1.29.
1436         Reported by Karl Berry.
1437
1438         * src/Makefile.am (datadir): Remove.
1439
1440         * src/rmt.c: Include copysym.h.
1441         (main): Use copyright_symbol to translate copyright notice,
1442         instead of gettext.
1443         * src/tar.c: Likewise.
1444         * tests/genfile.c: Likewise.
1445
1446         * src/system.h (MB_LEN_MAX): New symbol.
1447
1448 2001-09-11  Paul Eggert  <eggert@twinsun.com>
1449
1450         * src/extract.c (struct delayed_set_stat): New member
1451         'after_symlinks'.
1452         (delay_set_stat): Initialize it to 0.
1453         (set_mode): New arg current_stat_info.  Use it (if nonnull) to avoid
1454         taking an extra stat ourselves.  All callers changed.
1455         (set_stat): Likewise.
1456         (apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
1457         If false, stop when encountering a struct whose 'after_symlinks'
1458         member is true.  Otherwise, go through all structures but check
1459         them more carefully.  All callers changed.
1460         (extract_archive): When extracting a deferred symlink, if its parent
1461         directory's status needs fixing, then mark the directory as needing
1462         to be fixed after symlinks.
1463         (extract_finish): Fix status of ordinary directories, then apply
1464         delayed symlinks, then fix the status of directories that are
1465         ancestors of delayed symlinks.
1466
1467         * src/rtapelib.c (rexec):
1468         Remove declaration; it ran afoul of prototypes on Crays.
1469         Reported by Wendy Palm of Cray.
1470
1471 2001-09-06  Paul Eggert  <eggert@twinsun.com>
1472
1473         * lib/strtoimax.c (HAVE_LONG_LONG):
1474         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
1475         (strtoimax): Use sizeof (long), not
1476         sizeof strtol (ptr, endptr, base),
1477         to work around bug in IBM C compiler.
1478
1479 2001-09-04  Paul Eggert  <eggert@twinsun.com>
1480
1481         * lib/xgetcwd.c: Include "xalloc.h".
1482         (xgetcwd): Do not return NULL when memory is exhausted; instead,
1483         report an error and exit.
1484
1485         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
1486         (jm_PREREQ): Use it.
1487
1488 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1489
1490         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
1491         (jm_PREREQ_XGETCWD): New macro.
1492
1493         * lib/exclude.c (fnmatch_no_wildcards):
1494         Fix typo that caused us to do case-folding
1495         search even when that was not desired.  This occurred only in the
1496         no-wildcard case.
1497
1498         * lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
1499         Do not include xalloc.h.
1500         (INITIAL_BUFFER_SIZE): New symbol.
1501         Do not use xmalloc / xrealloc, since the caller is responsible for
1502         handling errors.  Preserve errno around `free' during failure.
1503         Do not overrun buffer when using getwd.
1504
1505         * lib/xgetcwd.c (xgetcwd):
1506         Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
1507         to decide whether to use getcwd (NULL, 0).
1508
1509 2001-09-02  Paul Eggert  <eggert@twinsun.com>
1510
1511         * lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
1512
1513 2001-09-01  Jim Meyering  <meyering@lucent.com>
1514
1515         * exclude.c: Use `""', not `<>' to #include non-system header files.
1516         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
1517         and strncasecmp as r-values.  Unixware didn't have declarations.
1518
1519 2001-08-31  Jim Meyering  <meyering@lucent.com>
1520
1521         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
1522         Use an initial, malloc'd, buffer of length 128 rather than
1523         a statically allocated one of length 1024.
1524
1525 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1526
1527         * lib/utime.c: Include full-write.h.
1528         * lib/xstrtol.c (strtoimax): New decl.
1529
1530 2001-08-29  Paul Eggert  <eggert@twinsun.com>
1531
1532         * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
1533
1534         * src/create.c (dump_file): Relativize link names before dumping.
1535         This fixes a bug reported by Jose Pedro Oliveira.
1536
1537         * src/create.c (dump_file): Use offsetof when computing sizes for
1538         struct hack; this avoids wasted space in some cases.
1539         * src/incremen.c (note_directory, find_directory): Likewise.
1540         * src/names.c (name_gather, addname): Likewise.
1541
1542         * src/extract.c (extract_archive): Use strcpy, not memcpy,
1543         for consistency with other code that does similar things.
1544         * src/names.c (name_gather): Likewise.
1545
1546         * src/names.c (read_name_from_file, name_next, name_gather,
1547         add_hierarchy_to_namelist): Avoid quadratic behavior when
1548         reallocating buffers.  Check for buffer size overflow.
1549         (addname): Avoid unnecessary clearing of memory.
1550
1551 2001-08-29  "Jan D."  <Jan.Djarv@mbox200.swipnet.se>
1552
1553         * src/extract.c (delay_set_stat): Fix off-by-one error in file
1554         name size allocation that caused core dumps.
1555
1556 2001-08-28  Paul Eggert  <eggert@twinsun.com>
1557
1558         * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
1559
1560         * configure.ac (GNU_SOURCE): Define to 1, not /**/.
1561         (major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
1562         (daddr_t): Remove; no longer used.
1563         (jm_PREREQ_HUMAN): Add.
1564
1565         * acconfig.h: Remove; no longer needed.
1566
1567         * config.guess, config.sub:
1568         New files, from automake 1.5.  Gettext 0.10.39 needs them.
1569         * depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
1570
1571         * Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
1572         (SUBDIRS): Put intl before lib, as gettext requires.
1573
1574         * ABOUT-NLS: Upgrade to gettext 0.10.39.
1575         * intl: Upgrade entire directory to gettext 0.10.39.
1576         * m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
1577         New files, from gettext 0.10.39.
1578         * m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
1579         Upgrade to gettext 0.10.39,
1580         * po/Makefile.in.in: Likewise, except fix a typo in its copying
1581         permissions.
1582         * po/cat-id-tbl.c, po/stamp-cat-id:
1583         Remove; no longer used by gettext 0.10.39.
1584         * po/ChangeLog: New file.
1585
1586         * doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
1587         $(srcdir)/tar.texi: Likewise.
1588         * doc/freemanuals.texi: New file.
1589         * doc/tar.texi (Free Software Needs Free Documentation): New appendix.
1590         `fileds' -> `fields'
1591         * doc/texinfo.tex: Upgrade to version 2001-07-25.07.
1592
1593         * lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
1594         (noinst_HEADERS): Add quote.h.
1595         (libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
1596
1597         * lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
1598
1599         * lib/full-write.c, lib/savedir.c: Comment fix.
1600
1601         * lib/pathmax.h: Remove.
1602
1603         * lib/quote.c, lib/quote.h: New files.
1604
1605         * lib/xgetcwd.c: Don't include pathmax.h.
1606         Include stdlib.h and unistd.h if available.
1607         Include xalloc.h.
1608         (xmalloc, xstrdup, free): Remove decls.
1609         (xgetcwd): Don't assume sizes fit in unsigned.
1610         Check for overflow when computing sizes.
1611         Simplify reallocation code.
1612
1613         * lib/xmalloc.c: Quote failure tests.
1614
1615         * lib/strtoumax.c, lib/xstrtoimax.c: New files.
1616
1617         * lib/strtoimax.c: Renamed from strtouxmax.c.  Make it more
1618         similar to strtol.c.
1619         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
1620         (verify): New macro.
1621         (strtoumax, uintmax_t, strtoull, strtol): Remove.
1622         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
1623         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
1624         changed to signed values.  Check sizes at compile-time, not
1625         run-time.  Prefer strtol to strtoll if both work.
1626         (main): Remove.
1627
1628         * lib/xstrtol.h (xstrtoimax): New decl.
1629
1630         * m4/Makefile.am (EXTRA_DIST):
1631         Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
1632         longlong.m4, xstrtoimax.m4.
1633
1634         * m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
1635         Remove; now done by autoconf.
1636         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
1637         Use AC_CHECK_TYPE instead of merely looking for the header.
1638
1639         * m4/uintmax_t.m4: Use shorter comment.
1640
1641         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
1642         Quote first arg of AC_DEFUN.
1643         Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
1644         is needed to parse the include file.
1645         Simplify logic behind the args to AC_REPLACE.
1646
1647         * src/Makefile.am (OMIT_DEPENDENCIES): Remove.
1648
1649         * src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
1650
1651         * src/rmt.c (main):
1652         Use "Copyright %d" to simplify the translator's job in the future.
1653         Advise translator about circle-C.
1654         * src/tar.c: (decode_options): Likewise.
1655         * tests/genfile.c (main): Likewise.
1656
1657 2001-08-28  Jim Meyering  <meyering@lucent.com>
1658
1659         * lib/argmatch.c: Include "quote.h".
1660         (argmatch_invalid): Quote the context.
1661
1662         * lib/dirname.c (dir_name): Fix typo on PC platforms.
1663
1664         * lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
1665         Use single-quote for local .h files.
1666
1667         * lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
1668
1669         * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
1670         glibc versions.
1671
1672         * lib/getdate.y (get_date): Initialize tm_isdst to -1 before
1673         invoking mktime the last time.
1674
1675         * lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
1676
1677         * lib/rename.c: Major rewrite by Volker Borchert to use system
1678         rename function, but to work around problems with trailing
1679         slashes.
1680
1681         * lib/strtoll.c: New file, from glibc.
1682         * lib/strtoul.c: Update from glibc.
1683
1684         * lib/strtouxmax.c: Renamed from lib/strtoumax.c.
1685         Add support for signed numbers, too.
1686         (strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
1687         is not defined.
1688         (strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
1689         not defined.
1690         (strtoumax, uintmax_t, strtoull, strtoul): New macros.
1691         (main): Use generic names in debugging output.
1692         * lib/strtoimax.c: Plus add the following changes of my own:
1693         (main): Use accurate names in debugging output.
1694
1695         * lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
1696         Don't use PATH_MAX.
1697
1698         * m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
1699         m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
1700         m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
1701         m4/utime.m4, m4/utimes.m4:
1702         Quote the first argument in each use of AC_DEFUN.
1703
1704         * m4/getline.m4: Don't use string.h.
1705
1706         * m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
1707
1708         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
1709
1710 2001-08-27  Paul Eggert  <eggert@twinsun.com>
1711
1712         * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
1713
1714         The biggest change is the new --exclude semantics and options.
1715         The basic idea was suggested by Gerhard Poul; thanks!
1716
1717         * NEWS: Describe new --exclude semantics and options, and bug fixes.
1718         * README: ignfail.sh fails on some NFS hosts.
1719         * NEWS, README, lib/xstrtol.h: Add copyright notice.
1720
1721         * Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
1722         (M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
1723         Remove; the automake bug has been fixed.
1724         * acinclude.m4: Remove.
1725
1726         * configure.ac: Renamed from configure.in.
1727         (AC_PREREQ): Bump from 2.13 to 2.52.
1728         (ALL_LINGUAS): Add id, tr.  Remove ko, as po/ko.po (dated
1729         1997-05-30) has an encoding error.
1730         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
1731         (AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
1732
1733         * doc/fdl.texi: Update to current GNU version.
1734
1735         * doc/tar.texi: Put leading '*' in direntry.
1736         Accommodate new gfdl sectioning.
1737         New option --recursion (the default) that is the inverse of
1738         --no-recursion.
1739
1740         New options --anchored, --ignore-case, --wildcards,
1741         --wildcards-match-slash, and their negations (e.g., --no-anchored).
1742         Along with --recursion and --no-recursion, these control how exclude
1743         patterns are interpreted.  The default interpretation of exclude
1744         patterns is now --no-anchored --no-ignore-case --recursion
1745         --wildcards --wildcards-match-slash.
1746
1747         * lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
1748
1749         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
1750         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
1751         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
1752         Include if available.
1753         (<xalloc.h>): Include
1754         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
1755         (verify): New macro.  Use it to verify that EXCLUDE macros do not
1756         collide with FNM macros.
1757         (struct patopts): New struct.
1758         (struct exclude): Use it, as exclude patterns now come with options.
1759         (new_exclude): Support above changes.
1760         (new_exclude, add_exclude_file):
1761         Initial size must now be a power of two to simplify overflow checking.
1762         (free_exclude, fnmatch_no_wildcards): New function.
1763         (excluded_filename): No longer requires options arg, as the options
1764         are determined by add_exclude.  Now returns bool, not int.
1765         (excluded_filename, add_exclude):
1766         Add support for the fancy new exclusion options.
1767         (add_exclude, add_exclude_file): Now takes int options arg.
1768         Check for arithmetic overflow when computing sizes.
1769         (add_exclude_file): xrealloc might modify errno, so don't
1770         realloc until after errno might be used.
1771
1772         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
1773         New macros.
1774         (free_exclude): New decl.
1775         (add_exclude, add_exclude_file): Now takes int options arg.
1776         (excluded_filename): No longer requires options arg, as the options
1777         are determined by add_exclude.  Now returns bool, not int.
1778
1779         * lib/prepargs.c: Include <string.h>; required for C99 since
1780         we use strlen.
1781
1782         * lib/quotearg.c:
1783         BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
1784
1785         * lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
1786         diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
1787
1788         * m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
1789         Remove inttypes_h.m4, largefile.m4, mktime.m4.
1790
1791         * m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
1792         subsumed by Autoconf 2.50.
1793
1794         * m4/error.m4: Upgrade to serial 2.
1795
1796         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
1797         remove test for GNU C library.  It's not correct, as some
1798         older glibcs are buggy.
1799
1800         * m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
1801
1802         * m4/prereq.m4: Upgrade to serial 20, but then:
1803         (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
1804         (jm_PREREQ_EXCLUDE): New macro.
1805         (jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
1806         by autoconf 2.5x.
1807
1808         * m4/realloc.m4: Upgrade to serial 4.
1809
1810         * m4/strerror_r.m4: Revert to serial 1002.
1811
1812         * m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
1813
1814         * m4/utimes.m4: Upgrade to latest version (still "serial 3").
1815
1816         * m4/xstrtoumax.m4: Upgrade to serial 3, but then:
1817         (jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
1818         it is now subsumed by autoconf.  Add inttypes.h.
1819
1820         * po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
1821         po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
1822
1823         * src/buffer.c (new_volume): Stop if the script exits with an error.
1824
1825         * src/common.h (excluded_with_slash, excluded_without_slash):
1826         Remove, replacing by:
1827         (excluded): New decl.
1828         (link_error): New decl.
1829         (excluded_name): Now returns bool.
1830
1831         * src/extract.c:
1832         (struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
1833         Support hard links to symbolic links.
1834
1835         (struct delayed_symlink): Remove 'names' member, replacing it with
1836         'sources' and 'target' member.  All uses changed.
1837
1838         (struct string_list): New type.
1839
1840         (delayed_set_stat, extract_archive): Use offsetof when computing sizes
1841         for struct hack; this avoids wasted space in some cases.
1842
1843         (extract_archive): Fix test for absolute pathnames and/or "..".
1844         Use link_error to report errors for links.
1845         Remove redundant trailing '/' at "really_dir", for all uses, not
1846         just before invoking mkdir.
1847         If overwriting old files, do not worry so much about existing
1848         directories.
1849         Fix mode computation in the case where the directory exists.
1850
1851         (apply_delayed_symlinks): If we can't make a hard link to a symbolic
1852         link, make a copy of the symbolic link.
1853
1854         * src/incremen.c (get_directory_contents):
1855         If ignore_failed_read_option, only warn about
1856         stat failures.
1857
1858         * src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
1859         However, check for error even for '-' or '+' case.
1860
1861         (print_header): Try parsing uids and gids as unsigned integers first,
1862         and as a uid_t or gid_t only if that fails.  This adds support for
1863         listing positive uids and gids that are greater than UID_MAX and
1864         GID_MAX.
1865
1866         * src/misc.c (link_error): New function.
1867
1868         * src/names.c (collect_and_sort_names):
1869         If ignore_failed_read_option, only warn about
1870         stat errors.
1871
1872         (excluded_name): Now returns bool.  Simplify, as the fancy
1873         features are now all in excluded_filename.
1874
1875         * src/rtapelib.c (base_name): Remove decl, as system.h now
1876         declares it.
1877
1878         * src/system.h: Include stddef.h if available.
1879         (offsetof): Declare if stddef.h doesn't.
1880
1881         Include <dirname.h>.
1882         (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
1883
1884         * src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
1885         NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
1886         NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
1887         WILDCARDS_MATCH_SLASH_OPTION):
1888         New enum values.
1889
1890         (long_options, usage, decode_options): Add support for --anchored,
1891         --ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
1892         --no-wildcards-match-slash, --recursion, --wildcards,
1893         --wildcards-match-slash.
1894
1895         (decode_options): Implement the new way of interpreting exclude
1896         patterns.
1897
1898         (usage): --newer-mtime takes a DATE operand.  DATE may be a file name.
1899
1900         (OPTION_STRING, decode_options): Add -I, -y.  Currently these options
1901         just print error messages suggesting alternatives.
1902
1903         (add_filtered_exclude): Remove.
1904
1905         * tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
1906
1907         * tests/extrac04.sh (out): Remove
1908         directory/subdirectory/file1, as the new semantics for
1909         --exclude exclude it.
1910
1911         * tests/genfile.c (main): Don't use non-ASCII char in msgid.
1912
1913 2001-08-12  Paul Eggert  <eggert@twinsun.com>
1914
1915         * lib/addext.c (<errno.h>): Include.
1916         (errno): Declare if not defined.
1917         (addext): Work correctly on the Hurd, where pathconf returns -1 and
1918         leaves errno alone, because there is no limit.  Also, work even if
1919         size_t is narrower than long.
1920
1921 2001-07-08  Paul Eggert  <eggert@twinsun.com>
1922
1923         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
1924
1925 2001-05-10  Paul Eggert  <eggert@twinsun.com>
1926
1927         * lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
1928         Include <backupfile.h> and <dirname.h> after size_t is defined.
1929         (addext): Use base_len to trim redundant trailing slashes instead of
1930         doing it ourselves.
1931
1932         * lib/backupfile.c (ISSLASH, base_name):
1933         Remove decls; now in dirname.h.
1934         Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
1935         is defined.
1936         (find_backup_file_name): Rename locals to avoid new functions.
1937         Use base_len instead of rolling it ourselves.
1938         Work even if dirlen is 0.
1939         Use a dir of '.' if given the empty string.
1940
1941         * lib/basename.c:
1942         Do not include <stdio.h>, <assert.h>; no longer needed.
1943         (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
1944         Include <string.h>, <dirname.h>.
1945         (base_name): Allow file names ending in slashes, other than names
1946         that are all slashes.  In this case, return the basename followed
1947         by the slashes.
1948
1949         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
1950         (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
1951         (dir_len): Renamed from dirlen.
1952         All callers changed.
1953
1954         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
1955         New macros.
1956         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
1957
1958 2001-02-16  Paul Eggert  <eggert@twinsun.com>
1959
1960         * lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
1961         Do not declare or define if HAVE_MBRTOWC,
1962         since the test for HAVE_MBRTOWC now requires proper declarations.
1963
1964         * lib/alloca.c (malloc): Undef before defining.
1965
1966 2001-02-13  Paul Eggert  <eggert@twinsun.com>
1967
1968         * src/compare.c (read_and_process): Use off_t for size.
1969         From Maciej W. Rozycki.
1970
1971 2001-01-26  Paul Eggert  <eggert@twinsun.com>
1972
1973         * lib/quotearg.c: Include stddef.h.  From Jim Meyering.
1974
1975 2001-01-12  Paul Eggert  <eggert@twinsun.com>
1976
1977         * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
1978
1979         * lib/savedir.h (savedir): Remove size arg.
1980
1981         * doc/tar.texi: Add @setchapternewpage odd.
1982         Remove -I as an alias for -T, for now.
1983         Add @dircategory.
1984         Update copyright.  Remove "Published by".
1985         Dates beginning with / or . are taken to be file names.
1986
1987         * src/tar.c (<time.h>): Do not include;
1988         (time): Do not declare.
1989         (usage): Remove -I as an alias for -T.
1990         (OPTION_STRING): Remove -I.
1991         (decode_options): Dates that look like an absolute path name,
1992         or that start with '.', are presumed to be file names whose
1993         dates are taken.
1994         Remove 'I' as an aliase for 'T'.
1995         Update copyright.
1996
1997         * src/extract.c (<time.h>): Do not include; system.h now does this.
1998         (make_directories): Skip filesystem prefixes.
1999         Don't assume '/' is the only separator.
2000         (extract_sparse_file): Use new full_write semantics.
2001         On write error, return instead of invoking skip_file.
2002         Do not free sparsearray; caller does this now.
2003         (apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
2004         separator.
2005         (extract_archive): Don't assume file name lengths fit in int.
2006         Report what got stripped from member name; it might be more than '/'.
2007         Use new full_write semantics.
2008         Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
2009         mkdir to ignore it.
2010         Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
2011
2012         * src/buffer.c (<time.h>): Do not include; system.h now does this.
2013         (time): Remove decl; likewise.
2014         (child_open_for_uncompress): Use new full_write semantics.
2015         (flush_write): Use ISSLASH instead of testing for '/'.
2016         (flush_read): Likewise.
2017
2018         * src/rmt.h (_remdev): Look for / anywhere in Path.
2019
2020         * src/misc.c (contains_dot_dot): Skip filesystem prefix.
2021         Don't assume '/' is the only separator.
2022         (safer_rmdir): Don't assume '/' is the only separator.
2023
2024         * src/compare.c (diff_archive): Don't assume '/' is the only separator.
2025
2026         * lib/dirname.h (dirlen): New decl.
2027
2028         * src/incremen.c (get_directory_contents):
2029         Remove path_size arg; all callers changed.
2030         Don't assume '/' is the only directory separator.
2031         (gnu_restore): Work even if file name length doesn't fit in int.
2032
2033         * lib/addext.c (ISSLASH): New macro.
2034         (addext): Trim any redundant trailing slashes.
2035
2036         * src/names.c (name_next):
2037         Don't assume '/' is the only directory separator.
2038         (namelist_match): Likewise.
2039         (add_hierarchy_to_namelist): Remove dirsize arg.
2040         Do not assume '/' is the only directory separator.
2041         (new_name): Likewise.
2042
2043         * lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
2044         (libtar_a_SOURCES): Add dirname.c.
2045
2046         * src/create.c (relativize):
2047         New function, with much of old start_header's guts.
2048         Handle filesystem prefixes.
2049         (start_header): Use this new function.
2050         (init_sparsearray): Don't bother to zero out the new array;
2051         it's not needed.
2052         (deal_with_sparse): Fix array allocation bug.
2053         (create_archive): Don't assume '/' is the only separator.
2054         (dump_file): Likewise.
2055         Don't worry about leading / in symlink targets.
2056
2057         * lib/savedir.c (savedir):
2058         Remove size arg; it wasn't portable.  All callers changed.
2059
2060         * lib/utime.c (utime_null): Adjust to new full_write convention.
2061
2062         * configure.in (YACC): Avoid portability problem with Ultrix sh.
2063
2064         * lib/backupfile.c: Include <dirname.h>.
2065         (ISSLASH): New macro.
2066         (find_backup_file_name): Use dirlen to calculate directory lengths.
2067         (max_backup_version): Strip redundant trailing slashes.
2068
2069         * src/common.h: Include <full-write.h>.
2070         (get_directory_contents): No longer has size arg.
2071         (gnu_restore): Arg is size_t, not int.
2072
2073         * src/system.h: Include <time.h>.
2074         (time): Declare if not defined.
2075
2076         * lib/full-write.c: Include full-write.h, not safe-read.h.
2077         full_write returns size_t, with short writes meaning failure.
2078         All callers changed.
2079
2080         * src/rtapelib.c: Include full-write.h.
2081
2082         * src/rmt.c: Include full-write.h.
2083         (main): Update copyright.
2084
2085         * doc/getdate.texi: Mention that only English is supported.
2086         Show how to use "date" so that the output is acceptable to getdate.
2087         Mention Z as an abbreviation for UTC.
2088
2089         * lib/full-write.h: New file.
2090
2091         * src/list.c: system.h now does time.h stuff.
2092
2093         * lib/dirname.c:
2094         Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
2095         stdlib.h.
2096         Do not include string.h, strings.h, or assert.h; no longer needed.
2097         (strrchr, memrchr, malloc): Remove decls; no longer needed.
2098         Include <xalloc.h>.
2099         (base_name): New decl.
2100         (BACKSLASH_IS_PATH_SEPARATOR): Remove.
2101         (dir_name_r): Remove.
2102         (dirlen): New function.
2103         (dir_name): Use dirlen instead of dir_name_r.
2104         (<string.h>, <strings.h>): Include only if test program.
2105         (main): Use "return 0", not "exit (0)".
2106
2107 2000-12-08  Paul Eggert  <eggert@twinsun.com>
2108
2109         * lib/dirname.h: New file.
2110
2111 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
2112
2113         * lib/fnmatch.c: Do not comment out all the code if we are using
2114         the GNU C library, because in some cases we are replacing buggy
2115         code in the GNU C library itself.
2116
2117 2000-10-30  Paul Eggert  <eggert@twinsun.com>
2118
2119         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
2120
2121 2000-10-29  Paul Eggert  <eggert@twinsun.com>
2122
2123         * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
2124
2125         * src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
2126
2127 2000-10-28  Paul Eggert  <eggert@twinsun.com>
2128
2129         * doc/tar.texi: --no-recursion now applies to extraction, too.
2130         * src/create.c (dump_file): no_recurse_option -> ! recursion_option
2131         * src/names.c (namelist_match, excluded_name):
2132         Do not match subfiles of a directory
2133         if --no-recursion is specified.
2134         * src/tar.c (NO_RECURSE_OPTION): Remove.
2135         (long_options): Have getopt set the --no-recursion flag.
2136         (decode_options): Initialize recursion_option to FNM_LEADING_DIR.
2137         Remove case for NO_RECURSE_OPTION.
2138         * src/common.h (recursion_option):
2139         Renamed from no_recurse_option, with sense
2140         negated, and with FNM_LEADING_DIR being the nonzero value.
2141
2142         * names.c (namelist_match): New function.
2143         (name_match, name_scan): Use it to eliminate duplicate code.
2144         (names_notfound): Remove special case for Amiga.
2145
2146 2000-10-27  Paul Eggert  <eggert@twinsun.com>
2147
2148         * src/misc.c (read_error_details, read_warn_details,
2149         read_fatal_details): Don't assume size_t is unsigned long.
2150
2151         * src/buffer.c (flush_read): If read_full_records_option, try to
2152         fill the input buffer, as --delete -f - needs this.
2153
2154 2000-10-24  Paul Eggert  <eggert@twinsun.com>
2155
2156         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
2157
2158         * src/buffer.c (check_label_pattern):
2159         Make sure header name is a string before
2160         passing it to fnmatch.
2161         (init_volume_number): Check for global_volno overflow.
2162         (new_volume): Check for global_volno overflow.
2163
2164         * src/tar.c (decode_options):
2165         Check that volume label is not too long to overflow
2166         name in tar header block.
2167
2168         * Makefile.am (EXTRA_DIST): Remove rebox.el.
2169
2170         * configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
2171         (AC_FUNC_STRERROR_R): Use this instead.
2172
2173 2000-10-23  Paul Eggert  <eggert@twinsun.com>
2174
2175         * src/extract.c: Include <time.h>, since we invoke "time".
2176
2177         * lib/prepargs.c (prepend_default_options):
2178         Don't use NULL, for portability.
2179
2180         * m4/fnmatch.m4: Add "working" to message.
2181
2182         * src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
2183         Include <hash.h>.
2184         (getpwuid, getgrgid): Declare only if system headers don't.
2185         (gid_to_gname): Don't invoke setgrent.
2186         (namelist): Now static, not global.
2187         (nametail): New var.  All uses of namelast changed to use
2188         nametail, with one extra level of indirection.
2189         (name_gather): Use memcpy instead of strncpy + assignment of NUL.
2190         (name_match): Set nametail too, when setting namelist to null.
2191         (add_hierarchy_to_namelist): Change type of dir arg from char * to
2192         struct name *, so that we don't have to look up the name again
2193         here.  Get change_dir from dir rather than as a separate arg.  Add
2194         dirsize arg, and pass it along to get_directory_contents.  Remove
2195         unnecessary check of directory type.
2196         (new_name): Do not append a slash if PATH already ends in one.
2197         (avoided_names, struct avoided_name): Remove.
2198         (avoided_name_table): New var, replacing avoided_names.
2199         (hash_avoided_name, compare_avoided_names): New function.
2200         (add_avoided_name, is_avoided_name): Use hash table rather than
2201         linked list.
2202
2203         * src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
2204         (child_open_for_compress, child_open_for_uncompress,
2205         close_archive): Propagate any failure of the compression process
2206         back to "tar".
2207         (open_archive, flush_write, flush_read, close_archive): Do not
2208         allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
2209         -1.  Instead, allocate an array with the size that's needed.
2210         (open_archive): Don't bother checking S_ISCHR of /dev/null.
2211         (backspace_output): Don't try to backspace past start of archive.
2212         (close_archive): Remove special case for DELETE_SUBCOMMAND.
2213
2214         * acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
2215         DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
2216         HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
2217         HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
2218         PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
2219         WITH_DMALLOC, WITH_REGEX):
2220         Remove; now generated automatically.
2221
2222         * configure.in (_GNU_SOURCE): Define to empty, not 1, for
2223         compatibility for glibc fragments.
2224         (_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
2225         HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
2226         DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
2227         that we needn't put an entry into acconfig.h.
2228         (ALL_LINGUAS): Add da.
2229         (AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
2230         (AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
2231         (for strtol.c).
2232         (AC_MBSTATE_T): Add.
2233         (RMT): Append $(EXEEXT).
2234         (HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
2235         (HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
2236         HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
2237         HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
2238         (jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
2239         (AC_REPLACE_FUNCS): Remove execlp; no longer needed.
2240         (AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
2241         Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
2242         (EMUL_OPEN3): Remove; no longer needed.
2243         (DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
2244
2245         * m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
2246
2247         * src/common.h: Do not include basename.h.
2248         * src/rtapelib.c (base_name): Do not include basename.h;
2249         declare base_name instead.
2250
2251         * lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
2252         Remove these files.
2253         * lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
2254         lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
2255         * lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
2256         Adjust to the above changes.
2257
2258         * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
2259
2260         * src/open3.c: Remove.
2261
2262         * src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
2263         (tar_SOURCES): Remove open3.c.
2264         (INCLUDES): Remove -I.., as automake does that.
2265         (OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h.  Add localedir.h.
2266
2267         The following changes are to put LOCALEDIR into localedir.h instead
2268         of passing it on the command line.
2269         (DEFS): Remove.
2270         (DISTCLEANFILES): New macro.
2271         (localedir.h): New rule.
2272         (rmt.o tar.o): Now depend on localedir.h.
2273
2274         * tests/delete02.sh, tests/extrac04.sh: New files.
2275
2276         * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
2277         (TESTS): Add extrac04.sh, and restore delete02.sh.
2278         (DEFS): Remove; LOCALEDIR is now done via localedir.h.
2279         (INCLUDES): Remove -I.. as automake does this now.
2280
2281         * src/rtapelib.c (rexec): Don't declare unless using it.
2282         (do_command): Simplify signal-handling code slightly.
2283
2284         * src/delete.c (blocks_needed): Remove.  All uses changed to use
2285         blocking_factor - new_blocks.
2286         (acting_as_filter): New var.
2287         (write_record, delete_archive_members): Use acting_as_filter
2288         rather than archive == STDIN_FILENO to detect whether we're acting
2289         as a filter, as open can return STDIN_FILENO in some cases.
2290         (delete_archive_members): Ignore zero blocks if
2291         ignore_zeros_option is nonzero.  Fix bug that messed up last
2292         output block: write_eot can't be used here, as it gets confused
2293         when the input is at end of file.
2294
2295         * src/compare.c (diff_archive): Do not impose an arbitrary limit on
2296         symbolic link contents length.  Pass directory size to
2297         get_directory_contents.
2298
2299         * m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
2300         m4/strerror_r.m4: New files.
2301         * m4/signedchar.m4: Remove this file.
2302         * Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
2303         * m4/Makefile.am (EXTRA_DIST): Likewise.
2304
2305         * Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
2306
2307         * po/da.po: New translation file.
2308
2309         * src/mangle.c (extract_mangle):
2310         Fix diagnostic with wrong number of %s'es.
2311
2312         * lib/fnmatch.c (fnmatch):
2313         Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
2314         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
2315
2316         * lib/full-write.c (full_write): Some buggy drivers return 0 when you
2317         fall off a device's end.  Detect this.
2318
2319         * src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN.  All
2320         uses changed.
2321         (open): Remove macro; we no longer support EMUL_OPEN3.  Do not
2322         include <pathmax.h> and directory include files like <dirent.h>;
2323         no longer used.  Include <savedir.h> instead.
2324         (closedir, signed_char): remove macro; no longer used.
2325         (bool, false, true): Include <stdbool.h> if you have the include
2326         file, otherwise define.
2327
2328         * src/misc.c:
2329         (is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
2330         opendir_warn, readdir_error): Remove; no longer needed.
2331         (safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
2332         before deciding whether we're trying to remove ".".
2333         (remove_any_file): Try unlink first if we are not root.  Use
2334         savedir when recursively removing directories, to avoid exhausting
2335         file descriptors.
2336         (savedir_error, savedir_warn, symlink_error): New functions.
2337
2338         * src/list.c: (read_and): Do not invoke
2339         apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
2340         responsible for that.  Do not invoke apply_delayed_set_stat; our
2341         caller is now responsible for that.
2342         (read_header): Use signed char instead of signed_char.  Prevent
2343         later references to current_header from mistakenly treating it as
2344         an old GNU header.
2345         (from_header): Quote invalid base-64 strings in diagnostics.
2346         (time_from_header): Do not warn about future timestamps in
2347         archive; check_time now does that.
2348         (print_header): Quote unknown file types.
2349         (skip_member): New function, replacing skip_extended_headers and
2350         now skipping the whole member instead of just the extended
2351         headers.  All callers changed.  This makes the code handle
2352         extended headers uniformly, and fixes some bugs.
2353
2354         * src/update.c (update_archive): Use skip_member.
2355
2356         * src/extract.c (we_are_root): Now global.
2357         (struct delayed_symlink): New type.
2358         (delayed_symlink_head): New var.
2359         (extr_init, fatal_exit): Invoke extract_finish on fatal errors,
2360         not apply_delayed_set_stat.
2361         (set_mode, set_stat): Pointer args are now const pointers.
2362         (check_time): New function.
2363         (set_stat): Warn if setting a file's timestamp to be the future.
2364         (make_directories): Do not save and restore errno.
2365         (maybe_recoverable): Set errno to ENOENT if we cannot make missing
2366         intermediate directories.
2367         (extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
2368         not in caller.  Extract potentially dangerous symbolic links more
2369         carefully, deferring their creation until the end, and using a
2370         regular file placeholder in the meantime.  Do not remove trailing
2371         / and /. from file names.  Do not bother checking for ".." when
2372         checking whether a directory loops back on itself, as loopbacks
2373         can occur with symlinks too.  Also, in that case, do not bother
2374         saving and restoring errno; just set it to EEXIST.
2375         (apply_nonancestor_delayed_set_stat): A prefix is a potential
2376         ancestor if it ends in slash too (as well as ending in a char just
2377         before slash).
2378         (apply_delayed_set_stat): Remove.
2379         (apply_delayed_symlinks, extract_finish): New functions.
2380
2381         * doc/fdl.texi: New file.
2382         * doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
2383         ($(srcdir)/tar.info): Add fdl.texi.  Invoke makeinfo with --no-split.
2384         * doc/tar.texi: Add Free Documentation License.  New section
2385         "Overwrite Old Files", and revamp that section to make it easier to
2386         follow.  "tar" -> "GNU tar" where appropriate.  Migrate getdate
2387         documentation into getdate.texi.  Fix several minor typos.  Describe
2388         TAR_OPTIONS.  Describe incompatibility between incremental backups and
2389         --atime-preserve.  Describe incompatibility between --verify and other
2390         options.  Mention that tar normally removes symbolic links rather than
2391         following them, when extracting a file of the same name.
2392
2393         * THANKS: Add gpoul.  Change skip's address.
2394
2395         * po/POTFILES.in: Add lib/human.c.
2396
2397         * src/common.h (namelist, namelast): Remove decls.
2398         (we_are_root, extract_finish, skip_member, savedir_error,
2399         savedir_warn, symlink_error, gnu_list_name): New decls.
2400         (apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
2401         skip_extended_headers, is_dot_or_dotdot, closedir_error,
2402         closedir_warn, opendir_error, opendir_warn, readdir_error,
2403         readdir_warn): Remove decls.
2404         (get_directory_contents): New off_t arg.
2405         (addname): Now returns struct name *.
2406
2407         * src/tar.h, tests/genfile.c: Fix comments.
2408
2409         * src/create.c: Include hash.h.
2410         (gnu_list_name): Remove decl.
2411         (struct link): Remove "next" member.
2412         (linklist): Remove.
2413         (start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
2414         consistency with other diagnostics.
2415         (deal_with_sparse): Check for I/O error when closing the file.
2416         (create_archive): Do not allocate an array of size PATH_MAX, as
2417         PATH_MAX might be (size_t) -1.  Instead, allocate an array with
2418         the size that's needed.
2419         (hash_link, compare_links): New functions.
2420         (dump_file): Do not exhaust open file descriptors when descending
2421         deeply into a directory, by using savedir rather than
2422         opendir/readdir.  Do not zero-fill the name buffer unnecessarily.
2423         Hash the set of links already created, instead of using a linked
2424         list.  Fix some bugs in outputting sparse files which caused the
2425         sparse tables to be incorrect.  When a file unexpectedly shrinks,
2426         output zeros rather than garbage.  Do not allocate an array of
2427         size PATH_MAX, as PATH_MAX might be (size_t) -1.  Instead,
2428         allocate an array with the size that's needed.
2429
2430         * src/incremen.c: Include hash.h.
2431         (struct directory): Remove "next", "dir_text".  Change "name" to
2432         be char[1] with struct hack, not const char *.  Add "found".
2433         (directory_list): Remove.  Replaced by directory_table.
2434         (directory_table): New var.
2435         (nfs_string): Renamed from nfs.
2436         (hash_directory, compare_directories): New functions.
2437         (note_directory): Now returns struct directory *.  First arg is
2438         now const pointer.  struct stat arg is now dev_t, ino_t, nfs.
2439         Remove text arg.  New "found" arg, basically corresponding to the
2440         old text arg not being null.  All callers changed.
2441         (note_directory, find_directory): Use hash table rather than
2442         linked list.
2443         (get_directory_contents): New arg "device".  Use savedir to do the
2444         hard work.  Save the nfs-ness of stat_data, since it might change
2445         under us.  Use note_directory instead of find_directory to save
2446         some work.  When adding an "A" record, do it with
2447         add_to_accumulator instead of cheating with strcat.
2448         (read_directory_file): Use "+" flag before device to indicate
2449         whether it was NFS.  Fix typo in checking for strtoul error.
2450         (write_directory_file_entry): New function.
2451         (write_directory_file): Use it, and use the hash routines to
2452         traverse the directory table.
2453         (gnu_restore): Use savedir rather than opendir/readdir.
2454
2455         * src/tar.c: Include localedir.h, prepargs.h.
2456         (long_options): Now static.
2457         (long_options, usage, decode_options): -j is now short for
2458         --bzip2, and -I is now an alias for -T.
2459         (decode_options, main): argv is not const pointer now.
2460         (decode_options): Invoke prepend_default_options to support
2461         TAR_OPTIONS.  In diagnostic, mention the string that was the
2462         invalid blocking factor, tape length, group, owner, or record
2463         size.  --delete is no longer incompatible with -f -, undoing
2464         2000-01-07 change.
2465         (main): Invoke extract_finish at end of extraction.
2466
2467         * src/rmt.c: Include localedir.h.
2468         (main): Update copyright date to 2000.
2469
2470         * doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
2471         following changes: Use @sc where appropriate.  Document the ranges of
2472         supported times more precisely.  Add Eggert to getdate authors.
2473         Document old Latin 12m/12pm tradition.  Remove list of alphabetic time
2474         zone names, as it wasn't correct and people shouldn't be relying on it
2475         anyway.  Relative items also account for non-DST adjustments.  Fix
2476         some misspellings.
2477
2478         * lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
2479
2480         * tests/ignfail.sh: opendir -> savedir in diagnostics.
2481
2482         * tests/preset.in: Set LANGUAGE to the empty string, for some
2483         brain damaged host.
2484
2485 2000-10-20  Paul Eggert  <eggert@twinsun.com>
2486
2487         * m4/fnmatch.m4: Mention the GNU C library.
2488
2489 2000-10-19  Paul Eggert  <eggert@twinsun.com>
2490
2491         * m4/fnmatch.m4: Add a couple more test cases to catch bugs in
2492         glibc 2.1.95.
2493
2494 2000-10-17  Paul Eggert  <eggert@twinsun.com>
2495
2496         * lib/human.c (<limits.h>): Do not include; human.h does it if needed.
2497         (CHAR_BIT): Remove.
2498
2499         * lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
2500         (CHAR_BIT): Define if not defined.
2501
2502 2000-09-09  Paul Eggert  <eggert@twinsun.com>
2503
2504         * lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
2505
2506 2000-08-07  Paul Eggert  <eggert@twinsun.com>
2507
2508         * lib/xmalloc.c: Memory exhausted -> memory exhausted
2509
2510         * lib/xalloc.h (xalloc_msg_memory_exhausted):
2511         change to array from char *.
2512
2513 2000-08-06  Paul Eggert  <eggert@twinsun.com>
2514
2515         * m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
2516         compatibility with glibc 2.1.3 strftime.c.
2517
2518 2000-07-31  Paul Eggert  <eggert@twinsun.com>
2519
2520         * lib/quotearg.c (quotearg_n_options):
2521         Don't make the initial slot vector a constant,
2522         since it might get modified.
2523
2524         * lib/quotearg.c: Add support for more than one preallocated slot.
2525
2526 2000-07-30  Paul Eggert  <eggert@twinsun.com>
2527
2528         * lib/quotearg.c (quotearg_n_options):
2529         Preallocate a slot 0 buffer, so that the caller
2530         can always quote one small component of a "memory exhausted" message
2531         in slot 0.
2532
2533 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2534
2535         * lib/quotearg.c:
2536         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
2537         mbstate_t is always defined.
2538
2539         Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
2540         some GCC installations, and this configuration error is likely to be
2541         common.
2542
2543 2000-07-22  Paul Eggert  <eggert@twinsun.com>
2544
2545         * lib/quotearg.c:
2546         When the system forces us to redefine mbstate_t, shadow its mbsinit
2547         function.  From Bruno Haible.
2548
2549 2000-07-14  Paul Eggert  <eggert@twinsun.com>
2550
2551         * lib/xmalloc.c: Simplify exhausted message.
2552
2553         * lib/quotearg.h: Update copyright date; from Jim Meyering.
2554
2555 2000-07-13  Paul Eggert  <eggert@twinsun.com>
2556
2557         * lib/quotearg.h (enum quoting style):
2558         New constant clocale_quoting_style.
2559
2560         * lib/quotearg.c:
2561         (quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
2562         Add support for clocale_quoting_style, undoing previous change to
2563         locale_quoting_style.
2564
2565 2000-07-10  Paul Eggert  <eggert@twinsun.com>
2566
2567         * lib/quotearg.c:
2568         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
2569         since otherwise we don't need it.
2570         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
2571         since we don't do multibytes in that case.
2572         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
2573         invoke multibyte primitives.
2574
2575         * m4/mbstate_t.m4 (AC_MBSTATE_T):
2576         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
2577         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
2578         and mbstate_t, to a single-part test that simply defines mbstate_t.
2579
2580         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
2581         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
2582         to decide whether to define the BeOS workaround macro;
2583         this adjusts to the change to AC_MBSTATE_T.
2584
2585         * m4/strerror_r.m4: New file.
2586
2587 2000-07-05  Paul Eggert  <eggert@twinsun.com>
2588
2589         * lib/quotearg.c: Use double-quote to quote.
2590
2591         * lib/quotearg.c (N_): New macro.
2592         (gettext_default): New function.
2593         (quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
2594         "\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
2595         for right quote.
2596
2597         * lib/quotearg.c (struct quoting_options):
2598         Simplify quote_these_too dimension.
2599         From Bruno Haible  <haible@clisp.cons.org>.
2600
2601         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
2602         Test for mbstate_t only if the test
2603         for an object-type mbstate_t fails.
2604
2605         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
2606
2607 2000-07-03  Paul Eggert  <eggert@twinsun.com>
2608
2609         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
2610         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
2611
2612         * lib/quotearg.c (mbrtowc):
2613         Assign to *pwc, and return 1 only if result is nonzero.
2614         (iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
2615
2616 2000-07-02  Paul Eggert  <eggert@twinsun.com>
2617
2618         * lib/quotearg.c (mbstate_t):
2619         Do not define; it should be defined with AC_CHECK_TYPE.
2620
2621 2000-06-26  Paul Eggert  <eggert@twinsun.com>
2622
2623         * m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
2624         a bug in glibc 2.1.3.
2625
2626         * lib/xmalloc.c: Fix inaccorate comment for xrealloc.
2627
2628 2000-06-19  Paul Eggert  <eggert@twinsun.com>
2629
2630         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
2631         inclusion of wctype.h to work around solaris2.6 namespace pollution.
2632         (ISPRINT): Likewise.
2633         Reported by Tom Tromey.
2634
2635 2000-06-15  Paul Eggert  <eggert@twinsun.com>
2636
2637         * lib/human.c (adjust_value): New function.
2638         (human_readable_inexact): Apply rounding style even when printing
2639         approximate values.
2640
2641         * lib/human.c: Avoid shadowing warnings.
2642         From Jim Meyering.
2643
2644 2000-06-14  Paul Eggert  <eggert@twinsun.com>
2645
2646         * lib/human.c (human_readable_inexact): Allow an input block size
2647         that is not a multiple of the output block size, and vice versa.
2648
2649         * lib/getdate.y (get_date): Apply relative times after time zone
2650         indicator, not before.
2651
2652 2000-05-31  Paul Eggert  <eggert@twinsun.com>
2653
2654         * m4/largefile.m4: Rewrite so that we don't need to run getconf,
2655         and thus don't need AC_CANONICAL_HOST.
2656
2657         (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
2658         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
2659         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
2660         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.  All uses
2661         changed.  Instead of inspecting the output of getconf, try to
2662         compile the test program without and with the macro definition.
2663         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
2664         getconf.  Instead, check for the needed flags by compiling test
2665         programs.
2666
2667         * configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
2668         longer needs it.
2669         * config.guess, config.sub: Remove these files, for similar reasons.
2670
2671 2000-05-03  Paul Eggert  <eggert@twinsun.com>
2672
2673         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
2674         500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
2675         bug.  This avoids a clash when files like regex.c that define
2676         _GNU_SOURCE.
2677
2678 2000-05-02  Paul Eggert  <eggert@twinsun.com>
2679
2680         * m4/largefile.m4 (AC_SYS_LARGEFILE):
2681         Define _GNU_SOURCE if this is needed to make
2682         ftello visible (e.g. glibc 2.1.3).  Use compile-time test, rather than
2683         inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
2684
2685         * lib/quotearg.c (mbrtowc, mbstat_t):
2686         Add definitions if !HAVE_MBSTATE_T_OBJECT.
2687         (<wctype.h>): Include if HAVE_WCTYPE_H.
2688         (iswprint): Define to 1 if we lack it
2689
2690 2000-04-18  Paul Eggert  <eggert@twinsun.com>
2691
2692         * m4/mbstate_t.m4: New file.
2693
2694 2000-04-17  Bruno Haible  <haible@clisp.cons.org>
2695
2696         * tests/ignfail.sh: Test for uid 0 along with user "root".
2697
2698 2000-04-05  Paul Eggert  <eggert@twinsun.com>
2699
2700         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
2701         Don't use -n32 on IRIX if the installer said
2702         otherwise.
2703
2704 2000-02-28  Paul Eggert  <eggert@twinsun.com>
2705
2706         * lib/quotearg.c (ALERT_CHAR): New macro.
2707         (quotearg_buffer_restyled): Use it.
2708
2709 2000-02-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2710
2711         * src/list.c (tartime): Fix off-by-one error when copying year if
2712         OLD_CTIME.
2713
2714 2000-02-18  Paul Eggert  <eggert@twinsun.com>
2715
2716         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
2717         (textint): New typedef.
2718         (parser_control): Changed from struct parser_control to typedef
2719         (for consistency).  Member year changed from int to textint.  All
2720         uses changed.
2721         (YYSTYPE): Removed; replaced by %union with int and textint
2722         members.
2723         (tID): Removed; not used.
2724         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
2725         tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
2726         tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
2727         (tSNUMBER, tUNUMBER): Now of type <textintval>.
2728         (date, number, to_year): Use width of number in digits, not its
2729         value, to determine whether it's a 2-digit year, or a 2-digit
2730         time.
2731         (yylex): Store number of digits of numeric tokens.  Return '?' for
2732         unknown identifiers, rather than (unused) tID.
2733
2734 2000-01-16  Paul Eggert  <eggert@twinsun.com>
2735
2736         * lib/quotearg.c (quotearg_buffer_restyled):
2737         Do not quote alert, backslash, formfeed,
2738         and vertical tab unnecessarily in shell quoting style.
2739
2740 2000-01-15  Paul Eggert  <eggert@twinsun.com>
2741
2742         * m4/c-bs-a.m4:
2743         Change quoting to be compatible with future autoconf versions.
2744
2745 2000-01-11  Paul Eggert  <eggert@twinsun.com>
2746
2747         * lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
2748
2749 2000-01-07  Paul Eggert  <eggert@twinsun.com>
2750
2751         * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
2752
2753         Fix bug with fnmatch.h dependency, as follows:
2754         * src/Makefile.am (OMIT_DEPENDENCIES): New macro.
2755         * lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
2756
2757         * src/common.h (apply_nonancestor_delayed_set_stat):
2758         Renamed from apply_delayed_set_stat.
2759         (apply_delayed_set_stat, decode_mode, chmod_error_details,
2760         chown_error_details, close_warn, closedir_warn, mkdir_error,
2761         read_error_details, read_fatal_details, read_warn_details,
2762         seek_error_details, seek_warn_details, utime_error,
2763         write_error_details, write_fatal_details): New decls.
2764
2765         Make diagnostic messages more regular.
2766         * src/create.c (dump_file): Quote file names with colons if possible.
2767         * src/compare.c (diff_archive): Likewise.
2768         * src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
2769         * src/incremen.c (get_directory_contents, gnu_restore): Likewise.
2770         * src/mangle.c (extract_mangle): Likewise.
2771         * src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
2772         Likewise.
2773         * src/buffer.c (archive_write_error, flush_archive, close_archive,
2774         new_volume, xclose):
2775         Use error message functions to report errors consistently.
2776         * src/compare.c (diff_sparse_files, diff_archive): Likewise.
2777         * src/create.c (finish_sparse_file, dump_file): Likewise.
2778         * src/extract.c (set_mode, set_stat, extract_sparse_file,
2779         extract_archive): Likewise.
2780         * src/list.c (list_archive): Likewise.
2781         * src/update.c (append_file): Likewise.
2782         * src/compare.c (diff_init, diff_sparse_files):
2783         Use xalloc_die to report memory exhaustion.
2784         * src/incremen.c (gnu_restore): Likewise.
2785         * src/list.c (read_header): Likewise.
2786         * src/mangle.c (extract_mangle): Likewise.
2787         * src/misc.c (maybe_backup_file): Likewise.
2788         * src/tar.c (decode_options): Likewise.
2789         * src/compare.c (read_and_process, fill_in_sparse_array,
2790         diff_sparse_files):
2791         Use consistent terminology for unexpected-EOF message.
2792         * src/extract.c (extract_sparse_file, extract_archive): Likewise.
2793         * src/list.c (list_archive, read_header, skip_file,
2794         skip_extended_headers): Likewise.
2795         * src/buffer.c (archive_write_error): Add noreturn attribute to decl.
2796         (xdup2): Regularize messages with rest of tar.
2797
2798         * src/buffer.c (flush_read): Don't read past EOF.
2799
2800         * src/extract.c (extr_init):
2801         If we run out of memory, invoke apply_delayed_set_stat.
2802         (prepare_to_extract): Don't complain if we can't remove ".".
2803         (apply_delayed_set_stat): New function.
2804         (apply_nonancestor_delayed_set_stat):
2805         Renamed from apply_delayed_set_stat.  All uses changed.
2806         Don't remove head if it doesn't apply.
2807
2808         * src/create.c (find_new_file_size):
2809         Return size instead of storing through pointer.
2810         All callers changed.
2811         (deal_with_sparse): Don't keep reading after read errors.
2812         (finish_sparse_file): Just abort if there is an internal error.
2813         (dump_file): Fix typo: stat_warn and stat_error were interchanged.
2814         Don't restore access times on directories during incremental dumps
2815         until after dealing with the directory.
2816         If ignoring failed reads, count closedir, read, and unknown
2817         file errors as warnings, not errors.
2818         Fix buffer overrun problem when dumping sparse files.
2819
2820         * src/list.c (read_and):
2821         Invoke apply_nonancestor_delayed_set_stat on file names
2822         after handling them.
2823         (decode_mode): Remove; moved to misc.c.
2824
2825         * src/misc.c (safer_rmdir): New function.
2826         (remove_any_file): Use it to avoid problems with rmdir(".").
2827         (maybe_backup_file): Regularize diagnostics.
2828         (undo_backup_file): Likewise.
2829         (decode_mode): Moved here from list.c.
2830         (chmod_error_details, chown_error_details, close_fatal,
2831         close_warn, closedir_warn, mkdir_error, read_error_details,
2832         read_warn_details, read_fatal_details, seek_error_details,
2833         seek_warn_details, utime_error, write_error_details,
2834         write_fatal_details): New functions.
2835
2836         * src/delete.c (save_record): Remove static variable (now local).
2837         (move_archive): Don't position before start of archive.
2838         (write_record): Abort if count is zero at inopportune time.
2839         Plug memory leak.
2840
2841         * src/tar.c (decode_options): --delete and -f - are now
2842         incompatible, since we didn't have time to fix their bugs.
2843
2844         * tests/Makefile.am (TESTS): Remove delete02.sh.
2845         * tests/ignfail.sh: Adjust to new quoting scheme again.
2846
2847 2000-01-06  Paul Eggert  <eggert@twinsun.com>
2848
2849         * lib/getdate.y: Sync tm_diff with the GNU C Library.
2850         (TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN.  All uses changed.
2851         (tm_diff): Renamed from difftm.  All uses changed.
2852         Replace body with that taken from GNU C Library 2.1.3pre1.
2853         (get_date): Prefer tm_gmtoff to tm_diff if available.
2854
2855 1999-12-29  "Melissa O'Neill"  <oneill@cs.sfu.ca>
2856
2857         * tests/incremen.sh: Invoke stat on newly created file so that its
2858         ctime is updated on Nextstep.
2859
2860 1999-12-21  Machael Stone  <mstone@cs.loyola.edu>
2861
2862         * lib/getdate.y (get_date):
2863         Fix typo when checking for time_t overflow in time zone calculations.
2864
2865 1999-12-13  Paul Eggert  <eggert@twinsun.com>
2866
2867         * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
2868
2869         * README-alpha: New file.
2870         * README: New sections for gzip and bzip2, Solaris.
2871         Remove mention of BACKLOG.
2872
2873         * configure.in (AC_C_BACKSLASH_A): Add.
2874         (AC_CHECK_HEADERS): Add wchar.h.
2875         (AC_CHECK_FUNCS): Add mbrtowc.
2876         (AC_FUNC_CLOSEDIR_VOID): Add.
2877
2878         * tests/Makefile.am (TESTS): Add delete02.sh.
2879         (POSTPONED_TESTS): Remove.
2880         (EXTRA_DIST): Remove $(POSTPONED_TESTS).
2881
2882         * tests/preset.in:
2883         Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
2884
2885         * tests/ignfail.sh (err): Adjust to new quoting scheme.
2886
2887         * tests/delete02.sh: Fix typo: need to list archive2, not archive.
2888
2889         * tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
2890
2891         * src/tar.c ("quotearg.h"): New include.
2892         (usage): Now has __attribute__ ((noreturn)).
2893         (confirm): Report errno if we can't open tty.
2894         (confirm, decode_options):
2895         Quote arbitrary strings in diagnostics.
2896         (OVERWRITE_OPTION): New constant.
2897         (long_options, usage, decode_options): New --overwrite option.
2898         (decode_options): --keep-old-files, --overwrite, and --unlink-first
2899         are now mutually exclusive.
2900         Don't assume that gettext preserves errno.
2901         (main): Set default quoting style to escape_quoting_style.
2902
2903         * src/update.c (<quotearg.h>): New include.
2904         (append_file):
2905         Don't assume that gettext preserves errno.
2906         Quote arbitrary strings in diagnostics.
2907         Check for close error.
2908
2909         * src/names.c (<quotearg.h>): New include.
2910         (name_init, name_next, name_close, names_notfound,
2911         collect_and_sort_names): Don't assume that gettext preserves
2912         errno.  Quote arbitrary strings in diagnostics.
2913         (excluded_name): Fix typo that caused empty patterns to be
2914         mishandled.
2915
2916         * src/misc.c (<quotearg.h>): New include.
2917         (quote_copy_string): Quote only newline and backslash; the output is no
2918         longer meant for humans, and is locale-independent.
2919         (contains_dot_dot): New function.
2920         (remove_any_file): Don't use lstat; just rmdir the file and then use
2921         unlink if the rmdir fails because the file isn't a directory.
2922         Check for readdir and closedir errors.
2923         (maybe_backup_file): Report "stat" for stat errors.
2924         (maybe_backup_file, chdir_do):
2925         Quote arbitrary strings in diagnostics.
2926         (maybe_backup_file, undo_last_backup):
2927         Don't assume that gettext preserves errno.
2928         (call_arg_error, call_arg_fatal, call_arg_warn,
2929         chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
2930         mknod_error, open_error, open_fatal, open_warn, opendir_error,
2931         opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
2932         readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
2933         stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
2934         write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
2935
2936         * src/system.h (__attribute__): New macro.
2937         (O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
2938         (S_ISDOOR): New macro.
2939         (closedir): New macro, if CLOSEDIR_VOID.
2940
2941         * src/rmt.c, src/rtapelib.c (decode_oflag):
2942         O_APPEND might not be defined.
2943
2944         * src/list.c: (read_and, list_archive):
2945         Quote arbitrary strings in diagnostics.
2946         (from_header): Use locale_quoting_style to quote diagnostics.
2947         (print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
2948
2949         * src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
2950
2951         * src/Makefile.am: Use ## for copyright comments.
2952
2953         * src/extract.c (<quotearg.h>): New include.
2954         (enum permstatus): New enum.
2955         (struct delayed_set_stat): file_name is now at end of buffer, to avoid
2956         two mallocs.  New members file_name_len, invert_permissions, permstatus.
2957         (extr_init): Remove hack that silently adjusted newdir_umask.
2958         (set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
2959         Use these args to decide whether and how to set modes.
2960         (set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
2961         Don't assume that gettext preserves errno.
2962         (set_stat): Remove arg symlink_flag; subsumed by typeflag.
2963         (delay_set_stat, repair_delayed_set_stat): New functions.
2964         (make_directories): Avoid mkdir where last part of path is "..".
2965         Create a struct delayed_set_stat for each directory made.
2966         (prepare_to_extract): Renamed from unlink_destination, and
2967         return 0 immediately if to_stdout_option; all callers changed.
2968         (maybe_recoverable): New parameter interdir_made.
2969         Add support for --overwrite.
2970         (extract_sparse_file, extract_archive):
2971         Quote arbitrary strings in diagnostics.
2972         (extract_archive): By default, warn about ".." in member names, and skip them.
2973         Don't open files with O_NONBLOCK or O_APPEND.
2974         Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
2975         overwriting them.  Pass only rwxrwxrwx permissions to `open' and `mkdir',
2976         minus the current umask.  Keep track of intermediate directories made,
2977         to avoid looping when making x/../x when x doesn't exist; the
2978         earlier code solved this in a different way that didn't fit well
2979         into the new scheme.  Don't extract permissions onto existing
2980         directories unless --overwrite is given.  Do not add -wx------
2981         permissions to new directories permanently; just do it temporarily.
2982         Remove no-longer-needed hack with MSDOS and directory time stamps.
2983         (apply_delayed_set_stat): New argument specifies which directories to
2984         fix statuses of.  Do not wait until the end of extraction to fix
2985         statuses; instead, fix a directory's status once we exit that directory.
2986         This requires less memory and does the right thing in some cases
2987         where the old method didn't.
2988         (fatal_exit): New function.
2989
2990         * src/incremen.c (<quotearg.h>): New include.
2991         (get_directory_contents, gnu_restore):
2992         Check for readdir and closedir errors.
2993         (get_directory_contents, read_directory_file, gnu_restore):
2994         Quote arbitrary strings in diagnostics.
2995         (get_directory_contents, read_directory_file, write_directory_file):
2996         Don't assume that gettext preserves errno.
2997
2998         * src/create.c (<quotearg.h>): New include.
2999         (start_header): Use `member names' to refer to archive member names, not
3000         `archive names'.  Warn about `..' in member names.
3001         (finish_sparse_file, dump_file):
3002         Quote arbitrary strings in diagnostics.
3003         (finish_sparse_file, dump_file):
3004         Don't assume that gettext preserves errno.
3005         (dump_file): Don't use `access' to determine whether a directory is readable;
3006         this isn't reliable if tar is setuid.  Use `opendir' instead.
3007         Check for readdir and closedir failures.
3008         Don't dump sockets as if they were fifos; just warn and skip.
3009
3010         * src/delete.c (move_archive):
3011         Don't report fatal error merely because sizes don't fit
3012         into struct mtop values; fall back on lseek instead.
3013         Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
3014         Say `reposition' instead of `re-position'.
3015         (delete_archive_members):
3016         Set archive to STDOUT_FILENO before outputting trailing buffer.
3017
3018         * src/compare.c (<quotearg.h>): New include.
3019         (diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
3020         and `Cannot' others.
3021         (report_difference, diff_archive):
3022         Quote arbitrary strings in diagnostics.
3023         (process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
3024         Don't assume that gettext preserves errno.
3025         (diff_archive): Don't open regular files with O_NONBLOCK.
3026         Preserve access times of files if --atime.
3027
3028         * src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
3029         (FATAL_ERROR, USAGE): Don't return 0.
3030         (enum old files): New enum.
3031         (old_files_option): New variable, replacing keep_old_files_option and
3032         unlink_first_option.
3033         (apply_delayed_set_stat): Now takes char const * param.
3034         (fatal_exit, contains_dot_dot, chdir_fatal, close_error,
3035         closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
3036         open_fatal, open_warn, opendir_error, opendir_warn, read_error,
3037         read_fatal, readdir_error, readdir_warn, readlink_error,
3038         readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
3039         truncate_error, truncate_warn, unlink_error, waitpid_error,
3040         write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
3041
3042         * src/buffer.c:
3043         (xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
3044         archive_write_error, archive_read_error, flush_archive, close_archive,
3045         init_volume_number, new_volume):
3046         Don't assume that gettext preserves errno.
3047
3048         (xdup2): Don't report errno if dup returns an unexpected nonnegative value.
3049         (open_archive): Reject multivolume verify attempts a bit earlier.
3050         Rename local variable `access', in case it's defined by system header.
3051
3052         (open_archive, backspace_output): Use `Cannot' uniformly, instead of
3053         `Could not' sometimes and `Cannot' others.
3054
3055         (open_archive, flush_read, flush_archive, close_archive, new_volume):
3056         Quote arbitrary strings in diagnostics.
3057
3058         (read_error): Set archive to STDOUT_FILENO temporarily when writing
3059         archive buffer.
3060
3061         (init_volume_number): Check for input and output errors in volno_file.
3062
3063         (new_volume): Use new fatal_exit function to exit, and new xfork
3064         function to fork.
3065
3066         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
3067
3068         * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
3069
3070         * doc/tar.texi: Add --overwrite.
3071         --absolute-names rejects ".." in names.
3072
3073         * lib/quotearg.c: Add support for multibyte characters.
3074         (ISGRAPH): Remove.
3075         (ISPRINT): New macro.
3076         (<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
3077         (isprint, mbrtowc, mbsinit, mbstate_t): New macros,
3078         defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
3079         (quotearg_buffer_restyled): New function, with most of the old
3080         quotearg_buffer's contents.
3081         Major rewrite to support multibyte characters.
3082         (quotearg_buffer): Now just calls quotearg_buffer_restyled.
3083
3084         * m4/c-bs-a.m4: New file.
3085
3086         * lib/Makefile.am: Use ## for copyright notice.
3087
3088         * scripts/Makefile.am: Use ## on copyright notice.
3089
3090         * doc/Makefile.am:
3091         ($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
3092
3093 1999-12-05  Paul Eggert  <eggert@twinsun.com>
3094
3095         * doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
3096         src/ChangeLog, tests/ChangeLog: Remove these files.
3097         * ChangeLog.1: New file, incorporating the above files, plus old
3098         ChangeLog entries.
3099         * Makefile.am (EXTRA_DIST): Add ChangeLog.1.
3100
3101 1999-12-05  Dale Worley  <worley@ariadne.com>
3102
3103         * src/compare.c (<utime.h>, struct utimbuf): Add.
3104         (diff_archive): Restore access times if --atime.
3105         * doc/tar.texi: Explain that --atime also preserves modification time.
3106
3107 1999-12-04  Gerhard Poul  <gpoul@gnu.org>
3108
3109         * ABOUT-NLS: Update to latest version from ftp.gnu.org.
3110         * BACKLOG, TODO: Remove.
3111         * Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
3112         * README: Bring up to date.
3113
3114 1999-12-03  Paul Eggert  <eggert@twinsun.com>
3115
3116         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
3117
3118         * src/compare.c (diff_archive):
3119         Do not set errno to EPIPE; we no longer use perror.
3120
3121         * src/create.c (dump_file):
3122         If a parent directory said that a file should be there but it is
3123         absent, diagnose it as being removed in the meantime.
3124         Do not pass meaningless errno to ERROR when reporting that the
3125         file changed as we read it.
3126         Report that a file changed if its ctime changes; this is more
3127         sensitive than mtime+size, and more accurate.
3128
3129         * src/incremen.c (enum children): New type.
3130         (struct directory): Change old char allnew member to new enum children
3131         children member.
3132         All uses changed.
3133         (get_directory_contents): When doing an incremental dump that does
3134         not cross filesystem boundaries, dump the mount points, even though
3135         they are in a different filesystem.  This is for convenience when
3136         restoring, and for consistency with non-incremental dumps.
3137         This requires a 3-way flag for keeping track of which children we want,
3138         so we use enum children rather than boolean.
3139
3140         * src/open3.c (modes): Remove.
3141         (open3): Remove unportable assumptions about flag encodings.
3142         Use `stat' instead of `access' for testing file existence,
3143         to avoid problems with setuid programs.
3144
3145         * src/names.c (name_next): If file names are given both in the
3146         command line (e.g. via -C) and in a file (via -T), do not
3147         ignore the command-line names.
3148
3149         * m4/uintmax_t.m4: Backport to autoconf 2.13.
3150
3151         * doc/tar.texi: Clarify getdate authorship.
3152
3153 1999-11-23  Paul Eggert  <eggert@twinsun.com>
3154
3155         * lib/Makefile.am (DISTCLEANFILES): New macro.
3156
3157         * configure.in (tar_fnmatch_hin):
3158         Remove; it runs afoul of a bug in autoconf 2.13.
3159         Instead, always link fnmatch.h to some file, even if it's a throwaway.
3160
3161 1999-11-19  Paul Eggert  <eggert@twinsun.com>
3162
3163         * m4/largefile.m4: Update serial.
3164
3165 1999-11-18  Paul Eggert  <eggert@twinsun.com>
3166
3167         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
3168         the QNX shell, which doesn't propagate exit status of failed
3169         commands inside shell assignments.
3170
3171 1999-11-07  Paul Eggert  <eggert@twinsun.com>
3172
3173         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
3174
3175         * configure.in (AC_PREREQ): Bump to 2.13.
3176         (ALL_LINGUAS): Add pt_BR, ja.
3177         (AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
3178         (tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
3179         for AIX crossbuilds.
3180
3181         * doc/tar.texi: New node create options for --ignore-failed-read.
3182         Remove unused version control symbols.
3183         Modernize texinfo usage.
3184
3185         * src/tar.c (usage): Add examples.
3186
3187         * m4/fnmatch.m4 (AC_FUNC_FNMATCH):
3188         Include fnmatch.h when testing fnmatch.
3189
3190         * src/common.h (collect_and_sort_names): New decl.
3191
3192         * src/list.c (from_header):
3193         Handle 32-bit two's complement negative time stamps
3194         even if the leading octal digit is 2 or 3.
3195
3196         * src/extract.c (set_stat): Remove duplicate code.
3197
3198         * src/create.c (to_chars): Remove trailing newline from warning.
3199         (dump_file): Ignore doors.
3200         (finish_header): Report block numbers with origin 0, not origin 1.
3201
3202         * src/rmt.c: Include getopt.h.
3203         (long_opts): New constant.
3204         (usage): New function.
3205         (main): Implement --help and --version.
3206         Output usage message if arguments are bad.
3207
3208 1999-10-10  Paul Eggert  <eggert@twinsun.com>
3209
3210         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
3211
3212         * README: Remove --with-dmalloc.
3213         Add --disable-largefile.
3214         Remove old NeXT dirent problems, or AIX valloc problems.
3215         Remove old union wait advice, and old %lld advice.
3216         Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
3217
3218         * doc/tar.texi: Clarify documentation for portable file names.
3219
3220         * configure.in (AM_WITH_DMALLOC): Remove.
3221         (ALL_LINGUAS): Add ja.
3222
3223         * src/tar.c (decode_options):
3224         Invalid dates are now treated as (time_t) -1.
3225         Redo version message to conform to GNU standards.
3226
3227         * src/create.c (dump_file):
3228         Fix typo: last two args to dump_file were interchanged.
3229         * src/update.c (update_archive): Likewise.
3230
3231         * src/common.h (tartime): New decl.
3232
3233         * src/list.c (tartime): Now extern.
3234         (read_and): Invalid headers cause errors, not warnings.
3235
3236 1999-10-03  Paul Eggert  <eggert@twinsun.com>
3237
3238         * lib/getdate.y (__attribute__):
3239         Don't use if GCC claims to be before 2.8; this is
3240         needed for OPENStep 4.2 cc.  Also, don't use if strict ANSI.
3241
3242 1999-09-25  Paul Eggert  <eggert@twinsun.com>
3243
3244         * lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
3245         * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
3246
3247         * tests/incremen.sh: Add yet another sleep.
3248
3249 1999-09-24  Paul Eggert  <eggert@twinsun.com>
3250
3251         * NEWS: A read error now causes a nonzero exit status.
3252
3253         * src/create.c (to_chars): Fix base-256 output.
3254
3255         * src/buffer.c (write_error):
3256         Read error is an error, not just a warning.
3257
3258 1999-09-24  Paul Eggert  <eggert@twinsun.com>
3259
3260         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
3261
3262         * src/tar.c (<time.h>): Include.
3263         (time): Declare if not defined.
3264         (confirm): Don't read past EOF.
3265         (long_options, usage): Add --no-same-owner, --no-same-permissions.
3266         (main): Use clock_gettime if available.
3267
3268         * tests/Makefile.am (TESTS): Add incremen.sh
3269         (INCLUDES): Add -I../lib, for fnmatch.h.
3270
3271         * src/update.c (update_archive):
3272         Remove call to name_expand; had no effect.
3273         Use chdir_do to change into directory.
3274         Use deref_stat instead of stat.
3275         Use add_avoided_name to mark names to be avoided; the old method of
3276         setting a bit with the name caused all descendants of that name to
3277         be avoided, in some circumstances.
3278
3279         * tests/incremen.sh: Remove unnecessary sleeps.
3280
3281         * src/names.c (name_next): Go back to using plain chdir.
3282         (name_gather): Use chdir_arg to keep track of arguments to chdir.
3283         (addname): Likewise.
3284         (name_match): Use chdir_do to act on chdir args.
3285         (merge_sort): Moved here from incremen.c.
3286         (compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
3287         Likewise.
3288         (name_expand): Remove.
3289         (name_from_list): Skip fake names.
3290         Use chdir_do to act on chdir args.
3291         (struct avoided_name): New struct.
3292         (avoided_names): New var.
3293         (add_avoided_name, is_avoided_name): New functions.
3294
3295         * src/system.h (stat, lstat): Define in terms of statx on
3296         STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
3297         (UCHAR_MAX): New macro.
3298         (TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
3299
3300         * m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
3301
3302         * src/incremen.c (<time.h>): Remove include; no longer used.
3303         (time): Remove decl.
3304         (time_now): Remove.
3305         (get_directory_contents): Use deref_stat.
3306         Consider a subdirectory to be all new only if
3307         listed_incremental_option or if it its timestamp is newer than the
3308         cutoff.
3309         (add_hierarchy_to_namelist, merge_sort): Move to names.c.
3310         (read_directory_file): Now extern.  Do not set time_now.
3311         (write_directory_file): Renamed from write_dir_file.
3312         Use start_time instead of time_now.
3313         (compare_names, collect_and_sort_names): Move to names.c.
3314
3315         * src/mangle.c (<time.h>): Remove; not used.
3316         (time): Do not declare.
3317
3318         * src/misc.c (chdir_from_initial_wd): Remove.
3319         (deref_stat): New function.
3320         (struct wd): New struct.
3321         (wd, wds, wd_alloc): New variables.
3322         (chdir_arg, chdir_do): New function.
3323
3324         * src/compare.c (get_stat_data): Use deref_stat.
3325
3326         * src/common.h (name_expand): Remove.
3327
3328         * src/list.c (time): Declare if not defined.
3329         (base_64_digits): Moved here from create.c.
3330         (base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
3331         -1.
3332         (read_and): Don't get time from header unless we need it now;
3333         as getting time can cause duplicate diagnostics if bogus.
3334         Remove "Hmm, " from diagnostic.
3335         Use "Skipping to next header" uniformly.
3336         (from_header): Renamed from from_chars.  All uses changed.
3337         Allow different forms for unportable 2's complement numbers.
3338         Don't check for extended forms when parsing checksums.
3339         Parse base-256 output.
3340         (gid_from_header): Renamed from gid_from_chars.  All uses changed.
3341         (major_from_header): Renamed from major_from_chars.  All uses changed.
3342         (minor_from_header): Renamed from minor_from_chars.  All uses changed.
3343         (mode_from_header): Renamed from mode_from_chars.  All uses changed.
3344         (off_from_header): Renamed from off_from_chars.  All uses changed.
3345         (size_from_header): Renamed from size_from_chars.  All uses changed.
3346         (time_from_header): Renamed from time_from_chars.  All uses changed.
3347         Warn about future timestamps.
3348         (uid_from_header): Renamed from uid_from_chars.  All uses changed.
3349         (uintmax_from_header): Renamed from uintmax_from_chars.
3350         All uses changed.
3351         (tartime): New function, incorporating isotime.
3352         (isotime): Delete.
3353         (print_header): Use tartime.
3354
3355         * src/create.c (to_chars): Fix typo in decl.
3356         Don't assign through char const *.
3357         Rename name_expand back to collect_and_sort_names.
3358
3359         * src/extract.c (<time.h>): No need to include.
3360         (time): No need to declare.
3361         (now): Remove variable.
3362         (extr_init): Don't initialize `now'.
3363         Increment same_permissions_option and same_owner_option if we_are_root
3364         is nonzero; this supports the new --no-same-owner option.
3365         (set_stat): Use start_time instead of `now'.
3366
3367         * src/create.c (struct link): Remove unused linkcount member.
3368         (base_64_digits): Move to list.c.
3369         (base_8_digits): Remove.
3370         (to_octal): New function, with some of old contents of to_base.
3371         (to_base): Remove.
3372         (to_base256): New function.
3373         (to_chars): Use base 256, not base 64, for huge values.
3374         (mode_to_chars): Don't use two's complement in GNU format or POSIX
3375         format.
3376         (dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
3377         it means we have an incremental dump where we don't know whether this
3378         is a top-level call.
3379         Use deref_stat instead of statx / stat / lstat.
3380         Cast result of alloca.
3381         Check for dates if 0 < top_level, not if listed_incremental_option.
3382         Move multiple-link check after directory check.
3383         Do not dump avoided names.
3384         Dump hard links to symbolic names as links, not as separate
3385         symbolic links.
3386         start_header cannot return a null pointer, so don't test for it.
3387         Likewise for find_next_block.
3388
3389         * src/buffer.c, src/common.h (<human.h>): Include.
3390         (read_error): Read error is an error, not just a warning.
3391         (print_total_written): Also print human-readable byte count, and
3392         bytes/s.
3393         (open_archive, flush_write): Use start_time, not current time.
3394         (flush_read): Report about garbage bytes ignored at end of archive,
3395         but act on non-garbage bytes (instead of ignoring them).
3396         (new_volume): Use WARN for warnings.
3397
3398         * doc/Makefile.am:
3399         ($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
3400
3401         * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
3402
3403         * m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
3404
3405         * lib/Makefile.am (noinst_HEADERS):
3406         Rename fnmatch.h to fnmatch.hin; add human.h.
3407         (libtar_a_SOURCES): Add human.c, xstrtoul.c.
3408         (INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
3409
3410         * src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
3411
3412         * lib/fnmatch.c (strchrnul):
3413         Define to __strchrnul if _LIBC, to our own replacement otherwise.
3414         Do not define if !_LIBC and if it already exists.
3415         (internal_fnmatch): Use it.
3416
3417         * configure.in (tar_LDADD): New variable, used only when linking tar.
3418         (rmt_LDADD): Similarly, for rmt.
3419         (AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
3420         fnmatch.c; otherwise, use the system fnmatch.h.
3421
3422         * doc/tar.texi: Add --no-same-owner, --no-same-permissions.
3423         Modernize sample backup script.
3424
3425         * THANKS: Martin Goik's email address has changed.
3426
3427         * m4/fnmatch.m4: New file.
3428
3429 1999-09-03  Paul Eggert  <eggert@twinsun.com>
3430
3431         * lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
3432         Use EINVAL instead.
3433
3434 1999-08-29  Paul Eggert  <eggert@twinsun.com>
3435
3436         * lib/getdate.y (get_date):
3437         Rename outermost local `probe' to `quarter'.
3438         Rename latter local `tm' to probe_tm.
3439         From: Jim Meyering <meyering@ascend.com>
3440         Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
3441
3442 1999-08-28  Paul Eggert  <eggert@twinsun.com>
3443
3444         * lib/getdate.y (PC): New macro; use it when possible.
3445         (number): Handle `Nov 11 1996' example correctly.
3446         See Risks Digest 20.55 (1999-08-27)
3447         http://catless.ncl.ac.uk/Risks/20.55.html#subj18
3448
3449 1999-08-23  Paul Eggert  <eggert@twinsun.com>
3450
3451         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
3452
3453         Remove minor cases of lint from many source files: this includes
3454         unnecessary casts, uses of NULL, etc.
3455
3456         * configure.in (AC_PROG_YACC): Remove.
3457         (YACC): Always use bison.
3458         (AC_STRUCT_TIMEZONE): Add.
3459         (AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
3460
3461         * doc/tar.texi: --bzip2 is now -I.  Remove obsolete time zone info.
3462         Fix spelling.
3463
3464         * lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
3465         ($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
3466
3467         * lib/strcasecmp.c, lib/strncasecmp.c: New files.
3468
3469         * src/common.h (merge_sort): Remove decl; no longer exported.
3470
3471         * src/system.h (voidstar): Remove.
3472         (memcpy, memcmp): Cast args.
3473         ("xalloc.h"): Add include.
3474         (xmalloc, xrealloc): Remove decl.
3475
3476         * src/mangle.c (time): Do not declare if defined.
3477         (first_mangle, mangled_num): Remove.
3478
3479         * src/list.c (from_chars): Report out-of-range values more precisely.
3480         (off_from_chars): Do not allow negative offsets.
3481         (uid_from_chars): Allow negative uids.
3482
3483         * src/create.c (linklist): Now static.
3484         (to_chars): Fix wording of message to match from_chars.
3485
3486         * src/misc.c (merge_sort): Move to incremen.c.
3487         * src/incremen.c (merge_sort): Move here from misc.c; now static.
3488         It's too painful to make it both generic and portable.
3489         (read_directory_file): "timestamp" -> "time stamp" in messages.
3490
3491         * src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
3492         (usage): Fix misspelling.
3493         (OPTION_STRING): -y is now -I.
3494         (decode_options): Use -1, not EOF, for getopt_long result.
3495         Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
3496         Handle operands after any "--" argument.
3497         (main): Report any output errors.
3498
3499         * src/rmt.c (main): status is ssize_t, not long.
3500
3501         * src/names.c (name_gather): Handle trailing -C option correctly.
3502         (addname): use memcpy, not strncpy, to copy a string of known length.
3503         (name_match): Handle trailing -C option correctly.
3504         Propagate -C option to following files.
3505         (name_match, name_scan): Remove redundant matching code.
3506
3507         * src/buffer.c (open_archive): Use American spelling in diagnostic.
3508
3509         * lib/getdate.y: Major rewrite.  Add copyright notice.
3510         (<stdio.h>): Include only if testing.
3511         (ISUPPER): Remove.
3512         (ISLOWER): New macro.
3513         (<string.h>): Include if HAVE_STRING_H, not USG.
3514         (bcopy): Remove.
3515         (yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
3516         bison.
3517         (EPOCH_YEAR): Renamed from EPOCH.
3518         (table): Renamed from TABLE.
3519         (meridian): Now an anonymous enum.
3520         (struct parser_control): New type.
3521         (YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
3522         (yyInput, ..., yyRelYear): Migrated into struct parser_control.
3523         (%pure_parser): Added, so that the parser is pure.
3524         (%union): Removed; the type is now just plain int.
3525         All %type directives removed.
3526         (tLOCAL_ZONE): New %token.
3527         (month_day_table): Renamed from MonthDayTable.
3528         (gmtime, localtime, mktime, time): Declare only if not defined.
3529         (meridian_table): New table.
3530         (dst_table): New table.
3531         (units_table): renamed from UnitsTable.
3532         (relative_time_table): Renamed from OtherTable.
3533         (time_zone_table): Renamed from TimezoneTable.  Modernized.
3534         (military_table): Renamed from MilitaryTable.
3535         (to_hour): Renamed from ToHour.
3536         (to_year): Renamed from ToYear.
3537         (lookup_zone): New function.
3538         (LookupWord): Renamed from lookup_word.  Use lookup_zone for time
3539         zones.
3540         (yylex): Now reentrant.  All callers changed.
3541         (get_date): Add support for local time zone abbreviations.
3542         Make it reentrant.
3543
3544 1999-08-20  Paul Eggert  <eggert@twinsun.com>
3545
3546         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
3547
3548         * src/create.c (to_chars): Generate GNU base-64 representation
3549         if we are generating an old or new GNU format tar file for a
3550         number that can't be represented with the POSIX format.
3551
3552         * configure.in (AC_CHECK_FUNCS): Add fchdir.
3553         (AM_FUNC_GETLINE): Add.
3554         (LIBOBJS): Add getline.o to workaround comment.
3555         * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
3556         * m4/Makefile.am (EXTRA_DIST): Add getline.m4.
3557         * lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
3558         (libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
3559         * lib/getline.c, lib/getline.h, lib/save-cwd.c,
3560         lib/save-cwd.h, m4/getline.m4: New files.
3561
3562         * src/misc.c (<save-cwd.h>): Include.
3563         (chdir_from_initial_wd): New function.
3564
3565         * src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
3566         (name_gather): Handle `-C x -C y' correctly.
3567         Do not rely on addname to handle -C.
3568         (addname): New CHANGE_DIR parameter.  All callers changed.
3569         Remove ugly calls to getcwd; no longer needed.
3570         (name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
3571
3572         * src/incremen.c (listed_incremental_stream): New var.
3573         (read_directory_file): Remove arbitrary limits on file name length.
3574         Do not attempt to get the working directory; we can bypass this
3575         on fchdir hosts.  Open the listed_incremental_option file for both
3576         read and write instead of opening it twice.  Check for I/O errors
3577         when doing I/O to this file.  Check for invalid data in the file,
3578         and report line numbers of invalid data.
3579         (write_dir_file): Likewise.
3580         (collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
3581         Do not invoke write_dir_file; that's our caller's responsibility.
3582
3583         * src/list.c (max): New macro.
3584         (isotime): Now takes time_t, not time_t *.  Report the decimal values
3585         of times that can't be broken down.
3586         (print_header): Don't assume that major and minor device numbers can
3587         fit into uintmax_t.
3588
3589         * src/common.h (struct name): change_dir is now char const *.
3590         (write_directory_file): Remove unused decl.
3591         (STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
3592         chars; the old `sizeof (b)' broke when b was a pointer not an array.
3593         (chdir_from_initial_wd): New decl.
3594         (addname): New 2nd arg.
3595
3596         * THANKS: Torsten Lull -> Catrin Urbanneck
3597
3598 1999-08-18  Paul Eggert  <eggert@twinsun.com>
3599
3600         * configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
3601         Don't depend on ac_cv_func variables.
3602         From Albert Chin-A-Young <china@thewrittenword.com>.
3603
3604 1999-08-18  Paul Eggert  <eggert@twinsun.com>
3605
3606         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
3607
3608         * m4/signedchar.m4: New file.
3609         * configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
3610         * src/system.h (signed_char): New macro.
3611         * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
3612         * m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
3613
3614         * src/create.c (write_eot): Write at least two zero blocks.
3615
3616         * src/extract.c (extract_archive): Fix sparse array bug:
3617         we did not find end of array correctly.
3618
3619         * src/compare.c: (fill_in_sparse_array, diff_sparse_files):
3620         Don't assume find_next_block yields nonnull.
3621         * src/extract.c (extract_sparse_file, extract_archive): Likewise.
3622         * src/list.c (skip_extended_headers): Likewise.
3623
3624         * src/list.c (read_and, list_archive): Simplify code.
3625         (read_header): Fix computation of signed checksums on machines where
3626         char is unsigned.
3627         Do not consider a block to be zero unless all its bytes are zero,
3628         even the checksum bytes.  Do not attempt to parse the checksum of
3629         a zero block.  Fix memory leak with long names and links.
3630         (from_chars): Accommodate a buggy tar that outputs leading NUL
3631         if the previous field overflows.
3632
3633         * src/misc.c (quote_copy_string): Generate \177 for '\177', not
3634         \?, for portability to non-ASCII hosts.
3635
3636 1999-08-16  Paul Eggert  <eggert@twinsun.com>
3637
3638         * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
3639
3640         * src/extract.c (make_directories): Do not chown intermediate
3641         directories, even if we are root.
3642
3643         * src/list.c (read_header): Fix bugs when interpreting
3644         POSIX-compliant headers that do not contain null bytes in the
3645         header or link names.
3646
3647 1999-08-14  Paul Eggert  <eggert@twinsun.com>
3648
3649         * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
3650
3651         * configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
3652         (AC_HEADER_SYS_WAIT): Add.
3653         (AC_REPLACE_FUNCS): Add waitpid.
3654         (tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
3655         * lib/waitpid.c: New file.
3656         * lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
3657         * src/system.h (WCOREDUMP): Remove; no longer used.
3658         (WIFSTOPPED): Likewise.
3659         (WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
3660         * src/buffer.c (child_open_for_compress): Undo previous change.
3661         (close_archive): Use waitpid, POSIX-style, instead of old BSD style.
3662         (new_volume): Likewise.
3663
3664         * src/buffer.c, src/extract.c, src/incremen.c (time):
3665         Don't declare if defined.
3666         * src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
3667         * src/incremen.c (read_directory_file):
3668         Invoke `time' the same way everyone else does.
3669         Check validity of --listed-incremental file contents a bit better.
3670         Do not worry about --after-date-option; tar.c now checks this.
3671         * src/list.c (isotime): Report ??? if localtime returns null.
3672         Don't assume years fit into four digits.
3673         Don't append trailing newline.
3674         (print_header): Report ??? if localtime returns null;
3675         Don't assume years fit into four digits.
3676
3677         * src/compare.c (diff_archive): Do not fall back on absolute name
3678         when --absolute-names is not specified.
3679
3680         * src/create.c (start_header):
3681         Include text of ignored filesystem prefix in warning.
3682         (create_archive): Check for excluded names when doing incremental
3683         pass through directory.
3684         (dump_file): Do not dump old files explicitly given on command line
3685         when using --listed-incremental.  Do not strip ./ prefix from names.
3686
3687         * src/tar.c: -g now implies after_date_option = 1.
3688         -g and -N are now incompatible options.
3689
3690         * doc/tar.texi: Explain --exclude better.  Don't strip leading `./'.
3691
3692 1999-08-11  Jeff Dairiki  <dairiki@dairiki.org>
3693
3694         * src/list.c (read_header): Don't parse OLDGNU_FORMAT
3695         incremental headers as POSIX prefixes.
3696
3697 1999-08-11  Paul Eggert  <eggert@twinsun.com>
3698
3699         * NEWS, configure.in: Version 1.13.6.
3700
3701         * configure.in (ALL_LINGUAS): Add pt_BR.
3702         * po/pt_BR.po: New file.
3703
3704         * doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
3705         Renamed from tar.info and header.texi; adjust actions so that
3706         they work in other directories.
3707
3708         * doc/tar.texi: Add -y and --bzip2.
3709         Patterns containing / now exclude only file names whose prefix match.
3710
3711         * lib/exclude.h (excluded_filename): New option parameter.
3712         (add_exclude_file): New ADD_FUNC parameter.
3713         (excluded_pathname): Remove decl.
3714         * lib/exclude.c (_GNU_SOURCE):
3715         Remove; no longer needed since we don't use FNM_ macros.
3716         (excluded_filename): Renamed from excluded_filename_opts.
3717         (excluded_filename, excluded_pathname): Remove.
3718         (add_exclude_file): New ADD_FUNC parameter.
3719
3720         * po/POTFILES.in: Add lib/quotearg.c.
3721
3722         * src/buffer.c (_GNU_SOURCE): Define.
3723         (<fnmatch.h>): Include unconditionally.
3724         (child_open_for_compress): Dup after closing, to avoid possible file
3725         descriptor exhaustion.
3726         (flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
3727         (flush_read): Likewise.
3728
3729         * src/common.h (LG_8, LG_64): New macros.
3730         (excluded_with_slash, excluded_without_slash): New vars.
3731         (excluded): Remove.
3732         (base_64_digits): New decl.
3733         (gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
3734         off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
3735         uintmax_to_chars,
3736         GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
3737         OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
3738         UINTMAX_TO_CHARS):
3739         Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
3740         off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
3741         GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
3742         SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
3743         respectively.  All definitions and uses changed.
3744         (excluded_name): New decl.
3745
3746         * src/compare.c (diff_archive):
3747         Open files with O_NONBLOCK instead of O_NDELAY.
3748
3749         * src/create.c (base_64_digits): New constant.
3750         (base_8_digits): New macro.
3751         (MAX_VAL_WITH_DIGITS): New macro.
3752         (to_base): First half of old to_oct.  Support base 64 too.
3753         (to_chars): Other half of old to_oct, for 64-bit support.
3754         (GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
3755         (gid_substitute, uid_substitute): Look up names dynamically if
3756         GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
3757         (mode_to_chars): Renamed from mode_to_oct.
3758         Support negative values in all the _to_chars functions.
3759         (start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
3760         Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
3761         (dump_file): Inspect entire pathname, not just new file name
3762         component, when deciding whether to exclude it.
3763
3764         * src/extract.c (extract_archive):
3765         Open files with O_NONBLOCK instead of O_NDELAY.
3766
3767         * src/incremen.c (get_directory_contents):
3768         Inspect entire pathname, not just new file name
3769         component, when deciding whether to exclude it.
3770
3771         * src/list.c (<fnmatch.h>): Do not include.
3772         (from_chars): Renamed from from_oct.  New parameter specifying
3773         the negative of the minimum allowed value.  Support negative
3774         and base-64 values.
3775         (base64_map): New var.
3776         (base64_init): New function.
3777         (print_header): Output numeric uids and gids if numeric_owner_option.
3778
3779         * src/misc.c (quote_copy_string): Use LG_8 instead of constants.
3780
3781         * src/names.c (_GNU_SOURCE): Define.
3782         (<fnmatch.h>): Include unconditionally.
3783         (excluded_name): New function, taking over duties of excluded_pathname.
3784         All uses changed.
3785
3786         * src/rmt.c (decode_oflag): New function.
3787         (main): Use it to support symbolic open flags.
3788
3789         * src/rtapelib.c (encode_oflag): New function.
3790         (rmt_open__): Do not allow newlines in the path.
3791         Propagate errno correctly.
3792         Decode symbolic open flags, if present.
3793
3794         * src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
3795         New macros.
3796
3797         * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
3798         New -y or --bzip2 option.
3799         (add_filtered_exclude): New function.
3800         (decode_options): Put excluded patterns with / into
3801         excluded_with_slash, and without / into excluded_without_slash.
3802         Compare newer_mtime_option to its new initial value
3803         TYPE_MINIMUM (time_t) when deciding whether more than one
3804         threshold date was specified.
3805
3806 1999-07-20  Paul Eggert  <eggert@twinsun.com>
3807
3808         * NEWS, configure.in: Version 1.13.5.
3809
3810         * src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
3811         before exiting.
3812         * src/buffer.c (new_volume): Likewise.
3813         * src/incremen.c (read_directory_file): Likewise.
3814         * src/tar.c (decode_options):
3815         ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
3816         for consistency.
3817
3818         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
3819         * configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
3820
3821         * src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
3822         (S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
3823         (S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
3824         Define to 0 if the corresponding S_IF* macro is not defined.
3825         (mkfifo): Do not define if already defined, or if S_IFIFO
3826         is not defined.
3827
3828         * src/compare.c (diff_archive): Use HAVE_READLINK, not
3829         S_ISLNK, to determine whether to invoke readlink.
3830         * src/create.c (dump_file): Likewise.
3831
3832         * src/extract.c (set_mode):
3833         Do not chmod unless we are root or the -p option was given;
3834         this matches historical practice.
3835         (unlink_destination): New function, which checks for unlink failures.
3836         (maybe_recoverable): Stay quiet if -U.
3837         (extract_archive): Use O_EXCL if unlink_first_option.
3838         Report unlink failures.
3839         Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
3840         Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
3841         mkfifo exists.
3842
3843         * src/incremen.c (get_directory_contents): Depend on
3844         S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
3845
3846         * src/list.c: Remove S_IS* ifdefs.
3847         * src/misc.c (maybe_backup_file): Likewise.
3848
3849         * src/misc.c (maybe_backup_file):
3850         "Virtual memory exhausted" -> "Memory exhausted",
3851         to conform to the other places this message is issued.
3852
3853         * src/mangle.c (extract_mangle):
3854         Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
3855
3856         * src/rtapelib.c (rmt_open__):
3857         Remove typo that caused us to omit the first char
3858         of the basename.
3859
3860 1999-07-16  Paul Eggert  <eggert@twinsun.com>
3861
3862         * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
3863
3864         * doc/tar.texi: A path name is excluded if any of its file name
3865         components matches an excluded pattern, even if the path name was
3866         specified on the command line.
3867         * src/create.c (create_archive): Likewise.
3868         * src/list.c (read_and): Likewise.
3869         * src/update.c (update_archive): Likewise.
3870         * lib/exclude.h (excluded_pathname): New decl.
3871         * lib/exclude.c (_GNU_SOURCE): Define.
3872         (FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
3873         (excluded_filename_opts): New function.
3874         (excluded_pathname): New function.
3875
3876         * lib/Makefile.am (EXTRA_DIST):
3877         xstrtol.c moved here from libtar_a_SOURCES.
3878         (libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
3879         Remove xstrtoul.c; no longer needed.
3880         * lib/xstrtol.c: Remove.
3881
3882         * src/tar.c (decode_options):
3883         Set newer_time_option to TYPE_MINIMUM, so that
3884         negative timestamps are handled correctly.
3885         Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
3886         uniformity (and so that we don't need to have the other fns).
3887         (main): Remove call to init_total_written; no longer needed.
3888
3889         * configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
3890         checks for unsigned long and long long.
3891         * src/arith.c: Remove.
3892         * src/Makefile.am (tar_SOURCES): Remove arith.c.
3893         * po/POTFILES.in: Remove src/arith.c.
3894         * src/arith.h: Use double, to simplify configuration gotchas.
3895         (tarlong): Now double.
3896         (TARLONG_FORMAT): New macro.
3897         (BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
3898         LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
3899         zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
3900         add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
3901         zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
3902         mult_tarlong, print_tarlong): Remove.  All callers replaced with
3903         arithmetic ops.
3904
3905         * src/common.h (init_total_written): Remove decl.
3906
3907         * src/buffer.c (total_written):
3908         Remove; replaced with prev_written + bytes_written.
3909         (prev_written): New var.
3910         (init_total_written): Remove.
3911         (print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
3912
3913         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
3914         Make sure that we can shift, multiply
3915         and divide unsigned long long values; Ultrix cc can't do it.
3916
3917         * lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
3918         Check for any unknown bits, not just unknown bits left of the leftmost
3919         known bit.
3920
3921         * lib/quotearg.c (quotearg_buffer):
3922         Don't quote spaces if C quoting style.
3923         * src/list.c (from_oct):
3924         Use C quoting style for error; omit trailing NULs.
3925
3926 1999-07-14  Paul Eggert  <eggert@twinsun.com>
3927
3928         * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
3929
3930         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
3931         <inttypes.h> defines strtoumax as a macro (and not as a function).
3932         HP-UX 10.20 does this.
3933
3934         * src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
3935         * PORTS, README, TODO, doc/tar.texi: Likewise.
3936
3937 1999-07-12  Paul Eggert  <eggert@twinsun.com>
3938
3939         * configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
3940         (LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
3941
3942         * src/list.c (decode_header):
3943         Do not assume that S_IFBLK and S_IFCHR are defined.
3944
3945         * src/create.c (start_header): Do not assume S_IFMT is defined.
3946         (dump_file): Remove unnecessary check for screwy apollo lossage.
3947         Do not assume S_IFBLK and S_IFCHR are defined.
3948
3949         * src/extract.c (extract_archive):
3950         Test whether S_IFCHR and S_IFBLK are nonzero,
3951         not whether they are defined, for consistency with other tests.
3952
3953         * src/buffer.c (is_regular_file):
3954         Don't succeed on files that we can't access due to
3955         permissions problems.
3956         (open_archive): Fix wording on fatal error message.
3957         Don't bother to stat /dev/null if the archive is not a character
3958         special device.
3959
3960         * src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
3961         Report an error, not a warning, for I/O errors.
3962         (process_rawdata, process_dumpdir, diff_sparse_files):
3963         Change ungrammatical "Data differs" to "Contents differ".
3964         (get_stat_data): Find hidden files on AIX.
3965         Accept file name as argument; all uses changed.
3966         (get_stat_data, diff_archive): Use system error message for
3967         nonexistent files rather than rolling our own.
3968         (diff_archive): Unknown file types are errors, not warnings.
3969         Normalize spelling of message to "File type differs".
3970         Use get_stat_data to get link status, for consistency.
3971         Do not inspect st_rdev for fifos.
3972         Do not assume st_mode values contain only file types and mode bits.
3973         Check for mode changes and device number changes separately.
3974
3975         * src/update.c (append_file):
3976         Open the file before statting it, to avoid a race.
3977         Complain about file shrinkage only when we reach EOF.
3978
3979 1999-07-08  Paul Eggert  <eggert@twinsun.com>
3980
3981         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
3982
3983         * configure.in (AC_EXEEXT): Add.
3984
3985         * lib/Makefile.am (noinst_HEADERS):
3986         Add basename.h, exclude.h.  Remove full-write.h.
3987         (libtar_a_SOURCES): Add exclude.c.
3988
3989         * lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
3990         New files.
3991         * lib/full-write.c: Include safe-read.h instead of full-write.h.
3992         * lib/safe-read.h (safe_read): New decl.
3993         * src/rmt.c: Include safe-read.h.
3994         * src/rtapelib.c: Include basename.h, save-read.h.
3995         (rmt_open__): Use base_name to compute base name.
3996
3997         * src/common.h:
3998         Include basename.h, exclude.h; don't include full-write.h.
3999         (exclude_option): Remove decl.
4000         (excluded): New decl.
4001         (add_exclude, add_exclude_file, check_exclude): Remove decls.
4002
4003         * src/list.c (read_and):
4004         Use excluded_filename instead of check_exclude.
4005         Check base name of incoming file name, not entire file name, when
4006         deciding whether to exclude it.
4007
4008         * src/create.c (finish_sparse_file):
4009         Use excluded_filename instead of check_exclude.
4010         Don't bother to stat excluded file names.
4011         * src/incremen.c (get_directory_contents): Likewise.
4012
4013         * src/names.c (exclude_pool, exclude_pool_size,
4014         allocated_exclude_pool_size, simple_exclude_array,
4015         simple_excludes, allocated_simple_excludes,
4016         pattern_exclude_array, pattern_excludes,
4017         allocated_pattern_excludes, add_exclude, add_exclude_file,
4018         check_exclude):
4019         Remove; now done in ../lib/exclude.c.
4020
4021         * src/tar.c (decode_options): Initialize `excluded'.
4022         Use new add_exclude_file and add_exclude functions.
4023
4024 1999-07-05  Paul Eggert  <eggert@twinsun.com>
4025
4026         * m4/gettext.m4: Use changequote rather than [[ ]].
4027
4028         * lib/safe-read.c: Renamed from lib/full-read.c.
4029         (safe_read): Renamed from full_read.  All uses changed.
4030         * lib/safe-read.h, lib/full-write.h: New files.
4031         * lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
4032         (libtar_a_SOURCES): Rename full-read.c to safe-read.c.
4033         * lib/full-write.c: Include full-write.h.
4034         * src/common.h: Include full-write.h, safe-read.h.
4035         * src/system.h: (full_read, full_write): Remove decls.
4036
4037         * src/Makefile.am (datadir): New var; needed for Solaris gettext.
4038
4039         * src/system.h (bindtextdomain, textdomain): undef before
4040         defining, to avoid preprocessor warnings with --disable-nls
4041         on hosts whose locale.h includes libintl.h.
4042
4043         * lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
4044         expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
4045         (strtol, strtoul): New decls (for pre-ANSI hosts), to replace
4046         the above decl.
4047
4048 1999-07-02  Paul Eggert  <eggert@twinsun.com>
4049
4050         * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
4051         * m4/mktime.m4: New file.
4052         * m4/Makefile.am.in, m4/README: Remove these files.
4053         * m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
4054         remove README, Makefile.am.in.
4055         (Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
4056         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
4057         not AM_FUNC_MKTIME.
4058
4059         * src/tar.c: Include signal.h.
4060         (SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
4061         (main): Ensure SIGCHLD is not ignored.
4062
4063         (BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
4064         MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
4065         OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
4066         RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
4067         VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
4068         OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
4069         OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
4070         OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
4071         they don't overlap with char codes.  Use an enum instead of a lot
4072         of #defines.
4073
4074         * src/system.h (ISASCII): Remove.
4075         (CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
4076         S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
4077         S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
4078         MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
4079         LONG_MAX): New macros.
4080
4081         * src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
4082         (read_directory_file): Cast ISSPACE arg to unsigned char.
4083         * src/misc.c (ISPRINT): Remove; now in system.h.
4084         (remove_any_file): Add brackets to pacify gcc -Wall.
4085         * src/list.c: Don't include <ctype.h>; system.h already does this.
4086         (ISODIGIT, ISSPACE): Remove; now in system.h.
4087         (decode_header): No need to AND mode with 07777; MODE_FROM_OCT
4088         does this now.
4089         (from_oct): Cast ISSPACE arg to unsigned char.
4090
4091         * src/create.c (mode_to_oct): Translate modes from internal to
4092         external form.
4093         * src/list.c (mode_from_oct): Translate modes from external to
4094         internal form.  Do not complain about unrecognized mode bits.
4095         * src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
4096         TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
4097
4098         * src/extract.c: (extr_init, make_directories, extract_archive):
4099         Do not assume mode bits have traditional Unix values.
4100         * src/list.c (decode_mode): Likewise.
4101         * src/create.c (start_header, dump_file): Likewise.
4102         * src/buffer.c (child_open_for_compress,
4103         child_open_for_uncompress, open_archive, (close_archive): Likewise.
4104         * src/compare.c (diff_archive): Likewise.
4105
4106         * src/extract.c (set_mode): Use %04 not %0.4 format.
4107         (extract_sparse_file): Do not use data_block uninitialized.
4108         Check for lseek failures.
4109
4110         * src/rtapelib.c (rmt_lseek__):
4111         Convert lseek whence values to portable integers on the wire.
4112         * src/rmt.c (main): Likewise.  Check for whence values out of range.
4113
4114         * src/create.c (finish_sparse_file): Use lseek whence macros
4115         instead of integers.
4116         * src/buffer.c (backspace_output): Likewise.
4117         * src/compare.c (diff_archive, verify_volume): Likewise.
4118         * src/delete.c (move_archive): Likewise.
4119         * src/extract.c (extract_sparse_file): Likewise.
4120
4121         * src/create.c (dump_file): Do not invoke finish_sparse_file
4122         on a negative file descriptor.
4123
4124         * src/buffer.c: Add braces to pacify gcc -Wall.
4125
4126         * src/compare.c (diff_sparse_files): Report lseek errors.
4127
4128         * configure.in (ALL_LINGUAS): Add cs, es, ru.
4129
4130         * PORTS, TODO: gnu.ai.mit.edu -> gnu.org
4131
4132         * src/arith.c, src/buffer.c (new_volume): Don't put ^G in
4133         message to be internationalized; \a doesn't work with msgfmt.
4134
4135         * src/tar.c (long_options, main, usage, OPTION_STRING):
4136         Remove -E or --ending-file.
4137         * src/list.c (read_and): Likewise.
4138         * src/common.h (ending_file_option): Likewise.
4139         * src/buffer.c (close_archive): Likewise.
4140
4141         * tests/after: Don't run two commands together in a pipeline,
4142         as some old shells mishandle pipeline exit status.
4143
4144 1999-06-28  Paul Eggert  <eggert@twinsun.com>
4145
4146         * configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
4147         * NEWS: Describe changes since 1.12.
4148         * README: Update bug reporting address; move paxutils ref to NEWS.
4149
4150         Handle EINTR correctly.
4151         * lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
4152         * lib/full-read.c, lib/full-write.c: New files.
4153         * src/buffer.c (child_open_for_compress, child_open_for_uncompress):
4154         Prefer full_read to read and full_write to write.
4155         * src/compare.c (process_rawdata, diff_sparse_files): Likewise.
4156         * src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
4157         Likewise.
4158         * src/extract.c (extract_sparse_file): Likewise.
4159         * src/rmt.c (get_string, main, report_error_message,
4160         report_numbered_error): Likewise.
4161         * src/rmt.h (rmtread, rmtwrite): Likewise.
4162         * src/rtapelib.c (do_command, get_status_string, rmt_read__,
4163         rmt_write__, rmt_ioctl__): Likewise.
4164         * src/update.c (append_file): Likewise.
4165         * src/system.h (full_read, full_write): New decls.
4166
4167         * po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
4168         lib/xmalloc.c, src/arith.c, src/misc.c.
4169
4170         * src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4171         New macros.  All uses of STDIN and STDOUT changed.
4172         * src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
4173         instead of 0 and STDOUT_FILENO instead of 1.
4174         * src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
4175         instead of fileno (stdin) and fileno (stdout) or 0 and 1.
4176
4177         * src/rmt.c (private_strerror): Avoid const.  Translate results.
4178
4179         * tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
4180         in the presence of NFS clock skew.
4181
4182 1999-06-25  Paul Eggert  <eggert@twinsun.com>
4183
4184         * configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
4185
4186         * src/buffer.c (write_archive_buffer): New function.
4187         (child_open_for_compress, flush_write, flush_read): Use it to write
4188         buffers.
4189         (open_archive): Report error if fstat of archive fails.
4190         Improve efficiency of check for /dev/null.
4191         Also, fix some corner cases with remote archives and /dev/null checking.
4192         (close_archive): Test for input fifo only if not remote.
4193         Truncate output archive only if it's not remote.
4194
4195         * src/misc.c (remove_any_file):
4196         Don't terminate if you see . or ..; just skip them.
4197
4198 1999-06-18  Paul Eggert  <eggert@twinsun.com>
4199
4200         * configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
4201
4202         Output sizes using a format that's more compatible with
4203         traditional tar (and with GNU Emacs).
4204         * src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
4205         MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
4206         Don't subtract 1 from size.
4207         * src/create.c (to_oct): Prepend leading zeros, not spaces.
4208         Output a trailing NUL unless the value won't fit without it.
4209         (finish_header): No need to append NUL to chksum, now that
4210         to_oct is doing it.
4211
4212 1999-06-16  Paul Eggert  <eggert@twinsun.com>
4213
4214         * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
4215
4216         * src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
4217         @INTLLIBS@ might invoke rpl_realloc.
4218
4219         * src/tar.c (backup_type): Remove decl; backupfile.h now has it.
4220         (intconv): Remove; use xstrto* fns instead.
4221         ("xstrtol.h"): Include.
4222         (check_decimal): Remove.
4223         (long_options, usage, OPTION_STRING, decode_options):
4224         Remove -y, --bzip2, --unbzip2.
4225         (decode_options): Use xget_version instead of get_version.
4226         Check for overflow with -b and -L and RECORD_SIZE_OPTION.
4227         Replace invocations of check_decimal  with xstrtoumax.
4228
4229         * tests/preset.in (echo_n, echo_c): Remove.
4230
4231         * tests/after: Don't rely on $echo_c and $echo_n.
4232
4233         * lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
4234         lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
4235         lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
4236         lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
4237         m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
4238         m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
4239         m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
4240         m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
4241         m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
4242         m4/xstrtoumax.m4: New files.
4243
4244         * configure.in(fp_PROG_ECHO): Remove; no longer needed.
4245         (AC_SYS_LARGEFILE): Renamed from AC_LFS.
4246         (jm_AC_HEADER_INTTYPES_H): Replaces inline code.
4247         (jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
4248         (AC_CHECK_FUNCS): Remove lchown.
4249         (AC_REPLACE_FUNCS): Remove basename, dirname.
4250         Add lchown, strtol, strtoul.
4251         (jm_FUNC_MKTIME): Add.
4252         (LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
4253         are also built via the ANSI2KNR-filtering rules.
4254         Use a no-op line to work around bug in automake 1.4 with malloc and
4255         realloc.
4256         (AC_OUTPUT): Add m4/Makefile.
4257
4258         * lib/Makefile.am (EXTRA_DIST):
4259         Add lchown.c, malloc.c, mktime.c, realloc.c,
4260         strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
4261         (noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
4262         (libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
4263         xstrtoul.c, xstrtoumax.c.  Remove getversion.c.
4264         ($(srcdir)/getdate.c:): Remove `expect conflicts' line.
4265
4266         * src/system.h (uintmax_t): Don't declare; configure now does this.
4267
4268         * src/common.h (backup_type): New decl.
4269         * src/common.h, src/misc.c, src/tar.c:
4270         Move include of backupfile.h to common.h.
4271
4272         * src/misc.c (maybe_backup_file):
4273         Pass backup_type to find_backup_file_name.
4274
4275         * src/list.c (print_header): Change sizes of uform and gform from 11 to
4276         UINTMAX_STRSIZE_BOUND.
4277
4278         * doc/tar.texi: Remove --bzip2.
4279         Fix @xref typos reported by latest makeinfo.
4280
4281         * Makefile.am (ACLOCAL_AMFLAGS): New macro.
4282         (SUBDIRS): Add m4.
4283         (M4DIR, ACINCLUDE_INPUTS): New macros.
4284         ($(srcdir)/acinclude.m4): New rule.
4285
4286         * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
4287         HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
4288         now generated automatically by autoconf.
4289
4290 1999-05-15  Paul Eggert  <eggert@twinsun.com>
4291
4292         * doc/tar.texi: Remove -y.
4293
4294 1999-04-09  Paul Eggert  <eggert@twinsun.com>
4295
4296         * src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
4297         (we were allocating too much storage).
4298         (uintmax_t): Don't declare; configure now does this.
4299
4300         * ABOUT-NLS: Update to gettext 0.10.35 edition.
4301
4302 1999-03-22  Paul Eggert  <eggert@twinsun.com>
4303
4304         * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
4305
4306         * acinclude.m4 (AC_LFS_FLAGS):
4307         Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
4308         (AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
4309         (jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
4310
4311         * configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
4312         New macros; needed for latest GNU xmalloc.c.
4313
4314         * Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
4315         (libtar_a_SOURCES): Add quotearg.c.
4316         * list.c: Include <quotearg.h>.
4317         (from_oct): Add forward decl.
4318         (read_header): Return HEADER_FAILURE if we can't parse the checksum.
4319         (from_oct): Report an error only if TYPE is nonzero.
4320         Quote any funny characters in bad header.
4321
4322 1999-03-20  Paul Eggert  <eggert@twinsun.com>
4323
4324         * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
4325
4326         * acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
4327         (AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
4328         changed.
4329         (AC_LFS): Simplify AIX revision number test.
4330
4331 1999-03-17  Paul Eggert  <eggert@twinsun.com>
4332
4333         * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
4334
4335         * configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
4336         Remove; it doesn't work that well
4337         with AC_CANONICAL_HOST.
4338         (fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
4339
4340         * Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
4341
4342         * Makefile.am (EXTRA_DIST): Remove gmalloc.c.
4343
4344         * acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
4345
4346         * tar.texi: Fix bug-report addr.
4347
4348         * README: Remove --with-included-malloc.
4349         Upgrade version numbers of build software.
4350
4351 1999-03-07  Paul Eggert  <eggert@twinsun.com>
4352
4353         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
4354
4355         * acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
4356         where bindtextdomain and gettext require -lintl.
4357         (AC_LFS_FLAGS): Simplify so that it only gets the flags;
4358         `no' means it failed.
4359         (AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
4360         (AC_LFS): Use them.  Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
4361         _LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
4362         to add anything to the command line (it's all in config.h).
4363         Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
4364
4365 1999-03-01  Paul Eggert  <eggert@twinsun.com>
4366
4367         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
4368
4369         * acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
4370
4371         * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
4372         mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
4373         uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
4374         like OFF_MAX, which are not reliable
4375         (e.g. OFF_MAX in AIX 4.2 is incorrect).
4376         * src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
4377         SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX):  Remove; no longer used.
4378
4379         * src/incremen.c (get_directory_contents):
4380         Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
4381         Have statx depend on STX_HIDDEN, not AIX.
4382
4383         * src/create.c (to_oct):
4384         New parameter substitute, giving a substitute value to use
4385         when the original value is out of range.  Do not append a space to the
4386         output; modern tars don't.  When a value is out of range, specify the
4387         maximum value, not the number of bits.
4388         (GID_NOBODY, UID_NOBODY): New macros.
4389         (gid_to_oct, uid_to_oct): Use them as substitutes.
4390         (finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
4391         (dump_file): Check whether the file changed as we read it.
4392
4393         * src/rmt.c (main): Remove suspicious AIX/386 code.
4394
4395 1999-02-19  Paul Eggert  <eggert@twinsun.com>
4396
4397         * intl/localealias.c (read_alias_file): Don't assume that memcpy
4398         returns a type compatible with char *; it doesn't on SunOS
4399         4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
4400
4401         * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
4402
4403         * src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
4404         * doc/tar.texi: Add --bzip2, --unbzip2 options.
4405
4406         * configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
4407         Add.
4408         (AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
4409         (AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
4410         * acinclude.m4 (AM_WITH_NLS):
4411         Update to latest gettext version (serial 5).
4412         (AC_LFS_FLAGS): New macro
4413         (AC_LFS): Use it.  Append to CFLAGS, LDFLAGS, LDLIBS instead of
4414         working only with unset variables.  Append to CFLAGS, not CPPFLAGS.
4415         Work properly in cross-compilation scenario, by checking for getconf
4416         with AC_CHECK_TOOL and by ditching uname in favor of
4417         AC_CANONICAL_HOST and $host_os.  Add --disable-lfs option.
4418
4419         * lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
4420         replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
4421         * lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
4422         since getdate.y now uses ANSI code.
4423
4424         * config.guess, config.sub: New files; taken from automake 1.4.
4425
4426         * intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
4427         intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
4428         intl/explodename.c, intl/finddomain.c, intl/gettext.c,
4429         intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
4430         intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
4431         intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
4432         Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
4433
4434 1999-02-01  Paul Eggert  <eggert@twinsun.com>
4435
4436         * src/tar.c: Update copyright.
4437
4438         * NEWS: 1.12.64004
4439
4440 1999-02-01  Paul Eggert  <eggert@twinsun.com>
4441
4442         * NEWS, configure.in: Version 1.12.64004
4443
4444         * configure.in (AC_LFS): Use this macro, instead of open-coding it.
4445
4446         * acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
4447
4448         * src/extract.c (extract_archive): Fix bug when extracting sparse
4449         files: they were trashing the tar file header.
4450
4451         * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
4452         Add -y or --bzip2 or --bunzip2 option.
4453
4454 1999-01-30  Paul Eggert  <eggert@twinsun.com>
4455
4456         * src/names.c (cached_no_such_uname, cached_no_such_gname,
4457         cached_no_such_uid, cached_no_such_gid): New vars.
4458         (uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
4459         Cache failures, too.
4460
4461         * src/tar.c (decode_options):
4462         Don't pass names longer than UNAME_FIELD_SIZE to
4463         uname_to_uid, as it messes up the cache.  Similarly for gname_to_uid.
4464
4465 1999-01-27  Paul Eggert  <eggert@twinsun.com>
4466
4467         * NEWS, configure.in: Version 1.12.64003
4468
4469         * src/buffer.c (backspace_output, close_archive):  Cast
4470         rmtlseek position arg to off_t, for benefit of K&R compilers
4471         with long long.
4472         * src/compare.c (verify_volume): Likewise.
4473
4474         * NEWS, configure.in: Version 1.12.64002
4475
4476         * src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
4477         off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
4478         Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
4479         * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
4480         mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
4481         uid_from_oct): Likewise.
4482
4483 1999-01-25  Paul Eggert  <eggert@twinsun.com>
4484
4485         * incremen.sh: Fix timing bug in regression test.
4486
4487 1999-01-22  Paul Eggert  <eggert@twinsun.com>
4488
4489         * NEWS, configure.in: Update version
4490
4491         * Makefile.am (localedir): Change to $(datadir)/locale.
4492         (DEFS): New macro, defining LOCALEDIR.
4493         (tar.o, tar._o, rmt.o, rmt._o): Remove.
4494         (INCLUDES): Add -I..
4495
4496         * Makefile.am (localedir): Change to $(datadir)/locale.
4497
4498 1999-01-21  Paul Eggert  <eggert@twinsun.com>
4499
4500         * NEWS, README, configure.in: Unofficial version 1.12.64001.
4501
4502         * tests/Makefile.am (localedir): Change to $(datadir)/locale.
4503         * src/Makefile.am (localedir): Likewise.
4504         (DEFS): New macro, defining LOCALEDIR.
4505         (tar.o, tar._o, rmt.o, rmt._o): Remove.
4506         (INCLUDES): Add `-I..'.
4507
4508         * tests/incremen.sh: Fix timing bug.
4509
4510 1999-01-20  Paul Eggert  <eggert@twinsun.com>
4511
4512         * NEWS, README, configure.in: Unofficial version 1.12.64000.
4513         `lfs.7' changed to `64000' in version number
4514         to conform to gnits standards.
4515
4516         * COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
4517         mkinstalldirs, ansi2knr.c: Update to latest public versions.
4518
4519         Rebuild with automake 1.4 and autoconf 2.13, to work around some
4520         porting problems.
4521
4522 1998-12-07  Paul Eggert  <eggert@twinsun.com>
4523
4524         * NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
4525
4526         * src/list.c (read_header):
4527         Accept file names as specified by POSIX.1-1996 section 10.1.1.
4528
4529 1998-11-30  Paul Eggert  <eggert@twinsun.com>
4530
4531         * configure.in: Quote the output of uname.
4532
4533         * src/extract.c (set_stat): chmod after chown even when not root;
4534         if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
4535
4536 1998-11-15  Paul Eggert  <eggert@twinsun.com>
4537
4538         * NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
4539
4540         * configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
4541         ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
4542
4543 1998-10-28  Paul Eggert  <eggert@twinsun.com>
4544
4545         * NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
4546
4547         * src/system.h (voidstar): Use void * if __STDC__ is defined,
4548         not merely nonzero.
4549
4550         * src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
4551         On many installations, rexec is disabled.
4552
4553 1998-08-07  Paul Eggert  <eggert@twinsun.com>
4554
4555         * NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
4556
4557         * src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
4558         for nameless users and groups.
4559
4560 1998-02-17  Paul Eggert  <eggert@twinsun.com>
4561
4562         * NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
4563         * NEWS, README: Add explanation of why this isn't an official version.
4564
4565 1998-02-02  Paul Eggert  <eggert@twinsun.com>
4566
4567         * NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
4568         This is an unofficial version.
4569
4570 1997-12-17  Paul Eggert  <eggert@twinsun.com>
4571
4572         * src/incremen.c (ST_DEV_MSB): New macro.
4573         (NFS_FILE_STAT): Use most significant bit of st_dev,
4574         even if it's unsigned.
4575
4576 1997-12-08  Paul Eggert  <eggert@twinsun.com>
4577
4578         * src/system.h (ST_NBLOCKS): Fix typo in definition.
4579
4580 1997-11-19  Paul Eggert  <eggert@twinsun.com>
4581
4582         * configure.in (HAVE_INTTYPES_H):
4583         Don't ignore cache variable if it's already set.
4584
4585 1997-11-10  Paul Eggert  <eggert@twinsun.com>
4586
4587         * src/rmt.c (main): Don't assume mt_count is of type daddr_t.
4588         * src/delete.c (records_read): Now off_t.
4589         (move_archive): Don't assume mt_count is of type daddr_t.
4590
4591 1997-10-30  Paul Eggert  <eggert@twinsun.com>
4592
4593         * configure.in (CPPFLAGS, LDFLAGS, LIBS):
4594         Set to appropriate values if large file support
4595         needs explicit enabling.
4596         (HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
4597         ssize_t):
4598         New macros to configure.
4599         (AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
4600
4601         * acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
4602         major_t, minor_t, ssize_t): New macros.
4603
4604         * src/arith.h (TARLONG_FORMAT):
4605         Fix typo: %uld -> %lu.  Use unsigned when long long
4606         (%lld -> %llu).
4607         (add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
4608         (add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
4609
4610         * src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
4611         2nd arg is now unsigned long.
4612
4613         * src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
4614         (prepare_record_buffer): Arg is now size_t.
4615         Remove now-useless casts.
4616
4617         (main): Use `long' for status, so that it can store ssize_t.
4618         Use daddr_t, mode_t, size_t, off_t when appropriate.
4619         Convert daddr_t and off_t values ourselves, since they might be longer
4620         than long.  Convert other types using `long' primitives.
4621         When processing MTIOCTOP, do not try to pass resulting
4622         count back, since it won't work (it could be too large) and it's
4623         not expected anyway.
4624
4625         * src/update.c:
4626         (append_file) Use off_t, size_t, ssize_t when appropriate.  Remove
4627         now-useless casts.  Use unsigned long to print *_t types, except use
4628         STRINGIFY_BIGINT for off_t.
4629         (update_archive): Cast -1 to dev_t when necessary.
4630
4631         * src/tar.c (check_decimal):
4632         Now returns 1 if successful, 0 otherwise, and returns
4633         uintmax_t value into new arg.  Check for arithmetic overflow.
4634         (decode_options): Avoid overflow if record_size fits in size_t but not int.
4635         Check for overflow on user or group ids.
4636
4637         * src/compare.c (diff_init, process_rawdata, read_and_process,
4638         diff_sparse_files, diff_archive):
4639         Use off_t, pid_t, size_t, ssize_t when appropriate.
4640         Remove now-useless casts.  Use unsigned long to print *_t types,
4641         except use STRINGIFY_BIGINT for off_t.
4642
4643         (process_noop, process_rawdata, process_dumpdir, read_and_process):
4644         Size arg is now size_t.
4645
4646         (diff_sparse_files): Arg is now off_t.  Check for size_t overflow
4647         when allocating buffer.
4648
4649         * src/rtapelib.c:
4650         (do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
4651         Use pid_t, size_t, ssize_t when appropriate.  Remove now-useless casts.
4652         Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
4653         off_t.
4654
4655         (get_status_string, get_status_off): New function.
4656         (get_status): Now returns long, so that it can store ssize_t.
4657         Invoke get_status_string to do the real work.
4658         (rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
4659         (rmt_lseek__): Now returns off_t, using new get_status_off function.
4660         (rmt_ioctl__): Convert mt_count by hand,
4661         since it might be longer than long.
4662
4663         * src/mangle.c (extract_mangle):
4664         Check for overflow when converting off_t to size_t.
4665         Use off_t, size_t when appropriate.  Remove now-useless casts.
4666
4667         * src/system.h (mode_t): Remove; now done by autoconf.
4668         (ST_NBLOCKS): Do not overflow if st_size is near maximum.
4669         Return number of ST_NBLOCKSIZE-byte blocks,
4670         not number of 512-byte blocks;
4671         this also helps to avoid overflow.
4672         (st_blocks): Declare if needed.
4673         (ST_NBLOCKSIZE): New macro.
4674         (<limits.h>, <inttypes.h>): Include if available.
4675         (CHAR_BIT): New macro.
4676         (uintmax_t): New typedef.
4677         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
4678         UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
4679         OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
4680
4681         * src/names.c (name_init):
4682         Fix typo in error message: FILE* was passed, but char*
4683         was wanted.
4684
4685         (read_name_from_file, name_gather, addname, name_match, name_scan,
4686         add_exclude): Use size_t when appropriate.  Remove now-useless casts.
4687
4688         (exclude_pool_size, allocated_exclude_pool_size): Now size_t.
4689
4690         * src/extract.c (newdir_umask, current_umask): Now mode_t.
4691         (extract_sparse_file): Args now use off_t.
4692
4693         (set_mode, set_stat, make_directories, extract_sparse_file,
4694         extract_archive): Use off_t, size_t, ssize_t when appropriate.  Remove
4695         now-useless casts.  Use unsigned long to print *_t types, except use
4696         STRINGIFY_BIGINT for off_t.
4697
4698         * src/misc.c (quote_copy_string):
4699         Use size_t when appropriate.  Remove now-useless casts.
4700
4701         * src/list.c (read_and, list_archive, read_header, decode_mode,
4702         print_header, print_for_mkdir):
4703         Use mode_t, off_t, size_t when appropriate.  Remove
4704         now-useless casts.  Use unsigned long to print *_t types, except use
4705         STRINGIFY_BIGINT for off_t.
4706
4707         (read_header): Check for overflow when converting header size.
4708
4709         (from_oct): Now static.  Now returns uintmax_t.  `where' arg is now
4710         const char *.  Size arg is now size_t.  Now takes new type and maxval
4711         args.  Compute result using uintmax_t, not long.  Report error if
4712         field does not contain octal number in range.
4713         (gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
4714         off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
4715         uintmax_from_oct): New functions.
4716
4717         (stringify_uintmax_t_backwards): New function.
4718
4719         (decode_mode, print_for_mkdir): Mode arg is now mode_t.
4720         (skip_file): Offset arg is now off_t.
4721
4722         * src/buffer.c (record_start_block, save_totsize, save_sizeleft,
4723         real_s_totsize, real_s_sizeleft, current_block_ordinal):
4724         Now off_t.
4725         (write_error): Arg is now ssize_t.
4726         (child_pid): Now pid_t.
4727         (available_space_after): Now size_t.
4728
4729         (child_open_for_compress, child_open_for_uncompress, flush_write,
4730         open_archive, flush_write, write_error, flush_read, close_archive):
4731         Use pid_t, ssize_t, size_t when appropriate.  Remove now-useless
4732         casts.  Use unsigned long to print *_t types, except use
4733         STRINGIFY_BIGINT for off_t.
4734
4735         * src/delete.c (records_read): Now daddr_t.
4736         (move_archive): Arg is now daddr_t.  Check for overflow when
4737         computing offset.
4738         (move_archive, delete_archive_members): Use daddr_t, off_t when
4739         appropriate.  Remove now-useless casts.
4740
4741         * src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
4742         (rmt_lseek): Now returns off_t.
4743
4744         * src/create.c (to_oct):
4745         Now static.  Value arg is now uintmax_t.  Accept new args
4746         giving name of type of octal field, for error messages.  Report an
4747         error if the value is too large to fit in the field.
4748         (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
4749         size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
4750
4751         (write_eot, write_long, finish_header, deal_with_sparse,
4752         finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
4753         appropriate.  Remove now-useless casts.  Use unsigned long to print
4754         *_t types, except use STRINGIFY_BIGINT for off_t.
4755
4756         (find_new_file_size): 1st arg is now off_t*.
4757         (finish_sparse_file): Args now use off_t, not long.
4758         Check for lseek error.
4759         (create_archive, dump_file): Cast -1 to dev_t when necessary.
4760         (dump_file): Device arg is now dev_t.
4761         Avoid overflow when testing whether file has holes
4762         by using the new ST_NBLOCKSIZE macro.
4763
4764         * src/incremen.c (struct accumulator, add_to_accumulator,
4765         get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
4766         Use size_t for sizes.
4767         (struct directory, get_directory_contents, add_hierarchy_to_namelist):
4768         Use dev_t, ino_t for devices and inodes.
4769         (gnu_restore): Use off_t for file offsets.
4770         (struct directory): Use char for flags.  Add new flag `nfs'.
4771         (nfs): New constant
4772         (NFS_FILE_STAT): New macro.
4773         (note_directory): Accept struct stat * instead of
4774         device and inode number.  All callers changed.
4775         (note_directory, get_directory_contents):
4776         Use NFS_FILE_STAT to determine whether directory is an NFS directory.
4777         (write_dir_file): Cast time_t to unsigned long before printing as %lu.
4778
4779         * src/common.h (record_size, struct name, struct sp_array,
4780         available_space_after):
4781         Use size_t for sizes.
4782         (save_sizeleft, save_totsize, current_block_ordinal, skip_file):
4783         Use off_t for file offsets.
4784         (struct name): dir_contents is now const char *, not char *.
4785         (dump_file, get_directory_contents): Use dev_t for devices.
4786         (to_oct): Remove decl.
4787         (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
4788         UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
4789         GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
4790         OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
4791         UINTMAX_FROM_OCT): New macros.
4792         (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
4793         size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
4794         stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
4795         minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
4796         time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
4797         (print_for_mkdir): 2nd arg is now mode_t.
4798
4799 See ChangeLog.1 for earlier changes.
4800
4801
4802
4803 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software
4804 Foundation, Inc.
4805
4806 This file is part of GNU tar.
4807
4808 GNU tar is free software; you can redistribute it and/or modify
4809 it under the terms of the GNU General Public License as published by
4810 the Free Software Foundation; either version 2, or (at your option)
4811 any later version.
4812
4813 GNU tar is distributed in the hope that it will be useful,
4814 but WITHOUT ANY WARRANTY; without even the implied warranty of
4815 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4816 GNU General Public License for more details.
4817
4818 You should have received a copy of the GNU General Public License
4819 along with GNU tar; see the file COPYING.  If not, write to
4820 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
4821 Boston, MA 02111-1307, USA.