Track /etc/gitconfig
[msysgit/mtrensch.git] / lib / perl5 / 5.8.8 / ExtUtils / MM_UWIN.pm
blob1667d552c8f705dbf5380c9279efee0d38163bec
1 package ExtUtils::MM_UWIN;
3 use strict;
4 use vars qw($VERSION @ISA);
5 $VERSION = 0.02;
7 require ExtUtils::MM_Unix;
8 @ISA = qw(ExtUtils::MM_Unix);
11 =head1 NAME
13 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
15 =head1 SYNOPSIS
17 Don't use this module directly.
18 Use ExtUtils::MM and let it choose.
20 =head1 DESCRIPTION
22 This is a subclass of ExtUtils::MM_Unix which contains functionality for
23 the AT&T U/WIN UNIX on Windows environment.
25 Unless otherwise stated it works just like ExtUtils::MM_Unix
27 =head2 Overridden methods
29 =over 4
31 =item os_flavor
33 In addition to being Unix, we're U/WIN.
35 =cut
37 sub os_flavor {
38 return('Unix', 'U/WIN');
42 =item B<replace_manpage_separator>
44 =cut
46 sub replace_manpage_separator {
47 my($self, $man) = @_;
49 $man =~ s,/+,.,g;
50 return $man;
53 =back
55 =head1 AUTHOR
57 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
59 =head1 SEE ALSO
61 L<ExtUtils::MM_Win32>, L<ExtUtils::MakeMaker>
63 =cut