Show
Ignore:
Timestamp:
12/21/07 18:32:34 (13 months ago)
Author:
charsbar
Message:

lang/perl/Archive-Lha: xs -> trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Archive-Lha/trunk/lib/Archive/Lha.pm

    r3270 r3413  
    55 
    66our $VERSION = '0.01'; 
     7 
     8require XSLoader; 
     9XSLoader::load('Archive::Lha', $VERSION); 
    710 
    8111; 
     
    2023=head1 ACKNOWLEDGMENT 
    2124 
    22 The decoding algorithm used here is based on the one of LHa for UNIX version 1.14i-ac20050924p1. Though largely modified, you may find that some parts of this perl port are still similar, or almost literal translations of the original, especially where I've not fully understood yet. 
     25The decoding (XS) part is based on the C sources of LHa for UNIX version 1.14i-ac20050924p1. Though I modified a lot not only to XSify but aslo to make it (comparatively) thread-safe and easy to understand, I'm not fair if I omit the names of the original authors/contributors. If you find this port valuable, kudos be to them. If you find something wrong, most probably that'd be my fault. 
    2326 
    24 Well, as a whole, they are different, in terms of file layout, object-orientedness and thread safety, not to mention the language used. 
     27According to the original C sources, those parts of LHa for UNIX version 1.14i-ac20050924p1 are copyrighted by Nobutaka Watazaki (1993-1995), Tsugio Okamoto (1996-2000?), and Koji Arai (2002-). I'm grateful to them, and also to all the people who involved in the development of LHa and its descendants/relatives including Masaru Oki, Yoichi Tagawa, Haruhiko Okumura, Haruyasu Yoshizaki, Kazuhiko Miki and others. 
    2528 
    26 However, I'm not fair if I omit the names of the original authors/contributors. If you find this port valuable, kudos be to them. If you find something wrong, most probably that'd be my fault. 
    27  
    28 According to the C sources, those parts of LHa for UNIX version 1.14i-ac20050924p1 are copyrighted by Nobutaka Watazaki (1993-1995), Tsugio Okamoto (1996-2000?), and Koji Arai (2002-). I'm grateful to them, and also to all the people who involved in the development of LHa and its descendants/relatives including Masaru Oki, Yoichi Tagawa, Haruhiko Okumura, Haruyasu Yoshizaki, Kazuhiko Miki and others. 
     29Other parts including headers file and perl sources are mine or of contributors to this perl port. See appropriate POD sections for details. 
    2930 
    3031=head1 SEE ALSO