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 /Porting/config_H | |
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 'Porting/config_H')
-rw-r--r-- | Porting/config_H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/config_H b/Porting/config_H index 684383840f..59e3f364dc 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -941,7 +941,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 4 @@ -1003,7 +1003,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 |