diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-24 01:14:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-24 01:14:06 +0000 |
commit | d308175ab83748573482cc00d7ded514f6a34f91 (patch) | |
tree | 65ee61e7abef060a646263080447845c41b18015 /Configure | |
parent | 1deb0a86f5573cf51d7a689b01aed6b1d7b21ba2 (diff) | |
download | perl-d308175ab83748573482cc00d7ded514f6a34f91.tar.gz |
The U32 alignment test wasn't really working, noticed
by Paul Green. Now the test works, but this means that
we may see coredumps from the test. I sure hope MMUless
places don't crash on the test.
p4raw-id: //depot/perl@13869
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Dec 24 02:45:06 EET 2001 [metaconfig 3.0 PL70] +# Generated on Mon Dec 24 04:14:27 EET 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -13476,7 +13476,8 @@ EOM $cat >try.c <<EOCP #include <stdio.h> #define U32 $u32type -#define BYTEORDER $byteorder +#define BYTEORDER 0x$byteorder +#define U8 $u8type int main() { #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321 U8 buf[] = "\0\0\0\1\0\0\0\0"; @@ -13522,7 +13523,7 @@ int main() { EOCP set try if eval $compile_ok; then - echo "(Testing for character data alignment may dump core.)" >&4 + echo "(Testing for character data alignment may crash the test. That's okay.)" >&4 $run ./try 2>&1 >/dev/null case "$?" in 0) cat >&4 <<EOM |