]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[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 %META = (
58  configure_requires => {
59   'Config'              => 0,
60   'ExtUtils::MakeMaker' => 0,
61  },
62  build_requires => {
63   'Carp'                => 0,
64   'Config'              => 0,
65   'ExtUtils::MakeMaker' => 0,
66   'Test::More'          => 0,
67  },
68  dynamic_config => 1,
69  resources => {
70   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
71   homepage   => "http://search.cpan.org/dist/$dist/",
72   license    => 'http://dev.perl.org/licenses/',
73   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
74  },
75 );
76
77 WriteMakefile(
78     NAME             => 'Variable::Magic',
79     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
80     LICENSE          => 'perl',
81     VERSION_FROM     => 'lib/Variable/Magic.pm',
82     ABSTRACT_FROM    => 'lib/Variable/Magic.pm',
83     PL_FILES         => {},
84     @DEFINES,
85     PREREQ_PM        => {
86         'Carp'     => 0,
87         'Exporter' => 0,
88         'XSLoader' => 0,
89         'base'     => 0,
90     },
91     MIN_PERL_VERSION => 5.008,
92     META_MERGE       => \%META,
93     dist             => {
94         PREOP    => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README',
95         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
96     },
97     clean            => {
98         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
99     },
100 );