OSDN Git Service

*** empty log message ***
[lha/lha.git] / ChangeLog
1 2002-07-29  Koji Arai  <jca02266@nifty.ne.jp>
2
3         * re-released.
4
5         * src/header.c: should use error() instead of fatal_error().
6         (get_header): fixed wrong end mark checking.
7
8         * src/prototypes.h: updated.
9
10         * released.
11
12         * configure.ac: updated version.
13
14         * 00readme.autoconf: described about header.c bug on original lha.
15
16 2002-07-28  Koji Arai  <jca02266@nifty.ne.jp>
17
18         * tests/Makefile.am: added lha-test11.
19
20         * src/crcio.c (fread_txt): responded to (gcc -Wall) compiler warnings.
21
22         * src/header.c (generic_to_unix_stamp): ditto.
23
24         * src/lha_macro.h: ditto.
25
26         * src/lhadd.c (delete): ditto.
27
28         * src/lharc.c (open_old_archive): ditto.
29
30         * src/lhlist.c (list_one): ditto.
31
32         * src/prototypes.h: updated.
33
34         * tests/lha-test.in: added lha-test11.
35
36         * tests/lha-test8: added tests for level 0 and 2 header.
37
38         * tests/lha-test10: added tests for generic header.
39
40         * tests/lha-test11: testing for long filename. moved from lha-test10.
41
42 2002-07-26  Koji Arai  <jca02266@nifty.ne.jp>
43
44         * src/header.c (write_header): rewritten.
45
46 2002-07-25  Koji Arai  <jca02266@nifty.ne.jp>
47
48         * tests/lha-test4: stderr should be redirected.
49
50         * src/lharc.c (main): exit with status 1 (meaning failure) when the
51         function error() was called.
52         (error): ditto.
53
54         * src/lha.h (LzHeader.last_modified_stamp;): no longer used it.
55
56         * src/header.c (get_header): rewritten.
57
58 2002-07-21  Koji Arai  <jca02266@nifty.ne.jp>
59
60         * tests/lha-test10: change grep pattern so that pattern matches
61         a carriage return at the end of line for MinGW.
62
63         * src/lha.h: define `struct utimbuf' when utime.h is not given
64         such as MinGW. (Microsoft Visual Studio 6.0 has sys/utime.h).
65
66         * src/lhext.c (make_parent_path): missing braces.
67
68         * tests/lha-test.in (check): print script line number when test failed.
69
70         * 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.
71
72         * tests/lha-test10: on Cygwin/MinGW, could not make 255 bytes
73         filename. (the system limit of filename length contains the length
74         of current directory.)
75
76         * tests/lha-test10: should use /bin/ls instead of ls, since
77         /usr/ucb/ls puts size on 4th field (on Solaris).
78
79 2002-07-18  Koji Arai  <jca02266@nifty.ne.jp>
80
81         * released.
82
83         * configure.ac: updated version.
84
85         * src/lhext.c (adjust_info): should use `struct utimbuf' for
86         `utime(2)' rather than `time_t' array.
87
88         * src/header.c (write_header): [BUG]: should not write zero at the
89         first byte on level 2 header. should adjust header size.
90
91         * tests/lha-test10: added tests for level 2 header.
92
93         * src/lha_macro.h, src/header.c (setup_get): moved to header.c.
94         (get_byte): ditto.
95         (put_ptr): ditto.
96         (setup_put): ditto.
97         (put_byte): ditto.
98         (get_bytes): newly added.
99         (put_bytes): newly added.
100
101 2002-07-17  Koji Arai  <jca02266@nifty.ne.jp>
102
103         * src/header.c (get_header): [BUG]: Could not read level 2 header
104         when the header size is grater than 256.
105         (convert_filename): Should use the `FILENAME_LENGTH' macro rather
106         than 256.
107         (write_header): [BUG]: Suppress to overflow the header size when
108         long filename is written in level 0 or 1 header. On level 1
109         header, always use the extended filename header instead of the
110         base header.
111
112         * src/lha.h (LzHeader): the type of `header_size' was changed
113         from `unsigned char' to `int', for the level 2 header archive.
114
115         * src/lhext.c (extract_one): should use the `FILENAME_LENGTH'
116         macro rather than 256 (provisionally fixed).
117
118         * tests/lha-test.in: notify failed test number.
119
120         * tests/lha-test10: added tests for long pathname.
121
122 2002-07-14  Koji Arai  <jca02266@nifty.ne.jp>
123
124         * re-released.
125
126         * src/header.c (get_header): archive path separator should be
127         converted always.
128
129         * released.
130
131         * configure.ac: updated version.
132
133         * src/header.c (write_header): if user/group name is not set,
134         extended header (0x52 and 0x53) should not be made.
135
136         * tests/lha-test10: added testing to handle deep directory.
137
138         * src/header.c (write_header): fixed typo, not strchr() but
139         strrchr().
140
141         * src/prototypes.h: regenerated.
142
143         * src/header.c (convert_filename): prefer to use the
144         `FILENAME_LENGTH' macro rather than 256.
145
146         * src/cproto.sh: fixed typo.
147
148 2002-07-11  Koji Arai  <jca02266@nifty.ne.jp>
149
150         * tests/Makefile.am (EXTRA_DIST): lha-test9 and lha-test10 were missed.
151
152         * src/lharc.c (print_tiny_usage): no exit here.
153
154         * src/header.c (ConvertEncodingByIconv): newly added.
155         Thanks to Hiroto Sakai.
156
157         * configure.ac, config.h.in: Checking to have iconv() for utf-8
158         conversion.
159
160         * configure.ac: Checking whether strrchr() is 8 bit clean or not.
161         On Mac OS X, strchr() can handle 8 bit characters, but strrchr()
162         cannot.
163         Should use '\377' rather than '\xff' for de-ANSI compiler.
164
165 2002-07-10  Koji Arai  <jca02266@nifty.ne.jp>
166
167         * released.
168
169         * configure.ac: updated version.
170
171         * src/header.c: change hex codes '\xff' to octal codes '\377'.
172
173         * tests/lha-test.in: Skip the lha-test9. (this test is imcomplete
174         for now)
175
176         * tests/lha-test10: Should extract directory even if the archive
177         header was level 0.
178
179         * src/header.c (get_header): Should convert kanji code and path
180         separator for the level 0 header entry.
181         Should convert `\' to `/' for level 0 header (do always to make sure,
182         SO CANNOT CONTAIN THE `\' IN FILENAME).
183         (init_header): [BUG]: Should not convert path separator here (Should do
184         in write_header()).
185         (write_header): [BUG]: should set pathname (contains directory part) to
186         the LzHeader.name field on level 0 header archive even if the
187         archive methods is -lhd-.
188
189 2002-07-09  Koji Arai  <jca02266@nifty.ne.jp>
190
191         * src/lha.h, src/header.c: the CoreFoundation header inclusion
192         moved to header.c.
193
194         * src/lha.h, src/lharc.c, IFNAMES: macro NODIRECTORY was removed.
195
196         * src/lha.h, src/lhadd.c, src/lharc.c, src/lhext.c: fixed
197         misspelling, not `writting' but `writing'.
198
199 2002-07-07  Koji Arai  <jca02266@nifty.ne.jp>
200
201         * src/lha.h, src/lha_macro.h: refined.
202
203         * src/lhadd.c (append_it): macro STRING_COMPARE() was discarded.
204
205         * src/lha_macro.h: ditto.
206
207         * IFNAMES: NOVOID was removed.
208
209         * src/lharc.c (main): terminate with exit status 2 when specified
210         command line switche is wrong,
211
212         * configure.ac, config.h.in: added checking utime.h existent.
213
214         * src/crcio.c (putc_euc): void returned.
215
216         * src/header.c, src/lha.h, src/lha_macro.h, src/lhadd.c: refined.
217
218         * src/lharc.c, src/prototypes.h, src/slide.c: refined.
219
220         * configure.ac: should specify the 4th argument to AC_TRY_RUN()
221         for cross compiling.
222
223         * configure.ac: fix a test expression.
224
225         * src/cproto.sh: added for maintainer.
226
227         * src/lha.h: support de-ANSI variable arguments.
228
229         * src/lharc.c: ditto.
230
231         * src/util.c: ditto.
232
233         * src/Makefile.am (lha_SOURCES): added prototypes.h.
234
235         * src/lha.h: function prototyps moved to prototypes.h.
236
237         * src/prototypes.h: generated by the cproto command.
238
239         * configure.ac: On Mac OS X, in spite of using the CoreFoundation
240         for utf-8 conversion, I have missed specifying the `-framework
241         CoreFoundation' in LDFLAGS.
242
243         * src/Makefile.am (EXTRA_DIST): no need to specify `lhdir.c'.
244
245 2002-07-06  Koji Arai  <jca02266@nifty.ne.jp>
246
247         * released.
248
249         * configure.ac: updated version.
250
251         * tests/lha-test10: added testing the header level 0, 1 and 2.
252
253         * tests/lha-test.in: ditto.
254
255         * src/lharc.c: `#include <stdarg.h>' moved to lha.h.
256
257         * src/lha.h: ditto.
258
259         * src/util.c: ditto.
260
261         * configure.ac: AC_REPLACE_FUNCS(vsnprintf).
262
263         * config.h.in: ditto.
264
265         * src/lha.h: ditto.
266
267         * src/vsnprintf.c: derived snprintf() which has the BSD licence.
268
269         * configure.ac: fix typo.
270
271         * configure.ac: checking whether strchr() is 8 bit clean or not.
272
273         * config.h.in: ditto.
274
275         * src/util.c: give functions strchr(), strrchr(), memchr() and
276         memrchr() which handle 8 bit characters correctly.
277
278         * src/header.c: use above if needed.
279
280         * src/lha_macro.h: deprecate the macro name `DELIM2' which is path
281         separattor for the filename in lha header.
282         use LHA_PATHSEP instead.
283
284         * src/util.c (convdelim): ditto.
285
286         * src/header.c (convert_filename): ditto.
287         (write_header): ditto.
288
289         * src/header.c (convert_filename): fixed bug on utf8 conversion,
290         provisionally.
291
292 2002-06-30  Koji Arai  <jca02266@nifty.ne.jp>
293
294         * configure.ac: fixed typo.
295
296         * src/header.c (sjis_to_utf8): fixed typo.
297         (utf8_to_sjis): fixed typo.
298
299         * src/lhadd.c (cmd_add): Missed to adjust the index when specified
300         adding file is same as the generating archive file.
301
302 2002-06-29  Koji Arai  <jca02266@nifty.ne.jp>
303
304         * src/header.c (convert_filename): rename a function
305         `filename_conv()' to `convert_filename()'.
306         (sjis_to_utf8_static): no use the static variable.
307         (utf8_to_sjis_static): ditto.
308
309         * src/lha.h: rename sjis_to_utf8_static() and utf8_to_sjis_static()
310         into sjis_to_utf8() and utf8_to_sjis().
311
312         * src/lha_macro.h: added a macro `CODE_UTF8'.
313
314         * configure.ac: decide CODE_UTF8.
315         updated version.
316
317         * 00readme.autoconf: modified.
318
319         * configure.ac: modified for Mac OS X.
320
321         * src/header.c, lha.h, lha_macro.h, lharc.c: Merged a patch for
322         the Mac OS X, convert utf-8 filename to shift_jis. This patch was
323         contributed on LHa BBS. Thanks to Hiroto Sakai.
324
325         * src/lhext.c: replaced bcmp() with memcmp().
326
327         * src/lha_macro.h: ditto.
328
329         * src/append.c: replace bcopy() with memcpy() or memmove().
330
331         * src/lha_macro.h: ditto.
332
333         * src/lhadd.c: ditto.
334
335         * src/lharc.c: ditto.
336
337         * src/header.c: ditto.
338         replace bzero() with memset().
339
340         * src/lhadd.c (cmd_add): exlclude the target archive. (reported on
341         the LHa BBS [28])
342
343         * src/slide.c (encode_alloc): Wrong value was assigned to the
344         `dicbit', when SUPPORT_LH7 was not defined. (fixed by DANGAN,
345         reported on the LHa BBS [38]).
346
347         * src/lha_macro.h: ditto.
348
349         * src/shuf.c (decode_c_st0): the method of -lh3- extraction was
350         fixed by DANGAN (reported on the LHa BBS [35]).
351
352         * src/lha_macro.h (LH3_DICBIT): ditto.
353
354         * src/dhuf.c (encode_c_dyn): the method of -lh1- compression was
355         refined by DANGAN (reported on the LHa BBS [30], [39], [62]).
356
357 2002-06-26  Koji Arai  <jca02266@nifty.ne.jp>
358
359         * tests/lha-test4: Skip a test for the LHa for UNIX (original version).
360
361         * tests/lha-test3: Rewrite tests for generic format archives.
362
363         * tests/lha-test2: Added tests for -lh0- method.
364         Moved from contents of lha-test3 (tests for print archive).
365
366 2002-06-23  Koji Arai  <jca02266@nifty.ne.jp>
367
368         * tests/lha-test.in: On Cygwin/MinGW, cannot test lha-test9.
369
370         * src/lhext.c: Fixed a misspelling. not `Symblic' but `Symbolic'.
371           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
372
373         * src/lharc.c: ditto.
374
375         * src/slide.c (interface;): Fixed wrong index.
376           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
377
378         * 00readme.autoconf: refined.
379
380         * tests/lha-test9: added tests for overriding files.
381
382         * tests/lha-test.in: added test9.
383
384         * src/lhext.c (cmd_extract): ftell(stdin) will return -1, so
385         re-fixed provisionaly.
386
387         * src/lhext.c (cmd_extract): When error occurred in extract_one(),
388         should adjust point of file stream.
389
390         * configure.ac: library checkings (for libmingwex) should be done
391         before header checkings.
392
393 2002-06-22  Koji Arai  <jca02266@nifty.ne.jp>
394
395         * released:
396
397         * configure.ac: updated version.
398
399         * src/lharc.c (init_variable): Removed useless assignments.
400
401         * src/lharc.c (main): Behavior was changed. when `q' or `q2' option
402         (not `q1') is specified, the `f' option is enabled implicitly.
403         In original behavior, the option `q', `q0', `q1' and `q2' will
404         enable `f' option implicitly (bug?).
405
406         * src/lharc.c (main): [BUG]: When `q2' option is specified,
407         level 2 header is generated.
408
409 2002-06-21  Koji Arai  <jca02266@nifty.ne.jp>
410
411         * tests/Makefile.am: Use the `DISTCLEANFILES' variable instead of the `dist-hook' target.
412
413         * tests/Makefile.am: Added `dist-hook' target for `make distcheck'.
414
415         * tests/lha-test.in: All tests are splited into some files.
416
417         * tests/Makefile.am: ditto.
418
419         * tests/lha-test2: ditto.
420
421         * tests/lha-test3: ditto.
422
423         * tests/lha-test4: ditto.
424
425         * tests/lha-test5: ditto.
426
427         * tests/lha-test6: ditto.
428
429         * tests/lha-test7: ditto.
430
431         * tests/lha-test8: ditto.
432
433 2002-06-20  Koji Arai  <jca02266@nifty.ne.jp>
434
435         * src/lhadd.c (cmd_add): No create an intermediate file when archive
436         is written in stdout.
437
438 2002-06-19  Koji Arai  <jca02266@nifty.ne.jp>
439
440         * 00readme.autoconf: Modified.
441
442 2002-06-18  Koji Arai  <jca02266@nifty.ne.jp>
443
444         * configure.in: Removed. (no support the Autoconf version 2.13).
445
446         * config.h.in: Changed meaning of the value of the `MULTIBYTE_FILENAME'.
447
448         * src/header.c: Remove preprocess codes for kanji code decision.
449
450         * configure.ac: When --enable-multibyte-filename[=auto] is specified,
451         decide kanji code for filename automatically.
452         Otherwise, euc or sjis is specified, it is EUC-JP or Shift_JIS.
453
454 2002-06-17  Koji Arai  <jca02266@nifty.ne.jp>
455
456         * configure.in, configure.ac: updated version.
457
458         * configure.in, configure.ac: On mingw-runtime-2.0-1, opendir()
459         has moved to libmingwex.a. For now, not listed in the
460         /usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-5/specs file.
461
462         * src/lharc.c (message): use variable argument list with stdarg.
463         (warning): ditto.
464         (error): ditto.
465         (write_error): removed.
466         (read_error): removed.
467         (build_temporary_name): use xsnprintf().
468         (open_old_archive): ditto.
469         (expanded_archive_name): move in the function (open_old_archive()) as static.
470
471         * src/crcio.c (putcode): changed for fatal_error().
472         (putbits): changed for fatal_error().
473         (fwrite_crc): ditto.
474         (putc_euc): should return EOF when putc() cause error.
475         (fwrite_txt): changed for putc_euc().
476
477         * src/header.c (get_header): changed for fatal_error(), warning() and error().
478         (init_header): use xsnprintf().
479         (write_header): fixed wrong usage of fwrite().
480
481         * src/lha.h: updated declarations.
482
483         * src/lhadd.c (append_it): changed for error().
484
485         * src/lhext.c (inquire_extract): ditto.
486
487         * src/lhlist.c (cmd_list): ditto.
488
489         * src/maketbl.c (make_table): ditto.
490
491         * src/util.c (copyfile): changed for fatal_error().
492         (xsnprintf): newly added to adopt to various snprintf().
493
494 2002-06-12  Koji Arai  <jca02266@nifty.ne.jp>
495
496         * src/lha_macro.h (UNIX_STICKYBIT): fixed a misspelling.
497
498         * src/lhlist.c (list_one): ditto.
499
500 2002-06-11  Koji Arai  <jca02266@nifty.ne.jp>
501
502         * src/lharc.c: index was wrong.
503           reported on LHa BBS (see <http://www2m.biglobe.ne.jp/~dolphin/>).
504
505 2002-06-06  Koji Arai  <jca02266@nifty.ne.jp>
506
507         * configure.ac, configure.in: changed macro name.
508         not multibyte-char but multibyte-filename.
509         not MULTIBYTE_CHAR but MULTIBYTE_FILENAME.
510
511         * 00readme.autoconf: ditto.
512
513         * config.h.in: ditto.
514
515         * src/util.c: ditto.
516
517         * src/lha_macro.h: ditto.
518
519         * src/header.c: ditto.
520
521         * config.h.in (INCLUDE_OWNER_NAME_IN_HEADER): changed macro name.
522
523         * configure.ac: ditto.
524
525         * src/header.c (init_header): ditto.
526
527         * src/header.c (init_header): should clear LzHeader.
528
529 2002-06-05  Koji Arai  <jca02266@nifty.ne.jp>
530
531         * released.
532
533         * configure.ac (AC_INIT): changed package name and specified tar name.
534
535         * src/lharc.c: added `--help' command line switch.
536
537         * Makefile.am: fixed EXTRA_DIST for 00readme.autoconf renaming.
538
539         * README.autoconf, 00readme.autoconf: renamed.
540
541         * configure.ac, configure.in: updated version.
542
543 2002-06-04  Koji Arai  <jca02266@nifty.ne.jp>
544
545         * README.autoconf, header.doc.euc: describe about user/group name
546         header.
547
548         * src/header.c (init_header): added a macro MAKE_USER_NAME_HEADER.
549
550         * configure.ac, configure.in, config.h.in: added a switch
551         `--enable-user-name-header' whether user/name extended header is
552         made.
553
554 2002-06-01  Koji Arai  <jca02266@nifty.ne.jp>
555
556         * README.autoconf: `-i' switch of automake is deprecated.
557
558 2002-05-29  Koji Arai  <jca02266@nifty.ne.jp>
559
560         * configure.in, configure.ac, config.h.in: checks having uid_t/gid_t.
561
562         * src/lha.h: define uid_t/gid_t as `int' if no have it.
563
564         * src/lhext.c (adjust_info): mismatched braces.
565
566         * header.doc.euc: around user/group name extention.
567
568         * configure.in, configure.ac, config.h.in: checks having
569         getpwuid/getgrgid and so on.
570
571         * src/header.c (get_header): use the extend header, user/group name.
572         (init_header): ditto.
573
574         * src/lha.h: added <pwd.h>, <grp.h> header includings.
575
576         * src/lhext.c (adjust_info): change owner/group according to
577         user/group name when extracting.
578
579         * src/lhlist.c (list_one): print user/group name when the header
580         has them.
581         (list_one): correct column position on OS68K.
582
583         * tests/lha-test.in: added timestamp checks.
584
585         * src/lha_macro.h: comment about OS code.
586
587 2002-05-28  Koji Arai  <jca02266@nifty.ne.jp>
588
589         * src/lharc.c (xstrdup): no need to call fatal_error().
590
591         * src/lhdir.h, src/lha_macro.h, src/lha.h: added modeline for vi(m).
592
593         * configure.ac, config.h.in: use new autoconf macro, AC_CHECK_MEMBERS().
594
595         * IFNAMES, configure.in, src/header.c, src/lharc.c: replaced with
596         new macro name to adopt to the AC_CHECK_MEMBERS().
597
598 2002-05-27  Koji Arai  <jca02266@nifty.ne.jp>
599
600         * tests/lha-test.in: use awk instead of GNU sh-utils's `seq'.
601
602         * src/header.c (filename_conv): fix a bug, reverse condition and
603         conversion for filename case.
604
605         * README.autoconf: added description about `get_filename_from_stdin' feature.
606
607         * tests/lha-test.in: remove test around the `get_filename_from_stdin'.
608
609         * src/lharc.c (main): never set `get_filename_from_stdin` to true.
610         `echo foo | lha x foo.lzh' does not work like original LHa for UNIX.
611
612         * tests/lha-test.in: replace with #!/bin/bash.
613
614         * README.autoconf: added E-Mail address.
615
616         * configure.ac: updated version and added mail address for bug reports.
617
618         * configure.in: updated version.
619
620         * released.
621
622         * README.autoconf: added `make check' on sample description.
623
624         * configure.in, configure.ac: update version.
625
626 2002-05-26  Koji Arai  <jca02266@nifty.ne.jp>
627
628         * tests/lha-test.in: added some tests.
629
630         * tests/Makefile.am: refined.
631
632         * src/lhext.c (cmd_extract): discard useless fseek() calling (for MinGW).
633
634         * tests/lha-test.in: added some tests.
635
636         * tests/lha-test.in: specified `q' option on print archive test.
637
638         * src/lhadd.c (build_backup_file): On MinGW, cannot rename when
639         a new file already exists.
640
641         * src/lhext.c (extract_one): On MinGW, set binary on stdout when
642         print archive (`p' switch).
643
644         * tests/lha-test.in: added some tests.
645
646         * src/lhadd.c (report_archive_name_if_different): warning messages
647         should be printed to stderr rather than stdout.
648         (cmd_delete): ditto.
649
650         * tests/Makefile.am: fix EXTRA_DIST.
651
652         * configure.in, configure.ac: update version.
653
654         * tests/lha-test.in: added tests.
655
656         * tests/Makefile.am: ditto.
657
658         * configure.in, configure.ac, Makefile.am: ditto.
659
660 2002-05-25  Koji Arai  <jca02266@nifty.ne.jp>
661
662         * IFNAMES: updated.
663
664         * released.
665
666         * README.autoconf: added description for developpers.
667
668         * configure.in, configure.ac, config.h.in: refined.
669
670         * src/util.c (memmove): use HAVE_MEMMOVE.
671         (mkdir): use HAVE_WORKING_FORK.
672
673         * src/huf.c: use HAVE_SYS_PARAM_H instead of sony_news.
674
675         * IFNAMES (sony_news): updated.
676
677         * configure.ac, configure.in (AC_INIT): added autoconfiscated date.
678         see `lha --version'.
679
680 2002-05-22  Koji Arai  <jca02266@nifty.ne.jp>
681
682         * 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:
683         added modeline for vi(m).
684
685         * src/lharc.c: backslash was missing.
686
687 2002-05-20  Koji Arai  <jca02266@nifty.ne.jp>
688
689         * src/lharc.c (open_old_archive):  On MinGW, set binary stdin.
690
691         * src/lhadd.c (temporary_to_new_archive_file): On MinGW, set binary stdout.
692
693         * src/lha_macro.h: no define TMP_FILENAME_TEMPLATE in source.
694
695         * configure.ac, configure.in, README.autoconf: be able to specify
696         --with-tmp-file=no which meaning TMP_FILENAME_TEMPLATE is undefined.
697
698         * src/lha.h: correct usage of mkstemp().
699         On MinGW, opening file cannot be removed.
700
701         * src/lhadd.c (build_temporary_file): ditto.
702
703         * src/lharc.c (fatal_error): ditto.
704
705 2002-05-19  Koji Arai  <jca02266@nifty.ne.jp>
706
707         * configure.in, configure.ac: added AM_C_PROTOTYPES, AC_C_CONST.
708         no use AM_C_PROTOTYPES for the present.
709
710         * config.h.in: ditto.
711
712         * src/lharc.c (print_tiny_usage_and_exit): change credit.
713
714         * src/lha_macro.h: put PLATFORM in a macro LHA_VERSION.
715
716         * src/lharc.c (print_version): ditto.
717
718         * configure.ac: use AC_CANONICAL_TARGET instead of AC_CANONICAL_HOST.
719
720 2002-05-19  Koji Arai  <jca02266@nifty.ne.jp>
721
722         * released.
723
724         * src/lharc.c (print_tiny_usage_and_exit): added credit.
725         (print_version): print PLATFORM.
726
727         * configure.ac, configure.in, config.h.in: define PLATFORM.
728
729         * src/lharc.c (xstrdup): fix typo.
730
731         * configure.ac: added for autoconf-2.53.
732
733         * config.h.in: regenerate by autoconf-2.53.
734
735         * src/lharc.c (find_files): MinGW has st_ino but always 0.
736
737         * src/lharc.c (main): provisionally fix. set
738         `get_filename_from_stdin' to false.
739
740         * src/util.c (rename): use builtin rename(2) on mingw32 (since have
741         no link(2)).
742
743         * src/lharc.c (main): use xrealloc().
744
745         * src/lha_macro.h: specify "b" modifier always (for mingw32).
746
747         * src/lharc.c: use xstrdup() instead of strdup().
748
749         * src/lha_macro.h: ditto.
750
751         * src/lha_macro.h: getuid(), chown(), kill() are provisionally
752         defined as 0.
753
754         * src/header.c: set `default_system_kanji_code' to Shift_JIS on mingw32.
755
756         * src/lhadd.c (build_temporary_file): no use SIGHUP for mingw32.
757         (build_backup_file): ditto.
758
759         * src/lharc.c (interrupt): ditto.
760
761         * src/lhext.c (extract_one): ditto.
762
763         * src/lhext.c (make_parent_path): mkdir() has no 2nd argument on
764         mingw32.
765
766 2002-05-18  Koji Arai  <jca02266@nifty.ne.jp>
767
768         * lha_macro.h: define bcmp(), bzero(), bcopy() even if
769         STDC_HEADERS is defined.
770
771         * huf.c (alloc_buf): call fatal_error() when memory allocation failed
772         instead of returning NULL.
773
774         * lharc.c (main): use xmalloc().
775
776         * util.c (copyfile): use xmalloc().
777
778         * slide.c (encode_alloc): use xmalloc().
779
780         * header.c (default_system_kanji_code): On HP-UX, use Shift_JIS as
781         default kanji code.
782
783 2001-02-03  Koji Arai  <jca02266@nifty.ne.jp>
784
785         * README.autoconf, src/header.c: treat archive and system kanji
786         code, correctly.
787
788 2001-01-31  Koji Arai  <jca02266@nifty.ne.jp>
789
790         * configure.in: mistakes for default archive method.
791
792         * src/header.c: directory separator 0xff must be transpose slash
793         at first.
794
795 2001-01-29  Koji Arai  <jca02266@nifty.ne.jp>
796
797         * src/lharc.c: replace MKSTEMP with HAVE_MKSTEMP.
798         substitute DEFAULT_LZHUFF_METHOD for the `compress_method' variable (it's default value).
799
800         * src/lha_macro.h: use the VERSION macro (defined by configure) for
801         the LHA_VERSION definition.
802
803         * src/header.c: added condition whether the macro MULTIBYTE_CHAR
804         is defined or not.
805
806         * src/Makefile.am: added $(SUPPORT_LZHUFF_METHOD) in AM_CPPFLAGS.
807
808         * configure.in: change version number from 1.14f to 1.14i.
809         check function mkstemp().
810         replace --enable-lh6 option to --with-default-method=[567].
811
812         * config.h.in: added definitions of HAVE_MKSTEMP and
813         DEFAULT_LZHUFF_METHOD.
814
815         * IFNAMES: added a description about MKSTEMP.
816
817         * Makefile.am: added extra files.
818
819         * 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:
820         merged changing from lha-1.14f to lha-1.14i.
821
822         * change-114i.txt, src/header.c, src/huf.c, src/lha.h, src/lharc.c:
823         import lha-114i
824
825         * src/huf.c, src/lharc.c, src/shuf.c, src/slide.c: import lha-114h
826
827         * Makefile, README.euc, change-114g.txt, change-114h.txt:
828         import lha-114h
829
830         * 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:
831         import lha-114g
832
833         * 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:
834         import lha-114g
835
836         * src/header.c, src/lha_macro.h: implemented kanji code conversion
837         on filename.
838
839         * src/header.c: fix bug in euc2sjis().
840
841 1999-10-05  Koji Arai  <jca02266@nifty.ne.jp>
842
843         * src/header.c: rename the macro HANKAKU_KATAKANA_P to the X0201_KANA_P
844
845 1999-09-30  Koji Arai  <jca02266@nifty.ne.jp>
846
847         * 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:
848         use the autoconf/automake
849
850 1999-08-28  Koji Arai  <jca02266@nifty.ne.jp>
851
852         * Makefile: import the lha-114f
853
854         * change-114f.txt, config.jpn.euc, header.doc.euc: import the lha-114f
855
856         * CHANGES.euc, MACHINES.euc, PROBLEMS.euc, README.euc, change-114e.txt, config.eng:
857         import the lha-114f
858
859         * MACHINES2.euc, man/Makefile, man/lha.man, man/lha.n:
860         import the lha-114f
861
862         * src/append.c, src/crcio.c: import the lha-114f
863
864         * 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:
865         import the lha-114f
866
867         * src/dhuf.c, src/extract.c, src/header.c, src/huf.c, src/larc.c, src/lhadd.c:
868         import the lha-114f