From: Gurusamy Sarathy Date: Tue, 23 Apr 2002 22:27:07 +0000 (+0000) Subject: Configure test for byteorder loses bits X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b5ded3e5070e86dde1a5404c8ccb04bdba12e7d9;p=p5sagit%2Fp5-mst-13.2.git Configure test for byteorder loses bits p4raw-id: //depot/perl@16111 --- diff --git a/Configure b/Configure index 88492fd..51ecb8d 100755 --- a/Configure +++ b/Configure @@ -16166,7 +16166,7 @@ int main() } u; if ($uvsize > 4) - u.l = (0x08070605L << 32) | 0x04030201L; + u.l = (((UV)0x08070605) << 32) | (UV)0x04030201; else u.l = 0x04030201L; for (i = 0; i < $uvsize; i++)