]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Remove the patchlevel test
authorVincent Pit <vince@profvince.com>
Thu, 23 Sep 2010 21:58:40 +0000 (23:58 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 23 Sep 2010 21:58:40 +0000 (23:58 +0200)
Commit d29a774d106d145036eda849ab57f42410100008 removed the only place it
was used, and perl left perforce almost three years ago.

Makefile.PL

index 05b4eb3fb0a34e47faed575a274e08d2c1efb706..57d8b81816c4242d993eeef3a867d2180b1a4173 100644 (file)
@@ -13,17 +13,6 @@ BEGIN {
 my @DEFINES;
 my %macro;
 
-my $pl = $Config{perl_patchlevel};
-print "Checking perl patchlevel... ";
-if (defined $pl && length $pl) {
- $pl = int $pl;
- push @DEFINES, '-DVMG_PERL_PATCHLEVEL=' . $pl;
- print $pl, "\n";
-} else {
- $pl = undef;
- print "none\n";
-}
-
 my $as_perl = eval {
  require ActivePerl;
  defined &ActivePerl::BUILD ? ActivePerl::BUILD() : undef