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