ExtUtils::MakeMaker 6.03 -> 6.06_05ish
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MM_DOS.pm
1 package ExtUtils::MM_DOS;
2
3 use strict;
4 use vars qw($VERSION @ISA);
5
6 $VERSION = 0.01;
7
8 require ExtUtils::MM_Any;
9 require ExtUtils::MM_Unix;
10 @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
11
12
13 =head1 NAME
14
15 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
16
17 =head1 SYNOPSIS
18
19   Don't use this module directly.
20   Use ExtUtils::MM and let it choose.
21
22 =head1 DESCRIPTION
23
24 This is a subclass of ExtUtils::MM_Unix which contains functionality
25 for DOS.
26
27 Unless otherwise stated, it works just like ExtUtils::MM_Unix
28
29 =head2 Overridden methods
30
31 =over 4
32
33 =item B<replace_manpage_separator>
34
35 Generates Foo__Bar.3 style man page names
36
37 =cut
38
39 sub replace_manpage_separator {
40     my($self, $man) = @_;
41
42     $man =~ s,/+,__,g;
43     return $man;
44 }
45
46 =back
47
48 =head1 AUTHOR
49
50 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
51
52 =head1 SEE ALSO
53
54 L<ExtUtils::MM_Unix>, L<ExtUtils::MakeMaker>
55
56 =cut
57
58 1;