]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - Makefile.PL
Bump copyright year
[perl/modules/re-engine-Plugin.git] / Makefile.PL
index 632a286985f051ca81de8741ac027569b32d1450..53397f990096c0a32633bce616c78ed08ade9ee6 100644 (file)
@@ -7,8 +7,8 @@ use ExtUtils::MakeMaker;
 my @DEFINES;
 
 # Fork emulation got "fixed" in 5.10.1
-if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
- push @DEFINES, '-DREP_FORKSAFE=0';
+if ($^O eq 'MSWin32' && "$]" < 5.010_001) {
+ push @DEFINES, '-DXSH_FORKSAFE=0';
 }
 
 @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES;
@@ -30,28 +30,36 @@ my %META = (
   'Test::More'          => 0,
   %PREREQ_PM,
  },
- dynamic_config => 0,
+ 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",
  },
 );
 
+my @AUTHORS = (
+ "\x{C6}var Arnfj\x{F6}r\x{F0} Bjarmason <avar\@cpan.org>",
+ 'Vincent Pit <perl@profvince.com>',
+);
+
+my $AUTHOR = $ExtUtils::MakeMaker::VERSION < 6.58 ? $AUTHORS[0]
+                                                  : \@AUTHORS;
+
 WriteMakefile(
  NAME             => $name,
- AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+ AUTHOR           => $AUTHOR,
  LICENSE          => 'perl',
  ABSTRACT_FROM    => 'Plugin.pod',
  VERSION_FROM     => 'Plugin.pm',
  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            => {