Show
Ignore:
Timestamp:
05/31/08 11:11:18 (6 months ago)
Author:
charsbar
Message:

Archive-Lha: added diagnostic message to know what's going on under darwin-level2/solaris

Location:
lang/perl/Archive-Lha/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Archive-Lha/trunk/Changes

    r10646 r12889  
    11Revision history for Archive-Lha 
     2 
     30.03_01 not yet released 
     4  - now explicitly requires 5.8.1 to support :raw open 
     5  - bumped up the version req of Test::UseAllModules to 0.09 
     6  - added diagnostic message to know what's going on under 
     7    the "darwin-2level" (and solaris) 
    28 
    390.03 2008/04/28 
  • lang/perl/Archive-Lha/trunk/Makefile.PL

    r3588 r12889  
    11use strict; 
    22use warnings; 
     3use 5.008001; 
    34use ExtUtils::MakeMaker; 
    45 
     
    1920    'List::Util'          => 0, 
    2021    'Log::Dispatch'       => 0, 
    21     'Test::UseAllModules' => 0, 
    22     'Test::More'          => 0.47, 
     22    'Test::UseAllModules' => '0.09', 
     23    'Test::More'          => '0.47', 
    2324    'Time::Piece'         => 0, 
    2425  }, 
  • lang/perl/Archive-Lha/trunk/lib/Archive/Lha.pm

    r10646 r12889  
    44use warnings; 
    55 
    6 our $VERSION = '0.03'; 
     6our $VERSION = '0.03_01'; 
    77 
    88require XSLoader; 
  • lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header/Level2.pm

    r3588 r12889  
    1414 
    1515  croak "Header is broken: size is null" unless $size; 
    16   croak "Header is too large" if $size > 4096; 
     16  croak "Header is too large: $size" if $size > 4096; 
    1717 
    1818  $stream->seek( $start );