diff options
author | Brian Fraser <fraserbn@gmail.com> | 2014-01-15 06:42:35 -0300 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-01-17 11:35:48 -0300 |
commit | 1b2243c701f4438018242947ec41ea8dd65e3dbe (patch) | |
tree | b2e3cfa2f4f5d55a6fbc238600ad8a572bb904d5 /NetWare | |
parent | b76ca5cc32f3249b9a89eb81c445f069e69fb814 (diff) | |
download | perl-1b2243c701f4438018242947ec41ea8dd65e3dbe.tar.gz |
config.h: Remove the exceptions for cross-compilation builds
This makes it so that the values for MEM_ALIGNBYTES and BYTEORDER
are taken from config.sh, instead of always getting a default.
Diffstat (limited to 'NetWare')
-rw-r--r-- | NetWare/config_H.wc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/config_H.wc b/NetWare/config_H.wc index 64f9067263..4eefe62238 100644 --- a/NetWare/config_H.wc +++ b/NetWare/config_H.wc @@ -1023,7 +1023,7 @@ * double, or a long double when applicable. Usual values are 2, * 4 and 8. The default is eight, for safety. */ -#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) +#if defined(MULTIARCH) # define MEM_ALIGNBYTES 8 #else #define MEM_ALIGNBYTES 8 @@ -1092,7 +1092,7 @@ * so the default case (for NeXT) is big endian to catch them. * This might matter for NeXT 3.0. */ -#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) +#if defined(MULTIARCH) # ifdef __LITTLE_ENDIAN__ # if LONGSIZE == 4 # define BYTEORDER 0x1234 |