summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-24 01:14:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-24 01:14:06 +0000
commitd308175ab83748573482cc00d7ded514f6a34f91 (patch)
tree65ee61e7abef060a646263080447845c41b18015 /Configure
parent1deb0a86f5573cf51d7a689b01aed6b1d7b21ba2 (diff)
downloadperl-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-xConfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/Configure b/Configure
index 0f3ee5dd0c..3a8a661453 100755
--- a/Configure
+++ b/Configure
@@ -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