X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=73d38744b88e5e4a65861edd6d21f1375f214d3b;hb=52d8b03143d6e6020fbbe0e27532011cf6c8eb66;hp=935ad2b667e039a7167e94846b401755c027fd41;hpb=22631187be248553a4d82cf5f2c61e68293da74c;p=p5sagit%2FDevel-Size.git diff --git a/Makefile.PL b/Makefile.PL index 935ad2b..73d3874 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,9 +1,18 @@ -use 5.008; +#!/usr/bin/perl -w +use 5.005; use ExtUtils::MakeMaker; +use strict; + +use Config; +(unpack "B*", pack "N", $Config{ptrsize}) =~ /^0+1(0+)$/ + or die "Your pointer size of $Config{ptrsize} is very confusing"; +my $ptr_bits = length $1; WriteMakefile( - NAME => 'Devel::Size', - VERSION_FROM => 'lib/Devel/Size.pm', - ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), - ($ExtUtils::MakeMaker::VERSION >= 6.30 ? (LICENSE => 'perl') : ()), + NAME => 'Devel::Size', + VERSION_FROM => 'lib/Devel/Size.pm', + DEFINE => "-DALIGN_BITS=$ptr_bits", + PREREQ_PM => { 'Test::More' => 0, XSLoader => 0, }, + (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.005') : ()), + (eval $ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), );