summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-05-23 12:22:22 +0000
committerNicholas Clark <nick@ccl4.org>2008-05-23 12:22:22 +0000
commitdeb9ed5e1d12555dc10ddc7cb98fedc0f5f70533 (patch)
tree861aa95abf74e06e043f6392512dcb06cf515763
parentc108e4f252bb90137672f2e894657eb558e77ea7 (diff)
downloadperl-deb9ed5e1d12555dc10ddc7cb98fedc0f5f70533.tar.gz
Integrate:
[ 33838] Upgrade to ExtUtils-Command-1.14 [ 33900] Upgrade to AutoLoader-5.66 [ 33912] Bump AutoSplit to a dev version number to reflect the small change in the __DATA__ section made in the AutoLoader 5.66 release. All will get back in sync with the next AutoLoader release. p4raw-link: @33912 on //depot/perl: b27284eed0909d106e1a45ef708df6b20504059f p4raw-link: @33900 on //depot/perl: 79706302bf1cd487fc44c6b9085b2f2ba0fa11ff p4raw-link: @33838 on //depot/perl: b8d86d89db02c1614843ff28861c56f6fd19443a p4raw-id: //depot/maint-5.10/perl@33913 p4raw-integrated: from //depot/perl@33908 'copy in' lib/ExtUtils/Command.pm (@30146..) lib/AutoLoader.pm (@32903..) p4raw-integrated: from //depot/perl@33900 'edit in' lib/AutoSplit.pm (@32787..)
-rw-r--r--lib/AutoLoader.pm5
-rw-r--r--lib/AutoSplit.pm5
-rw-r--r--lib/ExtUtils/Command.pm2
3 files changed, 7 insertions, 5 deletions
diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm
index 636bb5a52c..880acd18f8 100644
--- a/lib/AutoLoader.pm
+++ b/lib/AutoLoader.pm
@@ -15,7 +15,7 @@ BEGIN {
$is_epoc = $^O eq 'epoc';
$is_vms = $^O eq 'VMS';
$is_macos = $^O eq 'MacOS';
- $VERSION = '5.64_01';
+ $VERSION = '5.66';
}
AUTOLOAD {
@@ -373,7 +373,8 @@ can benefit from bug fixes.
This package has the same copyright and license as the perl core:
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
+ 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
+ by Larry Wall and others
All rights reserved.
diff --git a/lib/AutoSplit.pm b/lib/AutoSplit.pm
index a7da1acae3..a5a194312b 100644
--- a/lib/AutoSplit.pm
+++ b/lib/AutoSplit.pm
@@ -9,7 +9,7 @@ use strict;
our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Verbose, $Keep, $Maxlen,
$CheckForAutoloader, $CheckModTime);
-$VERSION = "1.05";
+$VERSION = "1.05_01";
@ISA = qw(Exporter);
@EXPORT = qw(&autosplit &autosplit_lib_modules);
@EXPORT_OK = qw($Verbose $Keep $Maxlen $CheckForAutoloader $CheckModTime);
@@ -148,7 +148,8 @@ can benefit from bug fixes.
This package has the same copyright and license as the perl core:
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
+ 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
+ by Larry Wall and others
All rights reserved.
diff --git a/lib/ExtUtils/Command.pm b/lib/ExtUtils/Command.pm
index 8c9a8d0b5b..fbb7d1380c 100644
--- a/lib/ExtUtils/Command.pm
+++ b/lib/ExtUtils/Command.pm
@@ -12,7 +12,7 @@ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
@ISA = qw(Exporter);
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
dos2unix);
-$VERSION = '1.13';
+$VERSION = '1.14';
my $Is_VMS = $^O eq 'VMS';