OSDN Git Service

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