diff options
author | Michael G. Schwern <schwern@pobox.com> | 2003-04-06 19:09:17 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-04-07 18:23:29 +0000 |
commit | dedf98bc6289c70e2368bc395e2ec91fed11fc33 (patch) | |
tree | b31d1cf8442731d09afd0e2749a95f1551690091 /lib/ExtUtils/MM_Cygwin.pm | |
parent | 9ac5eb64d274bdbd879ebb568a13f392d2a50575 (diff) | |
download | perl-dedf98bc6289c70e2368bc395e2ec91fed11fc33.tar.gz |
Re: [PATCH] ExtUtils::MakeMaker 6.10_02
Message-ID: <20030407090917.GA9221@windhund.schwern.org>
p4raw-id: //depot/perl@19162
Diffstat (limited to 'lib/ExtUtils/MM_Cygwin.pm')
-rw-r--r-- | lib/ExtUtils/MM_Cygwin.pm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Cygwin.pm b/lib/ExtUtils/MM_Cygwin.pm index 120e1bb6a6..4529895fa0 100644 --- a/lib/ExtUtils/MM_Cygwin.pm +++ b/lib/ExtUtils/MM_Cygwin.pm @@ -10,7 +10,7 @@ require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix ); -$VERSION = 1.05; +$VERSION = 1.06; =head1 NAME @@ -27,6 +27,16 @@ See ExtUtils::MM_Unix for a documentation of the methods provided there. =over 4 +=item os_flavor (o) + +We're Unix and Cygwin. + +=cut + +sub os_flavor { + return('Unix', 'Cygwin'); +} + =item cflags (o) if configured for dynamic loading, triggers #define EXT in EXTERN.h |