diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-02-25 20:41:07 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-02-25 20:41:07 +0000 |
commit | ca8cfa5475011a74e81458daa0cc5b23c374bc3a (patch) | |
tree | 4e29472ea85d843c4006913c8405e5ec79265407 /config_h.SH | |
parent | 2bb14304c505556bf183ed7772a95e259fa0724d (diff) | |
download | perl-ca8cfa5475011a74e81458daa0cc5b23c374bc3a.tar.gz |
Temporary workaround for the config_h.SH versus
crosscompile and multiarch plus introduce 'rt'
to $libswanted: in UNIX98 sched_yield() lives there.
p4raw-id: //depot/cfgperl@3025
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config_h.SH b/config_h.SH index d28e91f03b..d16cdaab4a 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1076,7 +1076,7 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- * double. Usual values are 2, 4 and 8. The default is eight, * for safety. */ -#if defined(CROSSCOMPILE) || defined(MULTIARCH) +#if defined(CROSSCOMPILE) || defined(MULTIARCH) || defined(NeXT) || defined(__NeXT__) # define MEM_ALIGNBYTES 8 #else #define MEM_ALIGNBYTES $alignbytes @@ -1098,7 +1098,7 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- * so the default case (for NeXT) is big endian to catch them. * This might matter for NeXT 3.0. */ -#if defined(CROSSCOMPILE) || defined(MULTIARCH) +#if defined(CROSSCOMPILE) || defined(MULTIARCH) || defined(NeXT) || defined(__NeXT__) # ifdef __LITTLE_ENDIAN__ # if LONGSIZE == 4 # define BYTEORDER 0x1234 |