X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=Makefile.PL;h=1f7e5c87be2d24bca3da7c72613154131fb18c14;hp=0ab9c24dcea50816d5f32ce53704bf714ed20ea9;hb=7f2abe70c4334df1462a163d36bd809dd21d915e;hpb=73065691a24f100af6f7fd8055ccca40772f42b2 diff --git a/Makefile.PL b/Makefile.PL index 0ab9c24..1f7e5c8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,38 +1,68 @@ -use 5.008; +use 5.008001; use strict; use warnings; use ExtUtils::MakeMaker; - -my $BUILD_REQUIRES = { - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, -}; - -sub build_req { - my $tometa = ' >> $(DISTVNAME)/META.yml;'; - my $build_req = 'echo "build_requires:" ' . $tometa; - foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) { - my $ver = $BUILD_REQUIRES->{$mod}; - $build_req .= sprintf 'echo " %-30s %s" %s', "$mod:", $ver, $tometa; - } - return $build_req; + +my @DEFINES; + +# Threads, Windows and 5.8.x don't seem to be best friends +if ($^O eq 'MSWin32' && $^V lt v5.9.0) { + push @DEFINES, '-DI_MULTIPLICITY=0'; +} + +# Fork emulation got "fixed" in 5.10.1 +if ($^O eq 'MSWin32' && $^V lt v5.10.1) { + push @DEFINES, '-DI_FORKSAFE=0'; } +@DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES; + +my $dist = 'indirect'; + +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + +my %PREREQ_PM = ( + 'XSLoader' => 0, +); + +my %META = ( + configure_requires => { + 'ExtUtils::MakeMaker' => 0, + }, + build_requires => { + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + %PREREQ_PM, + }, + dynamic_config => 1, + resources => { + bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$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", + }, +); + WriteMakefile( - NAME => 'indirect', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/indirect.pm', - ABSTRACT_FROM => 'lib/indirect.pm', - PL_FILES => {}, - PREREQ_PM => { - 'XSLoader' => 0, - }, - dist => { - PREOP => 'pod2text lib/indirect.pm > $(DISTVNAME)/README; ' - . build_req, - COMPRESS => 'gzip -9f', SUFFIX => 'gz' - }, - clean => { FILES => 'indirect-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + @DEFINES, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => 5.008001, + META_MERGE => \%META, + dist => { + PREOP => "pod2text $file > \$(DISTVNAME)/README", + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + }, );