This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make hv_notallowed a static as suggested by Nicholas Clark;
[perl5.git] / lib / ExtUtils / MM_UWIN.pm
CommitLineData
f6d6199c
MS
1package ExtUtils::MM_UWIN;
2
3use strict;
4use vars qw($VERSION @ISA);
5$VERSION = 0.01;
6
7require ExtUtils::MM_Unix;
8@ISA = qw(ExtUtils::MM_Unix);
9
10
11=head1 NAME
12
13ExtUtils::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
22This is a subclass of ExtUtils::MM_Unix which contains functionality for
23the AT&T U/WIN UNIX on Windows environment.
24
25Unless otherwise stated it works just like ExtUtils::MM_Unix
26
27=head2 Overridden methods
28
29=over 4
30
31=item B<replace_manpage_separator>
32
33=cut
34
35sub replace_manpage_separator {
36 my($self, $man) = @_;
37
38 $man =~ s,/+,.,g;
39 return $man;
40}
41
42=back
43
44=head1 AUTHOR
45
46Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
47
48=head1 SEE ALSO
49
50L<ExtUtils::MM_Win32>, L<ExtUtils::MakeMaker>
51
521;