This is 0.79_54 - update META.yml, and META.json
[p5sagit/Devel-Size.git] / Makefile.PL
1 #!/usr/bin/perl -w
2 use 5.005;
3 use ExtUtils::MakeMaker;
4 use strict;
5
6 use Config;
7 (unpack "B*", pack "N", $Config{ptrsize}) =~ /^0+1(0+)$/
8     or die "Your pointer size of $Config{ptrsize} is very confusing";
9 my $ptr_bits = length $1;
10
11 WriteMakefile(
12               NAME => 'Devel::Size',
13               VERSION_FROM => 'lib/Devel/Size.pm',
14               DEFINE => "-DALIGN_BITS=$ptr_bits",
15               PREREQ_PM => { 'Test::More' => 0, XSLoader => 0, },
16               (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.005') : ()),
17               (eval $ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()),
18 );