/[cwmp]/google/trunk/inc/Module/Install/Win32.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /google/trunk/inc/Module/Install/Win32.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 241 by dpavlin, Mon Nov 12 16:29:06 2007 UTC revision 242 by dpavlin, Mon Jul 14 16:35:25 2008 UTC
# Line 4  package Module::Install::Win32; Line 4  package Module::Install::Win32;
4  use strict;  use strict;
5  use Module::Install::Base;  use Module::Install::Base;
6    
7  use vars qw{$VERSION $ISCORE @ISA};  use vars qw{$VERSION @ISA $ISCORE};
8  BEGIN {  BEGIN {
9          $VERSION = '0.68';          $VERSION = '0.75';
         $ISCORE  = 1;  
10          @ISA     = qw{Module::Install::Base};          @ISA     = qw{Module::Install::Base};
11            $ISCORE  = 1;
12  }  }
13    
14  # determine if the user needs nmake, and download it if needed  # determine if the user needs nmake, and download it if needed
# Line 16  sub check_nmake { Line 16  sub check_nmake {
16          my $self = shift;          my $self = shift;
17          $self->load('can_run');          $self->load('can_run');
18          $self->load('get_file');          $self->load('get_file');
19            
20          require Config;          require Config;
21          return unless (          return unless (
22                  $^O eq 'MSWin32'                     and                  $^O eq 'MSWin32'                     and
# Line 38  sub check_nmake { Line 38  sub check_nmake {
38                  remove    => 1,                  remove    => 1,
39          );          );
40    
41          if (!$rv) {          die <<'END_MESSAGE' unless $rv;
         die <<'END_MESSAGE';  
42    
43  -------------------------------------------------------------------------------  -------------------------------------------------------------------------------
44    
# Line 59  You may then resume the installation pro Line 58  You may then resume the installation pro
58    
59  -------------------------------------------------------------------------------  -------------------------------------------------------------------------------
60  END_MESSAGE  END_MESSAGE
61          }  
62  }  }
63    
64  1;  1;

Legend:
Removed from v.241  
changed lines
  Added in v.242

  ViewVC Help
Powered by ViewVC 1.1.26