]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - Makefile.PL
Replace uses of "$^V" by "$]"
[perl/modules/re-engine-Plugin.git] / Makefile.PL
index 99aa3faf19e530612ac3214ddad267cb1ea7e514..dc624de411e5e0c04d359fa724d7cd2aefb968ad 100644 (file)
@@ -7,7 +7,7 @@ use ExtUtils::MakeMaker;
 my @DEFINES;
 
 # Fork emulation got "fixed" in 5.10.1
-if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
+if ($^O eq 'MSWin32' && "$]" < 5.010_001) {
  push @DEFINES, '-DREP_FORKSAFE=0';
 }
 
@@ -32,7 +32,7 @@ my %META = (
  },
  dynamic_config => 1,
  resources => {
-  bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
+  bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist",
   homepage   => "http://search.cpan.org/dist/$dist/",
   license    => 'http://dev.perl.org/licenses/',
   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
@@ -48,10 +48,10 @@ WriteMakefile(
  PL_FILES         => {},
  @DEFINES,
  PREREQ_PM        => \%PREREQ_PM,
- MIN_PERL_VERSION => 5.010,
+ MIN_PERL_VERSION => '5.010',
  META_MERGE       => \%META,
  dist             => {
-  PREOP    => 'pod2text Plugin.pod > $(DISTVNAME)/README',
+  PREOP    => 'pod2text -u Plugin.pod > $(DISTVNAME)/README',
   COMPRESS => 'gzip -9f', SUFFIX => 'gz'
  },
  clean            => {