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