Upgrade to ExtUtils::MakeMaker 6.49_01
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MakeMaker / Config.pm
index e733a76..c9f8fee 100644 (file)
@@ -1,18 +1,18 @@
 package ExtUtils::MakeMaker::Config;
 
-$VERSION = '6.38';
-
 use strict;
+
+our $VERSION = '6.49_01';
+
 use Config ();
 
 # Give us an overridable config.
-use vars qw(%Config);
-%Config = %Config::Config;
+our %Config = %Config::Config;
 
 sub import {
     my $caller = caller;
 
-    no strict 'refs';
+    no strict 'refs';   ## no critic
     *{$caller.'::Config'} = \%Config;
 }