OSDN Git Service

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