Skip to content

Commit

Permalink
Version 6.25_02
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Dec 24, 2004
2 parents 9ba2430 + 571c564 commit 8944564
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/ExtUtils/MM_VMS.pm
Expand Up @@ -21,7 +21,7 @@ BEGIN {
use File::Basename;
use vars qw($Revision @ISA $VERSION);
($VERSION) = '5.71_02';
($Revision) = q$Revision: 1.116 $ =~ /Revision:\s+(\S+)/;
($Revision) = q$Revision$ =~ /Revision:\s+(\S+)/;

require ExtUtils::MM_Any;
require ExtUtils::MM_Unix;
Expand Down
15 changes: 10 additions & 5 deletions lib/ExtUtils/MakeMaker.pm
@@ -1,24 +1,29 @@
# $Id$
package ExtUtils::MakeMaker;

BEGIN {require 5.005_03;}

$VERSION = '6.25_02';
($Revision) = q$Revision: 1.147 $ =~ /Revision:\s+(\S+)/;

require Exporter;
use ExtUtils::MakeMaker::Config;
use Carp ();
use File::Path;

use vars qw(
@ISA @EXPORT @EXPORT_OK
$Revision $VERSION $Verbose %Config
$VERSION $Verbose %Config
@Prepend_parent @Parent
%Recognized_Att_Keys @Get_from_Config @MM_Sections @Overridable
$Filename
);

# Has to be on its own line with no $ after it to avoid being noticed by
# the version control system
use vars qw($Revision);
use strict;

$VERSION = '6.25_02';
($Revision) = q$Revision: 4056 $ =~ /Revision:\s+(\S+)/;

@ISA = qw(Exporter);
@EXPORT = qw(&WriteMakefile &writeMakefile $Verbose &prompt);
@EXPORT_OK = qw($VERSION &neatvalue &mkbootstrap &mksymlists);
Expand Down Expand Up @@ -2065,7 +2070,7 @@ MakeMaker object. The following lines will be parsed o.k.:
$VERSION = '1.00';
*VERSION = \'1.01';
$VERSION = sprintf "%d.%03d", q$Revision: 1.147 $ =~ /(\d+)/g;
$VERSION = sprintf "%d.%03d", q$Revision: 4056 $ =~ /(\d+)/g;
$FOO::VERSION = '1.10';
*FOO::VERSION = \'1.11';
our $VERSION = 1.2.3; # new for perl5.6.0
Expand Down

0 comments on commit 8944564

Please sign in to comment.