This is 0.75_51 - update META.yml
[p5sagit/Devel-Size.git] / Makefile.PL
index 7e550ee..2f91101 100644 (file)
@@ -5,7 +5,7 @@ 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";
@@ -29,24 +29,22 @@ my %special = (
 
 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 "#ifdef $special{$_}\n" if ($special{$_});
+    if ($Config{gccversion}) {
        print FH "    &$_,\n";
+    } else {
+       print FH "    check_new(st, &$_);\n";
     }
+    print FH "#endif\n" if ($special{$_});
 }
 
 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",
+             (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()),
+             (eval $ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()),
+             realclean => {FILES=> $vtable_file},
 );