X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FExtUtils%2FMM_MacOS.pm;h=af4a0d61261ac43a75a75e6b41ccfc83bc19bac1;hb=d5201bd266fe42b2df8b480183c08be291a1ad06;hp=326ca6dd43c3dc9e942d484da63d17a8be488eea;hpb=83943eac2433a9cd52f114532df2a61529f109a2;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/ExtUtils/MM_MacOS.pm b/lib/ExtUtils/MM_MacOS.pm index 326ca6d..af4a0d6 100644 --- a/lib/ExtUtils/MM_MacOS.pm +++ b/lib/ExtUtils/MM_MacOS.pm @@ -12,7 +12,7 @@ require ExtUtils::MM_Unix; @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix ); use vars qw($VERSION); -$VERSION = '1.01'; +$VERSION = '1.03'; use Config; use Cwd 'cwd'; @@ -21,6 +21,8 @@ use File::Basename; use File::Spec; use vars qw(%make_data); +my $Mac_FS = eval { require Mac::FileSpec::Unixish }; + use ExtUtils::MakeMaker qw($Verbose &neatvalue); =head1 NAME @@ -242,7 +244,7 @@ Translate relative path names into Mac names. sub macify { # mmm, better ... and this condition should always be satisified, # as the module is now distributed with MacPerl, but leave in anyway - if (do 'Mac/FileSpec/Unixish.pm') { + if ($Mac_FS) { return Mac::FileSpec::Unixish::nativize($_[0]); } @@ -606,7 +608,11 @@ sub constants { XSPROTOARG MACLIBS_68K MACLIBS_PPC MACLIBS_SC MACLIBS_MRC MACLIBS_ALL_68K MACLIBS_ALL_PPC MACLIBS_SHARED SOURCE TYPEMAPS / ) { next unless defined $self->{$tmp}; - push @m, "$tmp = $self->{$tmp}\n"; + if ($tmp eq 'TYPEMAPS' && ref $self->{$tmp}) { + push @m, sprintf "$tmp = %s\n", join " ", @{$self->{$tmp}}; + } else { + push @m, "$tmp = $self->{$tmp}\n"; + } } push @m, q{