diff options
Diffstat (limited to 'lib/ExtUtils/MM_Win95.pm')
-rw-r--r-- | lib/ExtUtils/MM_Win95.pm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/ExtUtils/MM_Win95.pm b/lib/ExtUtils/MM_Win95.pm index 68c2ac8588..0c5046198a 100644 --- a/lib/ExtUtils/MM_Win95.pm +++ b/lib/ExtUtils/MM_Win95.pm @@ -6,7 +6,7 @@ $VERSION = 0.03; require ExtUtils::MM_Win32; @ISA = qw(ExtUtils::MM_Win32); -use Config; +use Config;
my $DMAKE = 1 if $Config{'make'} =~ /^dmake/i; my $NMAKE = 1 if $Config{'make'} =~ /^nmake/i; @@ -125,8 +125,6 @@ The && problem. sub xs_o { my($self) = shift; return '' unless $self->needs_linking(); - # Having to choose between .xs -> .c -> .o and .xs -> .o confuses dmake. - return '' if $DMAKE; ' .xs$(OBJ_EXT): $(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.c @@ -211,11 +209,11 @@ sub os_flavor { =head1 AUTHOR -Code originally inside MM_Win32. Original author unknown. +Code originally inside MM_Win32. Original author unknown. -Currently maintained by Michael G Schwern <schwern@pobox.com>. +Currently maintained by Michael G Schwern C<schwern@pobox.com>. -Send patches and ideas to <F<makemaker@perl.org>>. +Send patches and ideas to C<makemaker@perl.org>. See http://www.makemaker.org. |