From: Vincent Pit Date: Thu, 23 Sep 2010 21:58:40 +0000 (+0200) Subject: Remove the patchlevel test X-Git-Tag: v0.44~6 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=8a14a992ccd972cfbf1bbb0b14dd4447facd3154 Remove the patchlevel test Commit d29a774d106d145036eda849ab57f42410100008 removed the only place it was used, and perl left perforce almost three years ago. --- diff --git a/Makefile.PL b/Makefile.PL index 05b4eb3..57d8b81 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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