tighten up entries
[p5sagit/JSON-MaybeXS.git] / Makefile.PL
CommitLineData
44459f01 1use strict;
2use warnings FATAL => 'all';
44459f01 3use ExtUtils::MakeMaker;
4(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
5
81b819d6 6my %WriteMakefileArgs = (
44459f01 7 NAME => 'JSON::MaybeXS',
8 VERSION_FROM => 'lib/JSON/MaybeXS.pm',
bd6b85ee 9
10 META_MERGE => {
8b945fac 11 'meta-spec' => { version => 2 },
12 dynamic_config => 1,
bd6b85ee 13 resources => {
dd6a8d22 14 # r/w: p5sagit@git.shadowcat.co.uk:JSON-MaybeXS.git
bd6b85ee 15 repository => {
dd6a8d22 16 url => 'git://git.shadowcat.co.uk/p5sagit/JSON-MaybeXS.git',
17 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/JSON-MaybeXS.git',
bd6b85ee 18 type => 'git',
19 },
20 bugtracker => {
21 mailto => 'bug-JSON-MaybeXS@rt.cpan.org',
22 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=JSON-MaybeXS',
23 },
24 },
911d941a 25 x_contributors => { # manually added, from git shortlog -e -s
26 'Clinton Gormley <develop@traveljury.com>',
27 'Graham Knop <haarg@haarg.org>',
28 'Karen Etheridge <ether@cpan.org>',
29 'Kieren Diment <diment@gmail.com>',
30 'Matt S Trout <mst@shadowcat.co.uk>',
31 },
bd6b85ee 32 },
33
34 META_ADD => {
037386f7 35 prereqs => {
36 configure => {
37 requires => {
731cdb1c 38 'ExtUtils::MakeMaker' => '0',
037386f7 39 'ExtUtils::CBuilder' => '0.27',
40 'File::Spec' => '0',
41 'File::Temp' => '0',
42 },
43 },
44 runtime => {
45 requires => {
8e911b7e 46 'Scalar::Util' => '0',
c397f194 47 'Carp' => '0',
037386f7 48 'JSON::PP' => '2.27202',
49 # we may also add a runtime prereq for Cpanel::JSON::XS, on the
50 # installer's machine
51 perl => '5.006',
52 },
53 recommends => { 'Cpanel::JSON::XS' => '2.3310' },
54 },
55 test => {
56 requires => {
57 'Test::Without::Module' => '0.17',
58 'Test::More' => '0.88',
59 },
60 },
61 },
8b945fac 62 },
44459f01 63);
64
81b819d6 65my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;
037386f7 66
67for (qw(configure build test runtime)) {
68 my $key = $_ eq 'runtime' ? 'PREREQ_PM' : uc $_.'_REQUIRES';
69 next unless exists $WriteMakefileArgs{META_ADD}{prereqs}{$_}
70 or exists $WriteMakefileArgs{$key};
71 my $r = $WriteMakefileArgs{$key} = {
72 %{$WriteMakefileArgs{META_ADD}{prereqs}{$_}{requires} || {}},
73 %{delete $WriteMakefileArgs{$key} || {}},
74 };
75 defined $r->{$_} or delete $r->{$_} for keys %$r;
76}
77
b207f99e 78# dynamic prereqs get added here.
79
037386f7 80# we require Cpanel::JSON::XS, except if JSON::XS is already installed.
81# (we also always recommend Cpanel::JSON::XS, just to make sure.)
82$WriteMakefileArgs{PREREQ_PM}{'Cpanel::JSON::XS'} = '2.3310'
6f3c496c 83 if not parse_args()->{PUREPERL_ONLY}
63b80fbc 84 and ((eval { require Cpanel::JSON::XS; 1 } and not eval { Cpanel::JSON::XS->VERSION('2.3310'); 1 })
85 or (not eval { require JSON::XS; 1; } and can_xs()));
037386f7 86
14a1801c 87# avoid "JSON::XS::Boolean::* redefined" warnings caused by incompatibilities
88# between JSON::XS 2.x and 3.0 --
89# if JSON::XS is installed and < 3.0
90# and Cpanel::JSON::JSON is (or is about to be) >= 3.0,
91# then update JSON::XS to eliminate the incompatibility
92$WriteMakefileArgs{PREREQ_PM}{'JSON::XS'} = '3.00'
93 if not parse_args()->{PUREPERL_ONLY}
94 and eval { require JSON::XS; 1 } and not eval { JSON::XS->VERSION('3.0'); 1 }
95 and (eval { require Cpanel::JSON::XS; Cpanel::JSON::XS->VERSION('3.0'); 1 }
96 # we presume here that if we are installing Cpanel::JSON::XS, we
97 # are installing the latest version
98 or exists $WriteMakefileArgs{PREREQ_PM}{'Cpanel::JSON::XS'});
99
81b819d6 100$WriteMakefileArgs{MIN_PERL_VERSION} = delete $WriteMakefileArgs{PREREQ_PM}{perl} || 0;
c4e0d79f 101
b207f99e 102die 'attention developer: you need to do a sane meta merge here!'
103 if keys %{$WriteMakefileArgs{BUILD_REQUIRES}};
104
81b819d6 105$WriteMakefileArgs{BUILD_REQUIRES} = {
86f2a3a5 106 %{$WriteMakefileArgs{BUILD_REQUIRES} || {}},
81b819d6 107 %{delete $WriteMakefileArgs{TEST_REQUIRES}}
108} if $eumm_version < 6.63_03;
c4e0d79f 109
81b819d6 110$WriteMakefileArgs{PREREQ_PM} = {
111 %{$WriteMakefileArgs{PREREQ_PM}},
112 %{delete $WriteMakefileArgs{BUILD_REQUIRES}}
113} if $eumm_version < 6.55_01;
114
c4e0d79f 115delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
116 if $eumm_version < 6.51_03;
117
a73f6fe1 118delete $WriteMakefileArgs{MIN_PERL_VERSION}
119 if $eumm_version < 6.48;
120
121delete @WriteMakefileArgs{qw(META_ADD META_MERGE)}
122 if $eumm_version < 6.46;
123
124delete $WriteMakefileArgs{LICENSE}
125 if $eumm_version < 6.31;
126
81b819d6 127WriteMakefile(%WriteMakefileArgs);
128
6f3c496c 129
130sub parse_args {
131 # copied from EUMM
132 require ExtUtils::MakeMaker;
133 require Text::ParseWords;
134 ExtUtils::MakeMaker::parse_args(
135 my $tmp = {},
136 Text::ParseWords::shellwords($ENV{PERL_MM_OPT} || ''),
137 @ARGV,
138 );
139 return $tmp->{ARGS} || {};
140}
141
44459f01 142# can we locate a (the) C compiler
143sub can_cc {
144 my @chunks = split(/ /, $Config::Config{cc}) or return;
145
146 # $Config{cc} may contain args; try to find out the program part
147 while (@chunks) {
148 return can_run("@chunks") || (pop(@chunks), next);
149 }
150
151 return;
152}
153
154# check if we can run some command
155sub can_run {
156 my ($cmd) = @_;
157
158 return $cmd if -x $cmd;
159 if (my $found_cmd = MM->maybe_command($cmd)) {
160 return $found_cmd;
161 }
162
163 require File::Spec;
164 for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') {
165 next if $dir eq '';
166 my $abs = File::Spec->catfile($dir, $cmd);
167 return $abs if (-x $abs or $abs = MM->maybe_command($abs));
168 }
169
170 return;
171}
172
173# Can our C compiler environment build XS files
174sub can_xs {
175 # Do we have the configure_requires checker?
176 local $@;
177 eval "require ExtUtils::CBuilder; ExtUtils::CBuilder->VERSION(0.27)";
178 if ( $@ ) {
179 # They don't obey configure_requires, so it is
180 # someone old and delicate. Try to avoid hurting
181 # them by falling back to an older simpler test.
182 return can_cc();
183 }
184
185 # Do we have a working C compiler
186 my $builder = ExtUtils::CBuilder->new(
187 quiet => 1,
188 );
189 unless ( $builder->have_compiler ) {
190 # No working C compiler
191 return 0;
192 }
193
194 # Write a C file representative of what XS becomes
195 require File::Temp;
196 my ( $FH, $tmpfile ) = File::Temp::tempfile(
197 "compilexs-XXXXX",
198 SUFFIX => '.c',
199 );
200 binmode $FH;
201 print $FH <<'END_C';
202#include "EXTERN.h"
203#include "perl.h"
204#include "XSUB.h"
205
206int main(int argc, char **argv) {
207 return 0;
208}
209
210int boot_sanexs() {
211 return 1;
212}
213
214END_C
215 close $FH;
216
217 # Can the C compiler access the same headers XS does
218 my @libs = ();
219 my $object = undef;
220 eval {
221 local $^W = 0;
222 $object = $builder->compile(
223 source => $tmpfile,
224 );
225 @libs = $builder->link(
226 objects => $object,
227 module_name => 'sanexs',
228 );
229 };
230 my $result = $@ ? 0 : 1;
231
232 # Clean up all the build files
233 foreach ( $tmpfile, $object, @libs ) {
234 next unless defined $_;
235 1 while unlink;
236 }
237
238 return $result;
239}