]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/blobdiff - Makefile.PL
Make svu_validate_uv() return the usable size_t value
[perl/modules/Scalar-Vec-Util.git] / Makefile.PL
index ec065d3ef4a78ab5e5380ed44a08b1c3d5e7cab7..42a215f802ddaba06ba27d678077db61b0f21d19 100644 (file)
@@ -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,