diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-26 11:26:05 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-26 11:26:05 +0000 |
commit | 9b70c55fe958b1da7c3c2de3a97fa739b1687085 (patch) | |
tree | 62cdc6028f6f6fea6c1832a259596e0a5535cfe0 /config_h.SH | |
parent | 075abff3feb0c6965ba49108266b27bec1bd4ae6 (diff) | |
download | perl-9b70c55fe958b1da7c3c2de3a97fa739b1687085.tar.gz |
More possible re-order dependencies solved
p4raw-id: //depot/perl@24581
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/config_h.SH b/config_h.SH index 081151053a..422bd6cce2 100644 --- a/config_h.SH +++ b/config_h.SH @@ -939,6 +939,18 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$multiarch MULTIARCH /**/ +/* USE_CROSS_COMPILE: + * This symbol, if defined, indicates that Perl is being cross-compiled. + */ +/* PERL_TARGETARCH: + * This symbol, if defined, indicates the target architecture + * Perl has been cross-compiled to. Undefined if not a cross-compile. + */ +#ifndef USE_CROSS_COMPILE +#$usecrosscompile USE_CROSS_COMPILE /**/ +#define PERL_TARGETARCH "$targetarch" /**/ +#endif + /* MEM_ALIGNBYTES: * This symbol contains the number of bytes required to align a * double, or a long double when applicable. Usual values are 2, @@ -3808,18 +3820,6 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #define SH_PATH "$sh" /**/ -/* USE_CROSS_COMPILE: - * This symbol, if defined, indicates that Perl is being cross-compiled. - */ -/* PERL_TARGETARCH: - * This symbol, if defined, indicates the target architecture - * Perl has been cross-compiled to. Undefined if not a cross-compile. - */ -#ifndef USE_CROSS_COMPILE -#$usecrosscompile USE_CROSS_COMPILE /**/ -#define PERL_TARGETARCH "$targetarch" /**/ -#endif - /* HAS_AINTL: * This symbol, if defined, indicates that the aintl routine is * available. If copysignl is also present we can emulate modfl. |