diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-22 05:14:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-22 05:14:35 +0000 |
commit | 87b718577ff6cdca0223546e3d763cdc43aa9c70 (patch) | |
tree | 98ef372bce37868d35d51d9f36a44f963040c038 /config_h.SH | |
parent | d59b54291cd9fef89c2b5eb82987e80be19df21e (diff) | |
download | perl-87b718577ff6cdca0223546e3d763cdc43aa9c70.tar.gz |
Check the alignment of long doubles if they are to be used;
regen Configure.
p4raw-id: //depot/cfgperl@5189
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config_h.SH b/config_h.SH index 9529129c3e..e440274d60 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1090,8 +1090,8 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- /* MEM_ALIGNBYTES: * This symbol contains the number of bytes required to align a - * double. Usual values are 2, 4 and 8. The default is eight, - * for safety. + * double, or a long double when applicable. Usual values are 2, + * 4 and 8. The default is eight, for safety. */ #if defined(CROSSCOMPILE) || defined(MULTIARCH) # define MEM_ALIGNBYTES 8 @@ -1696,11 +1696,16 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$d_mkstemps HAS_MKSTEMPS /**/ +/* HAS_MMAP: + * This symbol, if defined, indicates that the mmap system call is + * available to map a file into memory. + */ /* Mmap_t: * This symbol holds the return type of the mmap() system call * (and simultaneously the type of the first argument). * Usually set to 'void *' or 'cadd_t'. */ +#$d_mmap HAS_MMAP /**/ #define Mmap_t $mmaptype /**/ /* HAS_MPROTECT: |