X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=42a215f802ddaba06ba27d678077db61b0f21d19;hb=2bb51fdc5d31148cbdb9a77949bc7a11652349a8;hp=ec065d3ef4a78ab5e5380ed44a08b1c3d5e7cab7;hpb=32f2bff1c76f086abcd9e0557c3ffb1e2625667c;p=perl%2Fmodules%2FScalar-Vec-Util.git diff --git a/Makefile.PL b/Makefile.PL index ec065d3..42a215f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -54,8 +54,7 @@ if (not is_little_endian()) { } else { print "Checking unit size in bits... "; my $align = $Config{alignbytes} || 1; - my @bits = (8, 16, 32); - push @bits, 64 unless $^O eq 'MSWin32'; + my @bits = (8, 16, 32, 64); for my $bits (@bits) { my $size = $Config{"u${bits}size"}; next unless $size; @@ -106,7 +105,8 @@ WriteMakefile( PREREQ_PM => { 'Exporter' => 0, 'Carp' => 0, - 'XSLoader' => 0 + 'XSLoader' => 0, + 'base' => 0, }, MIN_PERL_VERSION => 5.006, META_MERGE => \%META,