Change 23248 by rgs@no-spam on 2004/09/01 15:35:20
Upgrade to Cwd 2.21.
Affected files ...
... //depot/perl/ext/Cwd/Changes#11 edit
... //depot/perl/ext/Cwd/t/cwd.t#30 edit
... //depot/perl/lib/Cwd.pm#84 edit
Differences ...
==== //depot/perl/ext/Cwd/Changes#11 (text) ====
Index: perl/ext/Cwd/Changes
--- perl/ext/Cwd/Changes#10~23152~ Thu Jul 22 09:16:41 2004
+++ perl/ext/Cwd/Changes Wed Sep 1 08:35:20 2004
@@no-spam -1,5 +1,13 @@no-spam
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?)
==== //depot/perl/ext/Cwd/t/cwd.t#30 (text) ====
Index: perl/ext/Cwd/t/cwd.t
--- perl/ext/Cwd/t/cwd.t#29~23152~ Thu Jul 22 09:16:41 2004
+++ perl/ext/Cwd/t/cwd.t Wed Sep 1 08:35:20 2004
@@no-spam -18,6 +18,9 @@no-spam
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;
==== //depot/perl/lib/Cwd.pm#84 (text) ====
Index: perl/lib/Cwd.pm
--- perl/lib/Cwd.pm#83~23152~ Thu Jul 22 09:16:41 2004
+++ perl/lib/Cwd.pm Wed Sep 1 08:35:20 2004
@@no-spam -1,5 +1,5 @@no-spam
package Cwd;
-$VERSION = $VERSION = '2.20';
+$VERSION = $VERSION = '2.21';
=head1 NAME
End of Patch.