]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
64 bits now works on Win32
authorVincent Pit <vince@profvince.com>
Sun, 17 May 2009 19:05:43 +0000 (21:05 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 17 May 2009 19:05:43 +0000 (21:05 +0200)
Makefile.PL

index ec065d3ef4a78ab5e5380ed44a08b1c3d5e7cab7..9a8580b5cfde30b57bfd5cb818153738b5524ec5 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;