X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Size.git;a=blobdiff_plain;f=Makefile.PL;h=73d38744b88e5e4a65861edd6d21f1375f214d3b;hp=caf4519a729a045cea52dc62b29ac8d66db6bf0c;hb=fd495cc6d914df3af995a850cc8dd2561d4331b5;hpb=6ea94d90d77e87b84ee176b42cce067047362a4c diff --git a/Makefile.PL b/Makefile.PL index caf4519..73d3874 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,18 @@ - +#!/usr/bin/perl -w +use 5.005; +use ExtUtils::MakeMaker; use strict; -# require at least 5.006, it doesn't even compile under 5.005 -require 5.006; - -# Load the Module::Install bundled in ./inc/ -use inc::Module::Install; - -name 'Devel-Size'; - -# Get most of the details from the primary module -all_from 'lib/Devel/Size.pm'; - -requires 'DynaLoader' => 0; -requires 'perl' => 5.006; - -recommends 'Devel::Size::Report' => 0.11; - -build_requires 'Test::More' => 0.42; - -license 'perl'; # from 5.8.8 - -# It seems not to be possible to specifiy two authors here :/ -# Nor does a "maintainer" property exist -author 'Tels '; - -# Do not index these -no_index directory => 'examples'; -# Generate the Makefile -WriteAll; +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', + 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') : ()), +);