Upgrade to Cwd 2.21.
Rafael Garcia-Suarez [Wed, 1 Sep 2004 15:35:20 +0000 (15:35 +0000)]
p4raw-id: //depot/perl@23248

ext/Cwd/Changes
ext/Cwd/t/cwd.t
lib/Cwd.pm

index 0b7dd1f..644955d 100644 (file)
@@ -1,5 +1,13 @@
 Revision history for Perl extension Cwd.
 
+2.21  Tue Aug 31 22:50:14 CDT 2004
+
+ - Removed "NO_META" from the Makefile.PL, since I'm not building the
+   distribution with MakeMaker anyway.  [Rohan Carly]
+
+ - Only test _perl_abs_path() on platforms where it's expected to work
+   (platforms with '/' as the directory separator). [Craig A. Berry]
+
 2.20  Thu Jul 22 08:23:53 CDT 2004
 
  - On some implementations of perl on Win32, a memory leak (or worse?)
index 2c7d6c5..fecb39f 100644 (file)
@@ -18,6 +18,9 @@ use Test::More;
 
 my $tests = 24;
 my $EXTRA_ABSPATH_TESTS = $ENV{PERL_CORE} || $ENV{TEST_PERL_CWD_CODE};
+# _perl_abs_path() currently only works when the directory separator
+# is '/', so don't test it when it won't work.
+$EXTRA_ABSPATH_TESTS &= $Config{prefix} =~ m/\//;
 $tests += 3 if $EXTRA_ABSPATH_TESTS;
 plan tests => $tests;
 
index dc52b72..a90e944 100644 (file)
@@ -1,5 +1,5 @@
 package Cwd;
-$VERSION = $VERSION = '2.20';
+$VERSION = $VERSION = '2.21';
 
 =head1 NAME