X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=497c2db93f3bc0f1525275bfdc0835106f210020;hb=a0a834e7adba366e50a5de19cc3a5a66e2f2bd14;hp=7e550eeceea00c821bbec18eb5c4ae65d640a5ea;hpb=d9b022a1b74d43b80f7ae8caa6f0afc0eaad708f;p=p5sagit%2FDevel-Size.git diff --git a/Makefile.PL b/Makefile.PL index 7e550ee..497c2db 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,52 +1,18 @@ #!/usr/bin/perl -w -use 5.008; +use 5.006; 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"; + or die "Your pointer size of $Config{ptrsize} is very confusing"; my $ptr_bits = length $1; -my $svh = "$Config{archlibexp}/CORE/perl.h"; -my $vtable_file = 'vtables.inc'; - -my %vtables; -open FH, "<$svh" - or die "Can't open $svh ($!) - is your perl install missing its headers?"; -while () { - next unless /^\s+(PL_vtbl_[a-z]+),\s*$/ or /^EXT MGVTBL (PL_vtbl_[a-z]+) =/; - ++$vtables{$1}; -} -warn "Didn't find any vtable names in $svh" unless %vtables; -close FH; - - -my %special = ( - PL_vtbl_collxfrm => 'USE_LOCALE_COLLATE', - PL_vtbl_mutex => 'USE_5005THREADS', -); - -open FH, ">$vtable_file" or die "Can't open $vtable_file: $!"; -foreach (sort keys %vtables) { - if ($special{$_}) { - print FH <<"EOT"; -#ifdef $special{$_} - &$_, -#endif -EOT - } else { - print FH " &$_,\n"; - } -} - -close FH or die "Error closing $vtable_file: $!"; - WriteMakefile( - NAME => 'Devel::Size', - VERSION_FROM => 'lib/Devel/Size.pm', - DEFINE => "-DALIGN_BITS=$ptr_bits", - ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), - ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), - realclean => {FILES=> $vtable_file}, + NAME => 'Devel::Size', + VERSION_FROM => 'lib/Devel/Size.pm', + DEFINE => "-DALIGN_BITS=$ptr_bits", + PREREQ_PM => { 'Test::More' => 0 }, + (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.006') : ()), + (eval $ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), );