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=5eb43c6e88a1da038a7cc122435a5023e09928ab;hb=fd495cc6d914df3af995a850cc8dd2561d4331b5;hpb=33d464ba15a1986e04334c570588029c4e04fc7a diff --git a/Makefile.PL b/Makefile.PL index 5eb43c6..73d3874 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -use 5.008; +use 5.005; use ExtUtils::MakeMaker; use strict; @@ -8,45 +8,11 @@ use Config; 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", - (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), + 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') : ()), - realclean => {FILES=> $vtable_file}, );