]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - Makefile.PL
Put prerequisites in their own separate hash
[perl/modules/Variable-Magic.git] / Makefile.PL
1 use 5.008;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 BEGIN {
8  eval { require Config };
9  die 'OS unsupported' if $@;
10  Config->import(qw/%Config/);
11 }
12
13 my @DEFINES;
14
15 my $pl = $Config{perl_patchlevel};
16 print "Checking perl patchlevel... ";
17 if (defined $pl && length $pl) {
18  $pl = int $pl;
19  push @DEFINES, '-DVMG_PERL_PATCHLEVEL=' . $pl;
20  print $pl, "\n";
21 } else {
22  print "none\n";
23 }
24
25 my $is_as = 0;
26 print "Checking if this is ActiveState Perl 5.8.8 build 822 or higher... ";
27 if ($^V eq v5.8.8) {
28  eval {
29   require ActivePerl;
30   1;
31  } and do {
32   if (defined &ActivePerl::BUILD) {
33    my $build = int ActivePerl::BUILD();
34    if ($build >= 822) {
35     $is_as = 1;
36     push @DEFINES, '-DVMG_COMPAT_ARRAY_PUSH_NOLEN=1';
37    }
38   }
39  }
40 }
41 print $is_as ? "yes\n" : "no\n";
42
43 # Threads, Windows and 5.8.x don't seem to be best friends
44 if ($^O eq 'MSWin32' && $^V lt v5.9.0) {
45  push @DEFINES, '-DVMG_MULTIPLICITY=0';
46 }
47
48 # Fork emulation got "fixed" in 5.10.1
49 if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
50  push @DEFINES, '-DVMG_FORKSAFE=0';
51 }
52
53 @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES;
54
55 my $dist = 'Variable-Magic';
56
57 my %PREREQ_PM = (
58  'Carp'     => 0,
59  'Exporter' => 0,
60  'XSLoader' => 0,
61  'base'     => 0,
62 );
63
64 my %META = (
65  configure_requires => {
66   'Config'              => 0,
67   'ExtUtils::MakeMaker' => 0,
68  },
69  build_requires => {
70   'Carp'                => 0,
71   'Config'              => 0,
72   'ExtUtils::MakeMaker' => 0,
73   'Test::More'          => 0,
74   %PREREQ_PM,
75  },
76  dynamic_config => 1,
77  resources => {
78   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
79   homepage   => "http://search.cpan.org/dist/$dist/",
80   license    => 'http://dev.perl.org/licenses/',
81   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
82  },
83 );
84
85 WriteMakefile(
86     NAME             => 'Variable::Magic',
87     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
88     LICENSE          => 'perl',
89     VERSION_FROM     => 'lib/Variable/Magic.pm',
90     ABSTRACT_FROM    => 'lib/Variable/Magic.pm',
91     PL_FILES         => {},
92     @DEFINES,
93     PREREQ_PM        => \%PREREQ_PM,
94     MIN_PERL_VERSION => 5.008,
95     META_MERGE       => \%META,
96     dist             => {
97         PREOP    => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README',
98         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
99     },
100     clean            => {
101         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
102     },
103 );