summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorAdrian M. Enache <enache@rdslink.ro>2003-08-04 19:20:19 +0300
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-23 09:15:15 +0000
commit538c07cc47462f860164a221f4f667ce2103ec45 (patch)
tree0161ddb33e0117c9c27dd58c8ee5b9f663876bf6 /config_h.SH
parent831715739566ec1d17a596fbf61e3cf9f3f7b41e (diff)
downloadperl-538c07cc47462f860164a221f4f667ce2103ec45.tar.gz
Re: bytecode.t & OS X "Invalid bytecode for this architecture"
Message-ID: <20030804132019.GA6764@ratsnest.hole> p4raw-id: //depot/perl@20856
Diffstat (limited to 'config_h.SH')
-rw-r--r--config_h.SH8
1 files changed, 4 insertions, 4 deletions
diff --git a/config_h.SH b/config_h.SH
index d4c431926b..96c7d060ee 100644
--- a/config_h.SH
+++ b/config_h.SH
@@ -987,19 +987,19 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
*/
#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH)
# ifdef __LITTLE_ENDIAN__
-# if LONGSIZE == 4
+# if UVSIZE == 4
# define BYTEORDER 0x1234
# else
-# if LONGSIZE == 8
+# if UVSIZE == 8
# define BYTEORDER 0x12345678
# endif
# endif
# else
# ifdef __BIG_ENDIAN__
-# if LONGSIZE == 4
+# if UVSIZE == 4
# define BYTEORDER 0x4321
# else
-# if LONGSIZE == 8
+# if UVSIZE == 8
# define BYTEORDER 0x87654321
# endif
# endif