diff options
author | Tels <nospam-abuse@bloodgate.com> | 2002-01-14 22:00:31 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-16 13:45:20 +0000 |
commit | 85c35b1b6aace17a25d05e6009c8d812ced18c44 (patch) | |
tree | ea82433f2caf2f9b058c199bf233f053309128b3 /lib/ExtUtils | |
parent | 5e9e174b5813b515ab160d14fa32ceb040bee9ee (diff) | |
download | perl-85c35b1b6aace17a25d05e6009c8d812ced18c44.tar.gz |
The non-MakeMaker.pm parts of
Subject: [PATCH] Re: MM_Beos.pm?
Message-Id: <200201142006.WAA29544@taas.iki.fi>
p4raw-id: //depot/perl@14301
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 5 | ||||
-rw-r--r-- | lib/ExtUtils/t/MM_Unix.t | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 10d96a5590..249954d140 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -3898,14 +3898,13 @@ sub xs_o { # many makes are too dumb to use xs_c then c_o =item perl_archive This is internal method that returns path to libperl.a equivalent -to be linked to dynamic extensions. UNIX does not have one but OS2 -and Win32 do. +to be linked to dynamic extensions. UNIX does not have one but other +OSs might have one. =cut sub perl_archive { - return '$(PERL_INC)' . "/$Config{libperl}" if $^O eq "beos"; return ""; } diff --git a/lib/ExtUtils/t/MM_Unix.t b/lib/ExtUtils/t/MM_Unix.t index aea777b685..fec24ca336 100644 --- a/lib/ExtUtils/t/MM_Unix.t +++ b/lib/ExtUtils/t/MM_Unix.t @@ -3,6 +3,7 @@ # 2001-12-16 Tels first version # 2002-01-13 Tels 0.02 added some tests for various functions, added Andreas # fix to the version test (>= vs ==) +# 2002-01-14 Tels 0.03 exclude on beos and netware, /i for $^O test BEGIN { chdir 't' if -d 't'; @@ -12,7 +13,7 @@ BEGIN { BEGIN { use Test::More; - if( $^O =~ /^VMS|os2|MacOS|MSWin32|cygwin$/ ) { + if( $^O =~ /^VMS|os2|MacOS|MSWin32|cygwin|beos|netware$/i ) { plan skip_all => 'Non-Unix platform'; } else { |