File Coverage

lib/ExtUtils/MM_UWIN.pm
Criterion Covered Total %
statement 6 10 60.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod 2 2 100.0
total 10 16 62.5


line stmt bran cond sub pod time code
1              
2             use strict;
3 1     1   125810 use warnings;
  1         2  
  1         30  
4 1     1   4 our $VERSION = '7.64';
  1         2  
  1         211  
5             $VERSION =~ tr/_//d;
6              
7             require ExtUtils::MM_Unix;
8             our @ISA = qw(ExtUtils::MM_Unix);
9              
10              
11             =head1 NAME
12              
13             ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
14              
15             =head1 SYNOPSIS
16              
17             Don't use this module directly.
18             Use ExtUtils::MM and let it choose.
19              
20             =head1 DESCRIPTION
21              
22             This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for
23             the AT&T U/WIN UNIX on Windows environment.
24              
25             Unless otherwise stated it works just like ExtUtils::MM_Unix.
26              
27             =head2 Overridden methods
28              
29             =over 4
30              
31             =item os_flavor
32              
33             In addition to being Unix, we're U/WIN.
34              
35             =cut
36              
37             return('Unix', 'U/WIN');
38             }
39 0     0 1    
40              
41             =item B<replace_manpage_separator>
42              
43             =cut
44              
45             my($self, $man) = @_;
46              
47             $man =~ s,/+,.,g;
48 0     0 1   return $man;
49             }
50 0            
51 0           =back
52              
53             =head1 AUTHOR
54              
55             Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
56              
57             =head1 SEE ALSO
58              
59             L<ExtUtils::MM_Win32>, L<ExtUtils::MakeMaker>
60              
61             =cut
62              
63             1;