OSDN Git Service

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