From: Vincent Pit Date: Sun, 17 May 2009 19:05:43 +0000 (+0200) Subject: 64 bits now works on Win32 X-Git-Tag: v0.06~2 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScalar-Vec-Util.git;a=commitdiff_plain;h=d2b386eb02383027db5d23d26d9c14e368e4e66e 64 bits now works on Win32 --- diff --git a/Makefile.PL b/Makefile.PL index ec065d3..9a8580b 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;