OSDN Git Service

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