This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
"thread failed to start: " is better than "Died:".
[perl5.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 =cut
36
37 sub replace_manpage_separator {
38     my($self, $man) = @_;
39
40     $man =~ s,/+,__,g;
41     return $man;
42 }
43
44 =back
45
46 =head1 AUTHOR
47
48 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
49
50 =head1 SEE ALSO
51
52 L<ExtUtils::MM_Unix>, L<ExtUtils::MakeMaker>
53
54 =cut
55 1;