OSDN Git Service

*** empty log message ***
[lha/lha.git] / ChangeLog
1 2005-10-13  Koji Arai  <jca02266@nifty.com>
2
3         * tests/lha-test.in: emulate POSIX shell when it is executed by
4         zsh or bash. (this part is derived from GNU Autoconf 2.59)
5
6         * tests/Makefile.am: replaced `bash' with `@sh_for_lha_test@'
7
8         * configure.ac: search shell programs to execute the lha-test.
9
10 2005-09-25  Koji Arai  <jca02266@nifty.com>
11
12         * src/prototypes.h: updated.
13
14         * src/crcio.c (calccrc, fread_crc, fwrite_crc, fread_txt, fwrite_txt): suppress compiler warnings on gcc-4.0.
15
16         * src/header.c (calc_sum): ditto.
17
18         * src/lha_macro.h (UPDATE_CRC): ditto.
19
20 2005-09-24  Koji Arai  <jca02266@nifty.com>
21
22         * released.
23
24         * configure.ac: updated version and my mail address.
25
26         * Hacking_of_LHa: updated. (2003-02-23 edition)
27
28         * 00readme.autoconf: updated.
29
30 2005-06-08  Koji Arai  <jca02266@nifty.ne.jp>
31
32         * configure.ac: updated version.
33
34         * src/lharc.c (parse_suboption): fixed a bug, when the
35         --system-kanji-code option specified, the --archive-kanji-code
36         option was infected.
37
38 2005-05-08  Koji Arai  <jca02266@nifty.ne.jp>
39
40         * configure.ac: updated version.
41
42         * src/lharc.c (print_usage): updated.
43
44         * src/lhadd.c, src/header.c (remove_leading_dots): move to
45         header.c for readlink().
46
47         * src/lhadd.c (add_one): symbolic link indication was contrary.
48         ( not "realname -> linkname" but "linkname -> realname" )
49         (delete): ditto.
50
51         * src/lhext.c (extract_one): ditto.
52
53         * src/lhlist.c (list_one): ditto.
54
55         * tests/lha-test14: ditto.
56
57         * src/lhadd.c (remove_leading_dots): newly added.
58
59         * src/lhadd.c (append_it): remove leading relative path from
60         archive.
61
62         * src/lhext.c (is_directory_traversal): should return true when
63         just ".." was found.
64
65 2004-10-02  Koji Arai  <jca02266@nifty.ne.jp>
66
67         * src/lharc.c (print_tiny_usage): added long option helps.
68
69         * src/prototypes.h: updated.
70
71         * src/lharc.c: should accept a single option --help and --version.
72
73 2004-09-29  Koji Arai  <jca02266@nifty.ne.jp>
74
75         * src/lharc.c (parse_option, parse_suboption): use getopt_long().
76
77         * src/Makefile.am: added getopt_long.c and getopt_long.h.
78
79         * src/getopt_long.c, src/getopt_long.h: newly added.
80
81 2004-09-29  Koji Arai  <jca02266@nifty.ne.jp>
82
83         * released.
84
85         * 00readme.autoconf: note for builds on MS-Windows.
86
87         * configure.ac: updated version.
88
89         * Makefile.am: added Hacking_of_LHa in EXTRA_DIST.
90
91         * Hacking_of_LHa: renamed (typo).
92
93 2004-09-27  Koji Arai  <jca02266@nifty.ne.jp>
94
95         * configure.ac: updated version.
96
97         * src/prototypes.h (str_safe_copy): newly added.
98         (build_standard_archive_name, build_backup_file):
99         added argument the size for build_standard_archive_name() and
100         build_backup_file().
101
102         * src/header.c (init_header): use str_safe_copy() instead of strcpy().
103
104         * src/lhadd.c (build_backup_file, cmd_add, cmd_delete):
105         added argument the size for build_standard_archive_name() and
106         build_backup_file().
107
108         * src/lhext.c (make_parent_path): use str_safe_copy() instead of strcpy().
109         (extract_one): ditto.
110
111         * src/lharc.c (find_files): use str_safe_copy() instead of strcpy().
112         (build_temporary_name): ditto.
113         (modify_filename_extention): ditto.
114         (build_backup_name): ditto.
115         (build_standard_archive_name): ditto.
116
117         * src/util.c (str_safe_copy): newly added.
118
119 2004-09-26  Koji Arai  <jca02266@nifty.ne.jp>
120
121         * src/header.c: fixed typo.
122
123 2004-09-18  Koji Arai  <jca02266@nifty.ne.jp>
124
125         * configure.ac: updated version.
126
127         * 00readme.autoconf: added a description about
128         `--extract-broken-archive' option.
129
130         * src/lharc.c (init_variable, parse_option): added an option
131         `--extract-broken-archive' to extract broken archive.
132
133         * src/lha.h (extract_broken_archive): ditto.
134
135         * src/slide.c (encode, decode): fixed a *FATAL* bug which make a
136         broken archive.
137
138 2004-05-08  Koji Arai  <jca02266@nifty.ne.jp>
139
140         * configure.ac: updated version.
141
142         * src/prototypes.h: updated.
143
144         * src/lhext.c (extract_one, is_directory_traversal): applied a
145         security patch (CAN-2004-0235: directory traversal problems)
146
147         * src/lharc.c (print_usage): updated.
148
149 2003-12-18  Koji Arai  <jca02266@nifty.ne.jp>
150
151         * src/header.c (wintime_to_unix_stamp): no use 64bit constant to
152         avoid the warning `integer constant is too large for "long" type'
153         on GCC. however, for portability, no use the unsigned long long
154         suffix "ULL".
155
156 2003-12-13  Koji Arai  <jca02266@nifty.ne.jp>
157
158         * configure.ac: updated version.
159
160         * src/lhext.c (extract_one, cmd_extract): preserve directory
161         timestamp. Thanks Akihiro Iriyama.
162
163         * src/lhext.c (add_dirinfo, adjust_dirinfo): newly added.
164
165 2003-09-28  Koji Arai  <jca02266@nifty.ne.jp>
166
167         * Makefile.am (SUBDIRS): reordered to avoid useless re-compilation.
168
169 2003-09-21  Koji Arai  <jca02266@nifty.ne.jp>
170
171         * released.
172
173         * configure.ac: updated version.
174
175 2003-08-18  Koji Arai  <jca02266@nifty.ne.jp>
176
177         * 00readme.autoconf: fixed.
178
179         * configure.ac: use AC_SYS_LARGEFILE for largefile support.
180
181         * config.h.in: ditto.
182
183         * src/prototypes.h: updated.
184
185 2003-07-29  Koji Arai  <jca02266@nifty.ne.jp>
186
187         * tests/Makefile.am (EXTRA_DIST): lha-test1 was missed.
188
189         * tests/lha-test13: should set LANG=C for `tr'.
190
191 2003-07-28  Koji Arai  <jca02266@nifty.ne.jp>
192
193         * tests/lha-test.in: filename should be contained in last error
194         information.
195
196 2003-07-27  Koji Arai  <jca02266@nifty.ne.jp>
197
198         * tests/lha-test2: no need to set $FILENAME.
199         * tests/lha-test3: ditto.
200         * tests/lha-test4: ditto.
201         * tests/lha-test5: ditto.
202         * tests/lha-test6: ditto.
203         * tests/lha-test7: ditto.
204         * tests/lha-test8: ditto.
205         * tests/lha-test9: ditto.
206         * tests/lha-test10: ditto.
207         * tests/lha-test11: ditto.
208         * tests/lha-test12: ditto.
209         * tests/lha-test13: ditto.
210         * tests/lha-test14: ditto.
211         * tests/lha-test15: ditto.
212
213         * tests/lha-test1: newly added.
214
215         * tests/lha-test.in: improved.
216
217         * src/prototypes.h: updated.
218
219         * src/lha.h (exit): defined as lha_exit().
220
221         * src/lharc.c (init_variable): discard a variable
222         `remove_temporary_at_error'.
223         (fatal_error): ditto.
224         (cleanup): newly added.
225         (interrupt): call cleanup().
226         (lha_exit): newly added; cleanup temporary files always.
227
228         * src/lhadd.c (add_one): discard a variable
229         `remove_temporary_at_error'.
230
231         * src/indicator.c (start_indicator): refined.
232
233         * src/lharc.c (parse_option): fixed typo.
234
235         * src/indicator.c (carriage_return): newly added; print CR on tty only.
236         (start_indicator): call above.
237         (finish_indicator): ditto.
238         (finish_indicator2): ditto.
239
240         * src/lharc.c (print_usage): newly added.
241         (parse_option): strictly checking command line arguments.
242         (main): ditto.
243
244 2003-07-26  Koji Arai  <jca02266@nifty.ne.jp>
245
246         * tests/lha-test13: use `tr' instead of `printf` for printing 8 bit
247         characters.
248
249 2003-07-25  Koji Arai  <jca02266@nifty.ne.jp>
250
251         * tests/lha-test14: `test -e' is unavailable on some systems.
252
253 2003-07-22  Koji Arai  <jca02266@nifty.ne.jp>
254
255         * tests/lha-test.in: should exit with status in trap.
256
257         * src/shuf.c (decode_start_st0): wrong value was assigned.
258
259         * src/lha.h: discard `prof' variable.
260
261         * src/lharc.c (init_variable): discard `prof' variable.
262         (parse_option): discard undocumented `p' option.
263         (main): ditto.
264
265         * src/append.c (encode_lzhuf): hate global variable.
266
267         * src/extract.c (decode_lzhuf): ditto.
268
269         * src/lha.h: ditto.
270
271 2003-07-21  Koji Arai  <jca02266@nifty.ne.jp>
272
273         * configure.ac: updated version.
274
275         * 00readme.autoconf: described largefiles.
276
277         * src/header.c (get_header): avoid valgrind warning, `Source and
278         destination overlap in strncpy()'.
279
280         * src/lharc.c (find_files): refined.
281
282         * tests/lha-test.in: should exit in trap.
283
284         * src/lharc.c (find_files): uninitialized variable was caught by
285         Valgrind.
286
287         * src/prototypes.h: updated.
288
289         * src/append.c (encode_lzhuf): set actual copied size.
290
291         * src/util.c (encode_stored_crc): use size_t instead of long.
292
293         * src/lhadd.c (temporary_to_new_archive_file): ditto.
294         (cmd_add): ditto.
295         (cmd_delete): ditto.
296
297         * src/lhadd.c (add_one): fixed a comment.
298
299         * src/indicator.c (MAX_INDICATOR_COUNT): changed to fit for the 80
300         column screen.
301
302         * src/extract.c (decode_lzhuf): refined.
303
304         * src/prototypes.h: updated.
305
306         * src/cproto.sh: added `indicator.c'.
307
308         * src/Makefile.am: ditto.
309
310         * src/indicator.c: separated from append.c.
311
312         * src/append.c: ditto.
313
314         * src/lha.h: ditto.
315
316         * src/lha_macro.h: ditto.
317
318 2003-07-20  Koji Arai  <jca02266@nifty.ne.jp>
319
320         * configure.ac: updated version.
321
322         * src/Makefile.am (EXTRA_DIST): fnmatch.h was missed.
323
324         * src/lha.h (fseeko, ftello): these macros had no effect.
325
326 2003-07-19  Koji Arai  <jca02266@nifty.ne.jp>
327
328         * src/maketree.c (make_len): discard debug print.
329
330         * configure.ac: updated version.
331
332         * src/prototypes.h: updated.
333
334         * config.h.in: updated.
335
336         * configure.ac: check declaration of `basename'.
337
338         * src/cproto.sh: ditto.
339
340         * src/util.c (encode_stored_crc): use size_t.
341
342         * src/lha.h (struct LzHeader): use size_t for the members
343         `packed_size' and `original_size'.
344
345 2003-07-13  Koji Arai  <jca02266@nifty.ne.jp>
346
347         * configure.ac: updated version.
348
349         * src/prototypes.h: updated.
350
351         * src/append.c (encode_lzhuf): use size_t and off_t instead of long.
352         (start_indicator): ditto.
353
354         * src/extract.c (decode_lzhuf): ditto.
355
356         * src/lha.h (struct interfacing): ditto.
357
358         * src/lhadd.c (add_one): ditto.
359         (find_update_files): ditto.
360         (delete): ditto.
361
362         * src/lhext.c (cmd_extract): ditto.
363
364         * src/util.c (copyfile): ditto.
365
366         * src/lhlist.c (print_size): use "%7lu" format string instead of
367         "%7ld" for large files.
368
369         * src/slide.c: refined.
370
371 2003-07-11  Koji Arai  <jca02266@nifty.ne.jp>
372
373         * src/lharc.c (cleaning_files): should print errno.
374
375 2003-05-23  Koji Arai  <jca02266@nifty.ne.jp>
376
377         * configure.ac: use fseeko(), ftello() instead of fseek(), ftell().
378
379         * config.h.in: ditto.
380
381         * src/lha.h, src/lhlist.c, src/lhext.c, src/lharc.c: ditto.
382
383         * src/lhadd.c, src/header.c: ditto.
384
385 2003-05-10  Koji Arai  <jca02266@nifty.ne.jp>
386
387         * configure.ac: updated version.
388
389         * src/lhext.c (inquire_extract): warning if stdin is not tty,
390         because you cannot reply from stdin.
391         (extract_one): return actual read size from archive.
392         (cmd_extract): fix a bug: skip correct size when error occurred.
393
394         * tests/lha-test5: added tests for above.
395
396         * src/lha.h (struct interfacing): added a member `read_size'.
397
398         * src/extract.c (decode_lzhuf): added an argument `pointer of
399         read_size'.
400
401         * src/prototypes.h: ditto.
402
403         * src/slide.c (decode): set actual read size to interface->read_size.
404
405 2003-04-14  Koji Arai  <jca02266@nifty.ne.jp>
406
407         * src/cproto.sh: The cproto 4.7a supports some gcc-specific keywords.
408
409 2003-03-24  Koji Arai  <jca02266@nifty.ne.jp>
410
411         * configure.ac: updated version.
412
413         * src/prototypes.h: updated.
414
415 2003-03-23  Koji Arai  <jca02266@nifty.ne.jp>
416
417         * src/header.c (convert_filename): support Samba CAP code (experimental).
418         (hex2int, int2hex, cap_to_sjis, sjis_to_cap): added for above.
419
420         * src/lha_macro.h (CODE_CAP): ditto.
421
422         * src/lharc.c (parse_option): added new command line options,
423         --system-kanji-code=xxx and --archive-kanji-code=xxx (experimental).
424
425         * 00readme.autoconf: described above features.
426
427 2003-03-22  Koji Arai  <jca02266@nifty.ne.jp>
428
429         * src/lharc.c (init_variable): do not use HEADER_LEVELx macros.
430         (parse_option): ditto.
431
432         * src/header.c (write_header): ditto.
433
434         * src/lha_macro.h (HEADER_LEVEL0, HEADER_LEVEL1, HEADER_LEVEL2, MATCHBIT): ditto.
435
436         * src/huf.c (encode_start_st1): do not use assert().
437         (decode_start_st1): ditto.
438
439 2003-03-12  Koji Arai  <jca02266@nifty.ne.jp>
440
441         * src/header.c (wintime_to_unix_stamp): should cast to unsigned type.
442
443 2003-03-03  Koji Arai  <jca02266@nifty.ne.jp>
444
445         * src/prototypes.h: updated.
446
447         * src/cproto.sh: improved.
448
449 2003-02-24  Koji Arai  <jca02266@nifty.ne.jp>
450
451         * src/prototypes.h: updated.
452
453         * src/maketree.c: hate global variables.
454
455         * src/lha_macro.h: refined.
456
457         * src/huf.c: refined.
458
459         * src/util.c (strdup): defined more properly.
460         (memset): ditto.
461
462         * prototypes.h: ditto.
463
464         * cproto.sh: ditto.
465
466 2003-02-23  Koji Arai  <jca02266@nifty.ne.jp>
467
468         * src/cproto.sh: improved.
469
470         * src/prototypes.h: updated.
471
472         * src/util.c: `strucmp()' was replaced by `strcasecmp()'.
473
474         * src/util.c (archive_is_msdos_sfx1): ditto.
475
476         * src/lharc.c (open_old_archive): ditto.
477
478         * src/lha.h: ditto.
479
480         * src/util.c: discard `rename()', `mkdir()' and `rmdir()'.
481
482         * configure.ac: ditto.
483
484         * config.h.in: ditto.
485
486         * src/header.c: added credit.
487         no longer use `ftime()', `tzset()', `localtime()' and `gettimeofday()'.
488
489 2003-02-17  Koji Arai  <jca02266@nifty.ne.jp>
490
491         * configure.ac: updated version.
492
493         * src/fnmatch.h: no need to include <sys/cdefs.h>. it does not
494         exist on MinGW.
495
496 2003-02-14  Koji Arai  <jca02266@nifty.ne.jp>
497
498         * src/lharc.c (find_files): `goto' requires expression after label.
499
500         * src/lhadd.c (cmd_add): ditto.
501
502 2003-02-05  Koji Arai  <jca02266@nifty.ne.jp>
503
504         * tests/lha-test7: sleep 1 to make sure for updating tests.
505
506         * src/fnmatch.c, src/fnmatch.h: added fnmatch.c derived from the
507         OpenBSD.
508
509 2003-02-04  Koji Arai  <jca02266@nifty.ne.jp>
510
511         * configure.ac: need to call `AC_CANONICAL_HOST' for automake
512         1.6.x (for installing the config.guess and config.sub).
513
514 2003-02-02  Koji Arai  <jca02266@nifty.ne.jp>
515
516         * src/header.c, src/lharc.c: fix credit.
517
518 2003-01-20  Koji Arai  <jca02266@nifty.ne.jp>
519
520         * src/lha.h (prev_char): discard unused variable `prev_char'.
521
522         * src/crcio.c (fwrite_txt): ditto.
523
524         * src/slide.c (decode): ditto.
525
526         * src/slide.c: refined a little.
527
528 2003-01-19  Koji Arai  <jca02266@nifty.ne.jp>
529
530         * src/slide.c: took off the debug flag.
531
532         * src/slide.c (search_dict): split into 2 parts.
533
534         * src/slide.c: refined: use the structure `matchdata'.
535
536 2003-01-18  Koji Arai  <jca02266@nifty.ne.jp>
537
538         * src/lha.h (decode_count): rename a global variable `count' to
539         `decode_count'.
540
541         * src/dhuf.c (decode_p_dyn): ditto.
542
543         * src/slide.c (decode): ditto and refined.
544
545 2003-01-17  Koji Arai  <jca02266@nifty.ne.jp>
546
547         * src/slide.c: refined ?
548
549         * src/slide.c (INIT_HASH, NEXT_HASH): newly defined to refine.
550
551 2003-01-13  Koji Arai  <jca02266@nifty.ne.jp>
552
553         * src/prototypes.h: updated.
554
555         * src/slide.c: refined.
556
557 2002-12-31  Koji Arai  <jca02266@nifty.ne.jp>
558
559         * src/lhext.c (adjust_info): On Cygwin, execute permission should
560         be set for .exe or .dll.
561
562 2002-12-28  Koji Arai  <jca02266@nifty.ne.jp>
563
564         * src/lha_macro.h (peekbits): newly added.
565
566         * src/huf.c (read_pt_len): use peekbits().
567         (read_c_len): ditto.
568         (decode_c_st1): ditto.
569         (decode_p_st1): ditto.
570
571         * src/shuf.c (decode_c_st0): ditto.
572         (decode_p_st0): ditto.
573
574 2002-12-23  Koji Arai  <jca02266@nifty.ne.jp>
575
576         * configure.ac: added a configure option: --enable-ignore-dot-files.
577
578         * config.h.in: ditto.
579
580         * src/lharc.c (parse_option): added `-X' option to ignore dot files.
581
582 2002-12-17  Koji Arai  <jca02266@nifty.ne.jp>
583
584         * configure.ac: should check whether system has `ssize_t'.
585
586         * config.h.in: ditto.
587
588         * lha.h: ditto.
589
590         * configure.ac: added checking functions `fnmatch' and `basename'.
591         but not yet prepare the free fnmatch.c.
592
593         * config.h.in: ditto.
594
595         * src/util.c (basename): newly added.
596
597         * src/lhadd.c (cmd_add): exclude files specified by -x option.
598
599         * src/lharc.c (print_tiny_usage): refined.
600
601 2002-12-16  Koji Arai  <jca02266@nifty.ne.jp>
602
603         * 00readme.autoconf: describe about new feature `-x'.
604
605         * src/lha.h: include fnmatch.h.
606         added a global variable `exclude_files'.
607
608         * src/lharc.c (init_variable): initialize `exclude_files'.
609         (print_tiny_usage): modify usage.
610         (parse_option): newly added. should regard leading `-' argument as
611         option (for new -x option).
612         added `-x <pattern>' option (specify exclude files pattern).
613         (find_files): files matched by pattern `exclude_files' exclude
614         from target files.
615
616 2002-11-25  Koji Arai  <jca02266@nifty.ne.jp>
617
618         * src/header.c: use size_t for header_size.
619         (skip_msdos_sfx1_code): rename to `seek_lha_header()'.
620
621         * src/lha.h: use size_t for header_size.
622
623         * src/lhadd.c (cmd_add): rename `skip_msdos_sfx1_code()' to
624         `seek_lha_header()'.
625         (cmd_delete): ditto.
626
627         * src/lhext.c (cmd_extract): ditto.
628
629         * src/lhlist.c (cmd_list): ditto.
630
631         * src/prototypes.h: updated.
632
633         * tests/lha-test15: added tests to search any level headers.
634
635 2002-11-17  Koji Arai  <jca02266@nifty.ne.jp>
636
637         * untabify all sources.
638
639         * src/huf.c (encode_start_st1): refined.
640         (decode_start_st1): refined.
641
642         * src/slide.c (encode_alloc): refined.
643         (update): refined.
644
645 2002-11-15  Koji Arai  <jca02266@nifty.ne.jp>
646
647         * 00readme.autoconf: updated.
648
649         * src/prototypes.h: updated.
650
651         * configure.ac, Makefile.am, olddoc/Makefile.am:
652           old documentations moved to olddoc directory.
653
654         * CHANGES.euc, MACHINES2.euc, README.euc, change-114h.txt, change-114e.txt, change-114i.txt, IFNAMES, Makefile.in, change-114f.txt, config.eng, MACHINES.euc, PROBLEMS.euc, change-114g.txt, config.jpn.euc: ditto.
655
656         * Makefile.in.org, src/Makefile.in.org: removed.
657
658         * configure.ac: updated version (source maintenance start on
659         sourceforge.jp)
660
661 2002-11-11  Koji Arai  <jca02266@nifty.ne.jp>
662
663         * src/lhext.c (make_parent_path): On Cygwin, when `foo.exe'
664         exists, stat("foo", &buf) is successful and it is not a directory.
665
666         * src/util.c (skip_msdos_sfx1_code): move to header.c
667
668         * src/header.c (skip_msdos_sfx1_code): ditto.
669         some macro moved from lha_macro.h.
670
671         * src/lha_macro.h: ditto.
672
673         * tests/lha-test15: newly added for testing self extracting archive.
674
675         * tests/lha-test.in: ditto.
676
677         * tests/Makefile.am: ditto.
678
679         * configure.ac: refined messages.
680
681 2002-10-26  Koji Arai  <jca02266@nifty.ne.jp>
682
683         * src/bitio.c (putbits): use the function putcode().
684
685         * src/dhuf.c (decode_start_dyn): call init_code_cache().
686
687         * src/huf.c (encode_start_st1): ditto.
688         (decode_start_st1): ditto.
689
690         * src/larc.c (decode_start_lzs): ditto.
691
692         * src/shuf.c (decode_start_st0): ditto.
693         (encode_start_fix): ditto.
694         (decode_start_fix): ditto.
695
696         * src/Makefile.am: added bitio.c
697
698         * src/cproto.sh: added bitio.c
699
700         * src/bitio.c: new file.
701
702         * src/crcio.c: extracted bitio routines.
703
704         * src/lha.h: ditto.
705
706 2002-10-16  Koji Arai  <jca02266@nifty.ne.jp>
707
708         * 00readme.autoconf: modified.
709
710 2002-10-02  Koji Arai  <jca02266@nifty.ne.jp>
711
712         * src/util.c (xstrchr): `strchr(s, 0)' should return the pointer
713         of the '\0' terminator.
714
715 2002-09-14  Koji Arai  <jca02266@nifty.ne.jp>
716
717         * src/lhadd.c (add_one): Use chsize() if system does not have
718         ftruncate(2). (For MinGW)
719
720         * configure.ac: ditto.
721
722         * config.h.in: ditto.
723
724 2002-09-03  Koji Arai  <jca02266@nifty.ne.jp>
725
726         * released.
727
728         * 00readme.autoconf: modified for stable release.
729
730         * configure.ac: updated version.
731
732 2002-09-01  Koji Arai  <jca02266@nifty.ne.jp>
733
734         * tests/Makefile.am (EXTRA_DIST): lha-test12, lha-test13 and
735         lha-test14 were missed.
736
737 2002-08-31  Koji Arai  <jca02266@nifty.ne.jp>
738
739         * src/lhadd.c (append_it): refined.
740
741         * src/lhadd.c (append_it): no terminate when file cannot be opened.
742
743 2002-08-29  Koji Arai  <jca02266@nifty.ne.jp>
744
745         * tests/lha-test11: change the way of checking the `header size field'.
746
747         * configure.ac: the `--enable-user-name-header' switch has been
748         ineffective. corrected variable name.
749
750 2002-08-26  Koji Arai  <jca02266@nifty.ne.jp>
751
752         * tests/lha-test14: on Cygwin, cannot use '|' as filesname.
753
754         * tests/lha-test.in: on MinGW, skip lha-test14 test.
755
756         * 00readme.autoconf: modified.
757
758         * released.
759
760         * configure.ac: updated version.
761
762         * src/header.c: fixed a comment.
763
764         * src/prototypes.h (strcmp_filename): removed.
765
766         * src/header.c (dump_skip_bytes): note "ignored" if data is ignored.
767
768         * src/header.c (wintime_to_unix_stamp): newly added for converting
769         from `FILETIME' to `time_t'.
770         (get_extended_header): use `wintime_to_unix_stamp()' to recognize
771         the Windows time stamp header (0x41).
772
773         * src/lha.h: define `uint64_t' unless system has it.
774
775         * configure.ac: check existence of the type `uint64_t'.
776
777         * config.h.in: ditto.
778
779         * src/lharc.c (init_variable): set default header level to 2.
780
781 2002-08-24  Koji Arai  <jca02266@nifty.ne.jp>
782
783         * tests/lha-test.in (lha-test14): added to test the symbolic link file.
784
785         * tests/lha-test14: ditto.
786
787         * src/lhlist.c (list_one): use LzHeader.realname.
788
789         * src/lhext.c (extract_one): use LzHeader.realname.
790         should call make_parent_path(symlink).
791
792         * src/lhadd.c (add_one): use LzHeader.realname.
793         (delete): ditto.
794         (append_it): use strcmp() instead of strcmp_filename().
795         (strcmp_filename): removed.
796
797         * src/lha.h (struct LzHeader): added a member `realname' which is
798         symbolic linked name.
799
800         * src/header.c (get_header): split symbolic name in archive.
801         (write_header): join symbolic link name and linked name to put it
802         in archive.
803
804         * src/lhext.c (extract_one): force extract when `f' option is
805         specified. this is for OS-9 archives, [provisional].
806
807         * src/header.c: fixed cpp expressions around time functions.
808
809         * tests/lha-test8: test MS-DOS timestamp `ftime' structure.
810
811         * tests/lha-test.in (change_timestamp): newly added.
812
813 2002-08-22  Koji Arai  <jca02266@nifty.ne.jp>
814
815         * released.
816
817         * src/prototypes.h: regenerated.
818
819         * src/cproto.sh: refined.
820
821         * configure.ac: updated version.
822
823         * configure.ac: should use `exit' rather than `return' on
824         AC_TRY_RUN().  see the Autoconf manual.
825
826         * configure.ac: check whether the 2nd argument of gettimeofday()
827         is effective.
828
829         * src/header.c: ditto.
830
831         * config.h.in (GETTIMEOFDAY_HAS_2ND_ARG): ditto.
832
833         * tests/lha-test.in: `++' is invalid arithmetic operator on POSIX
834         shell, Ksh and Bash version 2.03 or earlier.
835
836         * tests/lha-test13: ditto.
837
838 2002-08-18  Koji Arai  <jca02266@nifty.ne.jp>
839
840         * src/lharc.c (print_version): version string is made here.
841
842         * src/lha_macro.h (LHA_VERSION): removed.
843
844         * src/slide.c (encode_alloc): used newly named `dicbit' macro.
845
846         * src/shuf.c (read_tree_p): ditto.
847         (decode_start_fix): ditto.
848
849         * src/lha_macro.h: `xxx_DICBIT' for each method was defined.
850
851         * src/header.c: correct a comment `Generic stamp format'.
852         (get_bytes): fixed for dumping header.
853
854         * src/lha_macro.h, src/lha.h: `EXTERN' macro definition was moved
855         to lha.h.
856
857         * src/header.c (get_bytes): print hex codes for invisible chars.
858
859         * src/lhlist.c: hate global variables.
860
861         * src/prototypes.h (convdelim): removed.
862
863         * src/lhlist.c (print_stamp): use ISO 8601 date format when `lha vv'.
864
865 2002-08-14  Koji Arai  <jca02266@nifty.ne.jp>
866
867         * src/header.c: discarded warning message for the extended header,
868         `Windows time stamp' ignored.
869
870         * src/header.c: in spite of extended type value, read contents of
871         any ext headers.
872
873         * src/header.c: comment fixed.
874
875 2002-08-12  Koji Arai  <jca02266@nifty.ne.jp>
876
877         * src/header.c (dump_skip_bytes): do nothing when length is 0.
878
879 2002-08-11  Koji Arai  <jca02266@nifty.ne.jp>
880
881         * src/lha_macro.h (SJC_FIRST_P): rename to SJIS_FIRST_P.
882         (SJC_SECOND_P): rename to SJIS_SECOND_P.
883
884         * src/util.c (convdelim): removed.
885
886         * src/header.c (convert_filename): when small letter is included
887         in filename, do not convert case.
888
889         * tests/lha-test.in, tests/lha-test2, tests/lha-test3, tests/lha-test4, tests/lha-test5, tests/lha-test6, tests/lha-test7, tests/lha-test8, tests/lha-test9, tests/lha-test10, tests/lha-test11, tests/lha-test12, tests/lha-test13:
890         print filename when test failed.
891
892         * tests/lha-test.in, tests/lha-test12, tests/lha-test13:
893         added tests for converting text files.
894
895         * src/header.c (get_extended_header): recognize the Windows time
896         stamp header (0x41), but ignored.
897
898         * src/header.c (write_unix_info): added.
899
900 2002-08-11  Koji Arai  <jca02266@nifty.ne.jp>
901
902         * released.
903
904         * configure.ac: updated version.
905
906         * 00readme.autoconf: modified.
907
908         * src/header.c: DUMP_HEADER is always true.
909         dump header when running `lha vvv foo.lzh'.
910         (get_header): added new extend type JAVA.
911
912         * src/lha_macro.h (EXTEND_JAVA): added new extend type JAVA.
913
914         * src/lhlist.c (list_one): ditto.
915
916         * src/lharc.c (init_variable): `verbose' is changed to successive.
917         (main): ditto.
918
919 2002-08-10  Koji Arai  <jca02266@nifty.ne.jp>
920
921         * src/lhlist.c (list_one): fixed mode checks.
922
923         * src/prototypes.h: updated.
924
925         * src/header.c (get_header_level2): check CRC value for reading
926         level 2 and 3 header.
927         (get_header_level3): ditto.
928         (get_extended_header): ditto.
929         (get_header_level0): set total header size to
930         `LzHeader.header_size' even if level 0 or 1 header is read.
931         (get_header_level1): ditto.
932
933         * src/append.c (encode_lzhuf): encode(), decode() and copyfile()
934         were changed.
935         (put_indicator): moved from crcio.c.
936
937         * src/crcio.c (put_indicator): moved to append.c.
938         (calccrc): generalized.
939         (fread_crc): changed interface.
940         (fwrite_crc): changed interface.
941         (calc_header_crc): removed. use calccrc() instead.
942
943         * src/extract.c (decode_lzhuf): copyfile() and decode() were changed.
944
945         * src/lha.h: hate global variable. `crc' is removed.
946         `reading_size' moved to append.c.
947
948         * src/lha_macro.h (INITIALIZE_CRC): newly added.
949         (UPDATE_CRC): no update in macro code.
950
951         * src/lhadd.c (temporary_to_new_archive_file): copyfile() was changed.
952
953         * src/lharc.c (copy_old_one): header size adjusting is done by
954         the get_header().
955
956         * src/slide.c (update): changed interface.
957         (get_next): ditto.
958         (encode): ditto.
959         (decode): ditto.
960
961         * src/util.c (copyfile): changed interface.
962
963 2002-08-10  Koji Arai  <jca02266@nifty.ne.jp>
964
965         * tests/lha-test5: added tests using pipe.
966
967         * src/lhadd.c (cmd_add): applied reverse patch.  intermediate file
968         is the necessary when created archive put in pipe.
969
970         * src/header.c (skip_bytes): newly added.
971         (dump_get_byte): newly added for dumping the data for debugging.
972         (dump_skip_bytes): ditto.
973         (get_word): ditto.
974         (get_longword): ditto.
975         (get_bytes): ditto.
976         (get_extended_header): modified for reading the level 3 header.
977         (get_header_level3): newly added.
978
979         * src/lha.h (struct LzHeader): for level 3 header, added a new
980         member `size_field_length' and changed type of the `header_size'
981         from int to long.
982
983         * src/header.c (init_header): the `hdr->method' should be
984         initialized to the "-lh0-" for empty files.
985
986         * tests/lha-test2: ditto.
987
988         * src/lhadd.c (add_one): should print indicator for empty files.
989
990 2002-08-09  Koji Arai  <jca02266@nifty.ne.jp>
991
992         * tests/lha-test.in: adapt to ksh (and posix shell).
993
994 2002-08-05  Koji Arai  <jca02266@nifty.ne.jp>
995
996         * 00readme.autoconf: refined.
997
998         * config.h.in (BACKUP_OLD_ARCHIVE): added.
999
1000         * configure.ac: added a command line switch `--enable-backup-archive'.
1001
1002         * src/lhadd.c (cmd_add): if `backup_old_archive' is true, no
1003         backup archive.
1004         (cmd_delete): ditto.
1005
1006         * src/lharc.c (init_variable): initialize `backup_old_archive'.
1007
1008         * src/lha.h (backup_old_archive): added for nobackup.
1009
1010 2002-08-02  Koji Arai  <jca02266@nifty.ne.jp>
1011
1012         * src/lha_macro.h, src/lha.h, src/header.c, src/lhadd.c: Fixed
1013         misspelling, not `STRAGE' but `STORAGE'.
1014
1015 2002-07-29  Koji Arai  <jca02266@nifty.ne.jp>
1016
1017         * re-released.
1018
1019         * src/header.c: should use error() instead of fatal_error().
1020         (get_header): fixed wrong end mark checking.
1021
1022         * src/prototypes.h: updated.
1023
1024         * released.
1025
1026         * configure.ac: updated version.
1027
1028         * 00readme.autoconf: described about header.c bug on original lha.
1029
1030 2002-07-28  Koji Arai  <jca02266@nifty.ne.jp>
1031
1032         * tests/Makefile.am: added lha-test11.
1033
1034         * src/crcio.c (fread_txt): responded to (gcc -Wall) compiler warnings.
1035
1036         * src/header.c (generic_to_unix_stamp): ditto.
1037
1038         * src/lha_macro.h: ditto.
1039
1040         * src/lhadd.c (delete): ditto.
1041
1042         * src/lharc.c (open_old_archive): ditto.
1043
1044         * src/lhlist.c (list_one): ditto.
1045
1046         * src/prototypes.h: updated.
1047
1048         * tests/lha-test.in: added lha-test11.
1049
1050         * tests/lha-test8: added tests for level 0 and 2 header.
1051
1052         * tests/lha-test10: added tests for generic header.
1053
1054         * tests/lha-test11: testing for long filename. moved from lha-test10.
1055
1056 2002-07-26  Koji Arai  <jca02266@nifty.ne.jp>
1057
1058         * src/header.c (write_header): rewritten.
1059
1060 2002-07-25  Koji Arai  <jca02266@nifty.ne.jp>
1061
1062         * tests/lha-test4: stderr should be redirected.
1063
1064         * src/lharc.c (main): exit with status 1 (meaning failure) when the
1065         function error() was called.
1066         (error): ditto.
1067
1068         * src/lha.h (LzHeader.last_modified_stamp;): no longer used it.
1069
1070         * src/header.c (get_header): rewritten.
1071
1072 2002-07-21  Koji Arai  <jca02266@nifty.ne.jp>
1073
1074         * tests/lha-test10: change grep pattern so that pattern matches
1075         a carriage return at the end of line for MinGW.
1076
1077         * src/lha.h: define `struct utimbuf' when utime.h is not given
1078         such as MinGW. (Microsoft Visual Studio 6.0 has sys/utime.h).
1079
1080         * src/lhext.c (make_parent_path): missing braces.
1081
1082         * tests/lha-test.in (check): print script line number when test failed.
1083
1084         * tests/lha-test2, tests/lha-test3, tests/lha-test4, tests/lha-test5, tests/lha-test6, tests/lha-test7, tests/lha-test8, tests/lha-test9, tests/lha-test10: ditto.
1085
1086         * tests/lha-test10: on Cygwin/MinGW, could not make 255 bytes
1087         filename. (the system limit of filename length contains the length
1088         of current directory.)
1089
1090         * tests/lha-test10: should use /bin/ls instead of ls, since
1091         /usr/ucb/ls puts size on 4th field (on Solaris).
1092
1093 2002-07-18  Koji Arai  <jca02266@nifty.ne.jp>
1094
1095         * released.
1096
1097         * configure.ac: updated version.
1098
1099         * src/lhext.c (adjust_info): should use `struct utimbuf' for
1100         `utime(2)' rather than `time_t' array.
1101
1102         * src/header.c (write_header): [BUG]: should not write zero at the
1103         first byte on level 2 header. should adjust header size.
1104
1105         * tests/lha-test10: added tests for level 2 header.
1106
1107         * src/lha_macro.h, src/header.c (setup_get): moved to header.c.
1108         (get_byte): ditto.
1109         (put_ptr): ditto.
1110         (setup_put): ditto.
1111         (put_byte): ditto.
1112         (get_bytes): newly added.
1113         (put_bytes): newly added.
1114
1115 2002-07-17  Koji Arai  <jca02266@nifty.ne.jp>
1116
1117         * src/header.c (get_header): [BUG]: Could not read level 2 header
1118         when the header size is grater than 256.
1119         (convert_filename): Should use the `FILENAME_LENGTH' macro rather
1120         than 256.
1121         (write_header): [BUG]: Suppress to overflow the header size when
1122         long filename is written in level 0 or 1 header. On level 1
1123         header, always use the extended filename header instead of the
1124         base header.
1125
1126         * src/lha.h (LzHeader): the type of `header_size' was changed
1127         from `unsigned char' to `int', for the level 2 header archive.
1128
1129         * src/lhext.c (extract_one): should use the `FILENAME_LENGTH'
1130         macro rather than 256 (provisionally fixed).
1131
1132         * tests/lha-test.in: notify failed test number.
1133
1134         * tests/lha-test10: added tests for long pathname.
1135
1136 2002-07-14  Koji Arai  <jca02266@nifty.ne.jp>
1137
1138         * re-released.
1139
1140         * src/header.c (get_header): archive path separator should be
1141         converted always.
1142
1143         * released.
1144
1145         * configure.ac: updated version.
1146
1147         * src/header.c (write_header): if user/group name is not set,
1148         extended header (0x52 and 0x53) should not be made.
1149
1150         * tests/lha-test10: added testing to handle deep directory.
1151
1152         * src/header.c (write_header): fixed typo, not strchr() but
1153         strrchr().
1154
1155         * src/prototypes.h: regenerated.
1156
1157         * src/header.c (convert_filename): prefer to use the
1158         `FILENAME_LENGTH' macro rather than 256.
1159
1160         * src/cproto.sh: fixed typo.
1161
1162 2002-07-11  Koji Arai  <jca02266@nifty.ne.jp>
1163
1164         * tests/Makefile.am (EXTRA_DIST): lha-test9 and lha-test10 were missed.
1165
1166         * src/lharc.c (print_tiny_usage): no exit here.
1167
1168         * src/header.c (ConvertEncodingByIconv): newly added.
1169         Thanks to Hiroto Sakai.
1170
1171         * configure.ac, config.h.in: Checking to have iconv() for utf-8
1172         conversion.
1173
1174         * configure.ac: Checking whether strrchr() is 8 bit clean or not.
1175         On Mac OS X, strchr() can handle 8 bit characters, but strrchr()
1176         cannot.
1177         Should use '\377' rather than '\xff' for de-ANSI compiler.
1178
1179 2002-07-10  Koji Arai  <jca02266@nifty.ne.jp>
1180
1181         * released.
1182
1183         * configure.ac: updated version.
1184
1185         * src/header.c: change hex codes '\xff' to octal codes '\377'.
1186
1187         * tests/lha-test.in: Skip the lha-test9. (this test is imcomplete
1188         for now)
1189
1190         * tests/lha-test10: Should extract directory even if the archive
1191         header was level 0.
1192
1193         * src/header.c (get_header): Should convert kanji code and path
1194         separator for the level 0 header entry.
1195         Should convert `\' to `/' for level 0 header (do always to make sure,
1196         SO CANNOT CONTAIN THE `\' IN FILENAME).
1197         (init_header): [BUG]: Should not convert path separator here (Should do
1198         in write_header()).
1199         (write_header): [BUG]: should set pathname (contains directory part) to
1200         the LzHeader.name field on level 0 header archive even if the
1201         archive methods is -lhd-.
1202
1203 2002-07-09  Koji Arai  <jca02266@nifty.ne.jp>
1204
1205         * src/lha.h, src/header.c: the CoreFoundation header inclusion
1206         moved to header.c.
1207
1208         * src/lha.h, src/lharc.c, IFNAMES: macro NODIRECTORY was removed.
1209
1210         * src/lha.h, src/lhadd.c, src/lharc.c, src/lhext.c: fixed
1211         misspelling, not `writting' but `writing'.
1212
1213 2002-07-07  Koji Arai  <jca02266@nifty.ne.jp>
1214
1215         * src/lha.h, src/lha_macro.h: refined.
1216
1217         * src/lhadd.c (append_it): macro STRING_COMPARE() was discarded.
1218
1219         * src/lha_macro.h: ditto.
1220
1221         * IFNAMES: NOVOID was removed.
1222
1223         * src/lharc.c (main): terminate with exit status 2 when specified
1224         command line switche is wrong,
1225
1226         * configure.ac, config.h.in: added checking utime.h existent.
1227
1228         * src/crcio.c (putc_euc): void returned.
1229
1230         * src/header.c, src/lha.h, src/lha_macro.h, src/lhadd.c: refined.
1231
1232         * src/lharc.c, src/prototypes.h, src/slide.c: refined.
1233
1234         * configure.ac: should specify the 4th argument to AC_TRY_RUN()
1235         for cross compiling.
1236
1237         * configure.ac: fix a test expression.
1238
1239         * src/cproto.sh: added for maintainer.
1240
1241         * src/lha.h: support de-ANSI variable arguments.
1242
1243         * src/lharc.c: ditto.
1244
1245         * src/util.c: ditto.
1246
1247         * src/Makefile.am (lha_SOURCES): added prototypes.h.
1248
1249         * src/lha.h: function prototypes moved to prototypes.h.
1250
1251         * src/prototypes.h: generated by the cproto command.
1252
1253         * configure.ac: On Mac OS X, in spite of using the CoreFoundation
1254         for utf-8 conversion, I have missed specifying the `-framework
1255         CoreFoundation' in LDFLAGS.
1256
1257         * src/Makefile.am (EXTRA_DIST): no need to specify `lhdir.c'.
1258
1259 2002-07-06  Koji Arai  <jca02266@nifty.ne.jp>
1260
1261         * released.
1262
1263         * configure.ac: updated version.
1264
1265         * tests/lha-test10: added testing the header level 0, 1 and 2.
1266
1267         * tests/lha-test.in: ditto.
1268
1269         * src/lharc.c: `#include <stdarg.h>' moved to lha.h.
1270
1271         * src/lha.h: ditto.
1272
1273         * src/util.c: ditto.
1274
1275         * configure.ac: AC_REPLACE_FUNCS(vsnprintf).
1276
1277         * config.h.in: ditto.
1278
1279         * src/lha.h: ditto.
1280
1281         * src/vsnprintf.c: derived snprintf() which has the BSD licence.
1282
1283         * configure.ac: fix typo.
1284
1285         * configure.ac: checking whether strchr() is 8 bit clean or not.
1286
1287         * config.h.in: ditto.
1288
1289         * src/util.c: give functions strchr(), strrchr(), memchr() and
1290         memrchr() which handle 8 bit characters correctly.
1291
1292         * src/header.c: use above if needed.
1293
1294         * src/lha_macro.h: deprecate the macro name `DELIM2' which is path
1295         separattor for the filename in lha header.
1296         use LHA_PATHSEP instead.
1297
1298         * src/util.c (convdelim): ditto.
1299
1300         * src/header.c (convert_filename): ditto.
1301         (write_header): ditto.
1302
1303         * src/header.c (convert_filename): fixed bug on utf8 conversion,
1304         provisionally.
1305
1306 2002-06-30  Koji Arai  <jca02266@nifty.ne.jp>
1307
1308         * configure.ac: fixed typo.
1309
1310         * src/header.c (sjis_to_utf8): fixed typo.
1311         (utf8_to_sjis): fixed typo.
1312
1313         * src/lhadd.c (cmd_add): Missed to adjust the index when specified
1314         adding file is same as the generating archive file.
1315
1316 2002-06-29  Koji Arai  <jca02266@nifty.ne.jp>
1317
1318         * src/header.c (convert_filename): rename a function
1319         `filename_conv()' to `convert_filename()'.
1320         (sjis_to_utf8_static): no use the static variable.
1321         (utf8_to_sjis_static): ditto.
1322
1323         * src/lha.h: rename sjis_to_utf8_static() and utf8_to_sjis_static()
1324         into sjis_to_utf8() and utf8_to_sjis().
1325
1326         * src/lha_macro.h: added a macro `CODE_UTF8'.
1327
1328         * configure.ac: decide CODE_UTF8.
1329         updated version.
1330
1331         * 00readme.autoconf: modified.
1332
1333         * configure.ac: modified for Mac OS X.
1334
1335         * src/header.c, lha.h, lha_macro.h, lharc.c: Merged a patch for
1336         the Mac OS X, convert utf-8 filename to shift_jis. This patch was
1337         contributed on LHa BBS. Thanks to Hiroto Sakai.
1338
1339         * src/lhext.c: replaced bcmp() with memcmp().
1340
1341         * src/lha_macro.h: ditto.
1342
1343         * src/append.c: replace bcopy() with memcpy() or memmove().
1344
1345         * src/lha_macro.h: ditto.
1346
1347         * src/lhadd.c: ditto.
1348
1349         * src/lharc.c: ditto.
1350
1351         * src/header.c: ditto.
1352         replace bzero() with memset().
1353
1354         * src/lhadd.c (cmd_add): exlclude the target archive. (reported on
1355         the LHa BBS [28])
1356
1357         * src/slide.c (encode_alloc): Wrong value was assigned to the
1358         `dicbit', when SUPPORT_LH7 was not defined. (fixed by DANGAN,
1359         reported on the LHa BBS [38]).
1360
1361         * src/lha_macro.h: ditto.
1362
1363         * src/shuf.c (decode_c_st0): the method of -lh3- extraction was
1364         fixed by DANGAN (reported on the LHa BBS [35]).
1365
1366         * src/lha_macro.h (LH3_DICBIT): ditto.
1367
1368         * src/dhuf.c (encode_c_dyn): the method of -lh1- compression was
1369         refined by DANGAN (reported on the LHa BBS [30], [39], [62]).
1370
1371 2002-06-26  Koji Arai  <jca02266@nifty.ne.jp>
1372
1373         * tests/lha-test4: Skip a test for the LHa for UNIX (original version).
1374
1375         * tests/lha-test3: Rewrite tests for generic format archives.
1376
1377         * tests/lha-test2: Added tests for -lh0- method.
1378         Moved from contents of lha-test3 (tests for print archive).
1379
1380 2002-06-23  Koji Arai  <jca02266@nifty.ne.jp>
1381
1382         * tests/lha-test.in: On Cygwin/MinGW, cannot test lha-test9.
1383
1384         * src/lhext.c: Fixed a misspelling. not `Symblic' but `Symbolic'.
1385           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
1386
1387         * src/lharc.c: ditto.
1388
1389         * src/slide.c (interface;): Fixed wrong index.
1390           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
1391
1392         * 00readme.autoconf: refined.
1393
1394         * tests/lha-test9: added tests for overriding files.
1395
1396         * tests/lha-test.in: added test9.
1397
1398         * src/lhext.c (cmd_extract): ftell(stdin) will return -1, so
1399         re-fixed provisionaly.
1400
1401         * src/lhext.c (cmd_extract): When error occurred in extract_one(),
1402         should adjust point of file stream.
1403
1404         * configure.ac: library checkings (for libmingwex) should be done
1405         before header checkings.
1406
1407 2002-06-22  Koji Arai  <jca02266@nifty.ne.jp>
1408
1409         * released:
1410
1411         * configure.ac: updated version.
1412
1413         * src/lharc.c (init_variable): Removed useless assignments.
1414
1415         * src/lharc.c (main): Behavior was changed. when `q' or `q2' option
1416         (not `q1') is specified, the `f' option is enabled implicitly.
1417         In original behavior, the option `q', `q0', `q1' and `q2' will
1418         enable `f' option implicitly (bug?).
1419
1420         * src/lharc.c (main): [BUG]: When `q2' option is specified,
1421         level 2 header is generated.
1422
1423 2002-06-21  Koji Arai  <jca02266@nifty.ne.jp>
1424
1425         * tests/Makefile.am: Use the `DISTCLEANFILES' variable instead of the `dist-hook' target.
1426
1427         * tests/Makefile.am: Added `dist-hook' target for `make distcheck'.
1428
1429         * tests/lha-test.in: All tests are splited into some files.
1430
1431         * tests/Makefile.am: ditto.
1432
1433         * tests/lha-test2: ditto.
1434
1435         * tests/lha-test3: ditto.
1436
1437         * tests/lha-test4: ditto.
1438
1439         * tests/lha-test5: ditto.
1440
1441         * tests/lha-test6: ditto.
1442
1443         * tests/lha-test7: ditto.
1444
1445         * tests/lha-test8: ditto.
1446
1447 2002-06-20  Koji Arai  <jca02266@nifty.ne.jp>
1448
1449         * src/lhadd.c (cmd_add): No create an intermediate file when archive
1450         is written in stdout.
1451
1452 2002-06-19  Koji Arai  <jca02266@nifty.ne.jp>
1453
1454         * 00readme.autoconf: Modified.
1455
1456 2002-06-18  Koji Arai  <jca02266@nifty.ne.jp>
1457
1458         * configure.in: Removed. (no support the Autoconf version 2.13).
1459
1460         * config.h.in: Changed meaning of the value of the `MULTIBYTE_FILENAME'.
1461
1462         * src/header.c: Remove preprocess codes for kanji code decision.
1463
1464         * configure.ac: When --enable-multibyte-filename[=auto] is specified,
1465         decide kanji code for filename automatically.
1466         Otherwise, euc or sjis is specified, it is EUC-JP or Shift_JIS.
1467
1468 2002-06-17  Koji Arai  <jca02266@nifty.ne.jp>
1469
1470         * configure.in, configure.ac: updated version.
1471
1472         * configure.in, configure.ac: On mingw-runtime-2.0-1, opendir()
1473         has moved to libmingwex.a. For now, not listed in the
1474         /usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-5/specs file.
1475
1476         * src/lharc.c (message): use variable argument list with stdarg.
1477         (warning): ditto.
1478         (error): ditto.
1479         (write_error): removed.
1480         (read_error): removed.
1481         (build_temporary_name): use xsnprintf().
1482         (open_old_archive): ditto.
1483         (expanded_archive_name): move in the function (open_old_archive()) as static.
1484
1485         * src/crcio.c (putcode): changed for fatal_error().
1486         (putbits): changed for fatal_error().
1487         (fwrite_crc): ditto.
1488         (putc_euc): should return EOF when putc() cause error.
1489         (fwrite_txt): changed for putc_euc().
1490
1491         * src/header.c (get_header): changed for fatal_error(), warning() and error().
1492         (init_header): use xsnprintf().
1493         (write_header): fixed wrong usage of fwrite().
1494
1495         * src/lha.h: updated declarations.
1496
1497         * src/lhadd.c (append_it): changed for error().
1498
1499         * src/lhext.c (inquire_extract): ditto.
1500
1501         * src/lhlist.c (cmd_list): ditto.
1502
1503         * src/maketbl.c (make_table): ditto.
1504
1505         * src/util.c (copyfile): changed for fatal_error().
1506         (xsnprintf): newly added to adopt to various snprintf().
1507
1508 2002-06-12  Koji Arai  <jca02266@nifty.ne.jp>
1509
1510         * src/lha_macro.h (UNIX_STICKYBIT): fixed a misspelling.
1511
1512         * src/lhlist.c (list_one): ditto.
1513
1514 2002-06-11  Koji Arai  <jca02266@nifty.ne.jp>
1515
1516         * src/lharc.c: index was wrong.
1517           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
1518
1519 2002-06-06  Koji Arai  <jca02266@nifty.ne.jp>
1520
1521         * configure.ac, configure.in: changed macro name.
1522         not multibyte-char but multibyte-filename.
1523         not MULTIBYTE_CHAR but MULTIBYTE_FILENAME.
1524
1525         * 00readme.autoconf: ditto.
1526
1527         * config.h.in: ditto.
1528
1529         * src/util.c: ditto.
1530
1531         * src/lha_macro.h: ditto.
1532
1533         * src/header.c: ditto.
1534
1535         * config.h.in (INCLUDE_OWNER_NAME_IN_HEADER): changed macro name.
1536
1537         * configure.ac: ditto.
1538
1539         * src/header.c (init_header): ditto.
1540
1541         * src/header.c (init_header): should clear LzHeader.
1542
1543 2002-06-05  Koji Arai  <jca02266@nifty.ne.jp>
1544
1545         * released.
1546
1547         * configure.ac (AC_INIT): changed package name and specified tar name.
1548
1549         * src/lharc.c: added `--help' command line switch.
1550
1551         * Makefile.am: fixed EXTRA_DIST for 00readme.autoconf renaming.
1552
1553         * README.autoconf, 00readme.autoconf: renamed.
1554
1555         * configure.ac, configure.in: updated version.
1556
1557 2002-06-04  Koji Arai  <jca02266@nifty.ne.jp>
1558
1559         * README.autoconf, header.doc.euc: describe about user/group name
1560         header.
1561
1562         * src/header.c (init_header): added a macro MAKE_USER_NAME_HEADER.
1563
1564         * configure.ac, configure.in, config.h.in: added a switch
1565         `--enable-user-name-header' whether user/name extended header is
1566         made.
1567
1568 2002-06-01  Koji Arai  <jca02266@nifty.ne.jp>
1569
1570         * README.autoconf: `-i' switch of automake is deprecated.
1571
1572 2002-05-29  Koji Arai  <jca02266@nifty.ne.jp>
1573
1574         * configure.in, configure.ac, config.h.in: checks having uid_t/gid_t.
1575
1576         * src/lha.h: define uid_t/gid_t as `int' if no have it.
1577
1578         * src/lhext.c (adjust_info): mismatched braces.
1579
1580         * header.doc.euc: around user/group name extention.
1581
1582         * configure.in, configure.ac, config.h.in: checks having
1583         getpwuid/getgrgid and so on.
1584
1585         * src/header.c (get_header): use the extend header, user/group name.
1586         (init_header): ditto.
1587
1588         * src/lha.h: added <pwd.h>, <grp.h> header includings.
1589
1590         * src/lhext.c (adjust_info): change owner/group according to
1591         user/group name when extracting.
1592
1593         * src/lhlist.c (list_one): print user/group name when the header
1594         has them.
1595         (list_one): correct column position on OS68K.
1596
1597         * tests/lha-test.in: added timestamp checks.
1598
1599         * src/lha_macro.h: comment about OS code.
1600
1601 2002-05-28  Koji Arai  <jca02266@nifty.ne.jp>
1602
1603         * src/lharc.c (xstrdup): no need to call fatal_error().
1604
1605         * src/lhdir.h, src/lha_macro.h, src/lha.h: added modeline for vi(m).
1606
1607         * configure.ac, config.h.in: use new autoconf macro, AC_CHECK_MEMBERS().
1608
1609         * IFNAMES, configure.in, src/header.c, src/lharc.c: replaced with
1610         new macro name to adopt to the AC_CHECK_MEMBERS().
1611
1612 2002-05-27  Koji Arai  <jca02266@nifty.ne.jp>
1613
1614         * tests/lha-test.in: use awk instead of GNU sh-utils's `seq'.
1615
1616         * src/header.c (filename_conv): fix a bug, reverse condition and
1617         conversion for filename case.
1618
1619         * README.autoconf: added description about `get_filename_from_stdin' feature.
1620
1621         * tests/lha-test.in: remove test around the `get_filename_from_stdin'.
1622
1623         * src/lharc.c (main): never set `get_filename_from_stdin` to true.
1624         `echo foo | lha x foo.lzh' does not work like original LHa for UNIX.
1625
1626         * tests/lha-test.in: replace with #!/bin/bash.
1627
1628         * README.autoconf: added E-Mail address.
1629
1630         * configure.ac: updated version and added mail address for bug reports.
1631
1632         * configure.in: updated version.
1633
1634         * released.
1635
1636         * README.autoconf: added `make check' on sample description.
1637
1638         * configure.in, configure.ac: update version.
1639
1640 2002-05-26  Koji Arai  <jca02266@nifty.ne.jp>
1641
1642         * tests/lha-test.in: added some tests.
1643
1644         * tests/Makefile.am: refined.
1645
1646         * src/lhext.c (cmd_extract): discard useless fseek() calling (for MinGW).
1647
1648         * tests/lha-test.in: added some tests.
1649
1650         * tests/lha-test.in: specified `q' option on print archive test.
1651
1652         * src/lhadd.c (build_backup_file): On MinGW, cannot rename when
1653         a new file already exists.
1654
1655         * src/lhext.c (extract_one): On MinGW, set binary on stdout when
1656         print archive (`p' switch).
1657
1658         * tests/lha-test.in: added some tests.
1659
1660         * src/lhadd.c (report_archive_name_if_different): warning messages
1661         should be printed to stderr rather than stdout.
1662         (cmd_delete): ditto.
1663
1664         * tests/Makefile.am: fix EXTRA_DIST.
1665
1666         * configure.in, configure.ac: update version.
1667
1668         * tests/lha-test.in: added tests.
1669
1670         * tests/Makefile.am: ditto.
1671
1672         * configure.in, configure.ac, Makefile.am: ditto.
1673
1674 2002-05-25  Koji Arai  <jca02266@nifty.ne.jp>
1675
1676         * IFNAMES: updated.
1677
1678         * released.
1679
1680         * README.autoconf: added description for developpers.
1681
1682         * configure.in, configure.ac, config.h.in: refined.
1683
1684         * src/util.c (memmove): use HAVE_MEMMOVE.
1685         (mkdir): use HAVE_WORKING_FORK.
1686
1687         * src/huf.c: use HAVE_SYS_PARAM_H instead of sony_news.
1688
1689         * IFNAMES (sony_news): updated.
1690
1691         * configure.ac, configure.in (AC_INIT): added autoconfiscated date.
1692         see `lha --version'.
1693
1694 2002-05-22  Koji Arai  <jca02266@nifty.ne.jp>
1695
1696         * src/append.c, src/crcio.c, src/dhuf.c, src/extract.c, src/header.c, src/huf.c, src/larc.c, src/lhadd.c, src/lharc.c, src/lhdir.c, src/lhext.c, src/lhlist.c, src/maketbl.c, src/maketree.c, src/patmatch.c, src/shuf.c, src/slide.c, src/util.c:
1697         added modeline for vi(m).
1698
1699         * src/lharc.c: backslash was missing.
1700
1701 2002-05-20  Koji Arai  <jca02266@nifty.ne.jp>
1702
1703         * src/lharc.c (open_old_archive):  On MinGW, set binary stdin.
1704
1705         * src/lhadd.c (temporary_to_new_archive_file): On MinGW, set binary stdout.
1706
1707         * src/lha_macro.h: no define TMP_FILENAME_TEMPLATE in source.
1708
1709         * configure.ac, configure.in, README.autoconf: be able to specify
1710         --with-tmp-file=no which meaning TMP_FILENAME_TEMPLATE is undefined.
1711
1712         * src/lha.h: correct usage of mkstemp().
1713         On MinGW, opening file cannot be removed.
1714
1715         * src/lhadd.c (build_temporary_file): ditto.
1716
1717         * src/lharc.c (fatal_error): ditto.
1718
1719 2002-05-19  Koji Arai  <jca02266@nifty.ne.jp>
1720
1721         * configure.in, configure.ac: added AM_C_PROTOTYPES, AC_C_CONST.
1722         no use AM_C_PROTOTYPES for the present.
1723
1724         * config.h.in: ditto.
1725
1726         * src/lharc.c (print_tiny_usage_and_exit): change credit.
1727
1728         * src/lha_macro.h: put PLATFORM in a macro LHA_VERSION.
1729
1730         * src/lharc.c (print_version): ditto.
1731
1732         * configure.ac: use AC_CANONICAL_TARGET instead of AC_CANONICAL_HOST.
1733
1734 2002-05-19  Koji Arai  <jca02266@nifty.ne.jp>
1735
1736         * released.
1737
1738         * src/lharc.c (print_tiny_usage_and_exit): added credit.
1739         (print_version): print PLATFORM.
1740
1741         * configure.ac, configure.in, config.h.in: define PLATFORM.
1742
1743         * src/lharc.c (xstrdup): fix typo.
1744
1745         * configure.ac: added for autoconf-2.53.
1746
1747         * config.h.in: regenerate by autoconf-2.53.
1748
1749         * src/lharc.c (find_files): MinGW has st_ino but always 0.
1750
1751         * src/lharc.c (main): provisionally fix. set
1752         `get_filename_from_stdin' to false.
1753
1754         * src/util.c (rename): use builtin rename(2) on mingw32 (since have
1755         no link(2)).
1756
1757         * src/lharc.c (main): use xrealloc().
1758
1759         * src/lha_macro.h: specify "b" modifier always (for mingw32).
1760
1761         * src/lharc.c: use xstrdup() instead of strdup().
1762
1763         * src/lha_macro.h: ditto.
1764
1765         * src/lha_macro.h: getuid(), chown(), kill() are provisionally
1766         defined as 0.
1767
1768         * src/header.c: set `default_system_kanji_code' to Shift_JIS on mingw32.
1769
1770         * src/lhadd.c (build_temporary_file): no use SIGHUP for mingw32.
1771         (build_backup_file): ditto.
1772
1773         * src/lharc.c (interrupt): ditto.
1774
1775         * src/lhext.c (extract_one): ditto.
1776
1777         * src/lhext.c (make_parent_path): mkdir() has no 2nd argument on
1778         mingw32.
1779
1780 2002-05-18  Koji Arai  <jca02266@nifty.ne.jp>
1781
1782         * lha_macro.h: define bcmp(), bzero(), bcopy() even if
1783         STDC_HEADERS is defined.
1784
1785         * huf.c (alloc_buf): call fatal_error() when memory allocation failed
1786         instead of returning NULL.
1787
1788         * lharc.c (main): use xmalloc().
1789
1790         * util.c (copyfile): use xmalloc().
1791
1792         * slide.c (encode_alloc): use xmalloc().
1793
1794         * header.c (default_system_kanji_code): On HP-UX, use Shift_JIS as
1795         default kanji code.
1796
1797 2001-02-03  Koji Arai  <jca02266@nifty.ne.jp>
1798
1799         * README.autoconf, src/header.c: treat archive and system kanji
1800         code, correctly.
1801
1802 2001-01-31  Koji Arai  <jca02266@nifty.ne.jp>
1803
1804         * configure.in: mistakes for default archive method.
1805
1806         * src/header.c: directory separator 0xff must be transpose slash
1807         at first.
1808
1809 2001-01-29  Koji Arai  <jca02266@nifty.ne.jp>
1810
1811         * src/lharc.c: replace MKSTEMP with HAVE_MKSTEMP.
1812         substitute DEFAULT_LZHUFF_METHOD for the `compress_method' variable (it's default value).
1813
1814         * src/lha_macro.h: use the VERSION macro (defined by configure) for
1815         the LHA_VERSION definition.
1816
1817         * src/header.c: added condition whether the macro MULTIBYTE_CHAR
1818         is defined or not.
1819
1820         * src/Makefile.am: added $(SUPPORT_LZHUFF_METHOD) in AM_CPPFLAGS.
1821
1822         * configure.in: change version number from 1.14f to 1.14i.
1823         check function mkstemp().
1824         replace --enable-lh6 option to --with-default-method=[567].
1825
1826         * config.h.in: added definitions of HAVE_MKSTEMP and
1827         DEFAULT_LZHUFF_METHOD.
1828
1829         * IFNAMES: added a description about MKSTEMP.
1830
1831         * Makefile.am: added extra files.
1832
1833         * change-114f.txt, src/extract.c, src/header.c, src/huf.c, src/lha.h, src/lha_macro.h, src/lhadd.c, src/lharc.c, src/lhext.c, src/lhlist.c, src/maketbl.c, src/maketree.c, src/shuf.c, src/slide.c, src/util.c, src/dhuf.c, src/crcio.c:
1834         merged changing from lha-1.14f to lha-1.14i.
1835
1836         * change-114i.txt, src/header.c, src/huf.c, src/lha.h, src/lharc.c:
1837         import lha-114i
1838
1839         * src/huf.c, src/lharc.c, src/shuf.c, src/slide.c: import lha-114h
1840
1841         * Makefile, README.euc, change-114g.txt, change-114h.txt:
1842         import lha-114h
1843
1844         * src/crcio.c, src/dhuf.c, src/extract.c, src/header.c, src/huf.c, src/lha.h, src/lha_macro.h, src/lhadd.c, src/lharc.c, src/lhext.c, src/util.c:
1845         import lha-114g
1846
1847         * MACHINES2.euc, Makefile, README.euc, change-114g.txt, config.eng, config.jpn.euc, header.doc.euc, src/lhlist.c, src/maketbl.c, src/maketree.c, src/makezero.c, src/shuf.c, src/slide.c:
1848         import lha-114g
1849
1850         * src/header.c, src/lha_macro.h: implemented kanji code conversion
1851         on filename.
1852
1853         * src/header.c: fix bug in euc2sjis().
1854
1855 1999-10-05  Koji Arai  <jca02266@nifty.ne.jp>
1856
1857         * src/header.c: rename the macro HANKAKU_KATAKANA_P to the X0201_KANA_P
1858
1859 1999-09-30  Koji Arai  <jca02266@nifty.ne.jp>
1860
1861         * IFNAMES, configure.in, Makefile.in.org, README.autoconf, config.h.in, man/Makefile.am, src/Makefile.am, src/Makefile.in.org, Makefile.am, src/header.c, src/huf.c, src/larc.c, src/lha.h, src/lha_macro.h, src/lhadd.c, src/lharc.c, src/lhdir.c, src/lhdir.h, src/lhext.c, src/lhlist.c, src/makefile.dj, src/maketbl.c, src/maketree.c, src/patmatch.c, src/shuf.c, src/slide.c, src/util.c, Makefile, man/Makefile, src/Makefile, src/append.c, src/crcio.c, src/dhuf.c, src/extract.c:
1862         use the autoconf/automake
1863
1864 1999-08-28  Koji Arai  <jca02266@nifty.ne.jp>
1865
1866         * Makefile: import the lha-114f
1867
1868         * change-114f.txt, config.jpn.euc, header.doc.euc: import the lha-114f
1869
1870         * CHANGES.euc, MACHINES.euc, PROBLEMS.euc, README.euc, change-114e.txt, config.eng:
1871         import the lha-114f
1872
1873         * MACHINES2.euc, man/Makefile, man/lha.man, man/lha.n:
1874         import the lha-114f
1875
1876         * src/append.c, src/crcio.c: import the lha-114f
1877
1878         * src/Makefile, src/lha.h, src/lha_macro.h, src/lharc.c, src/lhdir.c, src/lhdir.h, src/lhext.c, src/lhlist.c, src/makefile.dj, src/maketbl.c, src/maketree.c, src/patmatch.c, src/shuf.c, src/slide.c, src/util.c:
1879         import the lha-114f
1880
1881         * src/dhuf.c, src/extract.c, src/header.c, src/huf.c, src/larc.c, src/lhadd.c:
1882         import the lha-114f