diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-14 04:55:34 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-14 04:55:34 +0000 |
commit | 78d8f6e05211de1a60b4bb9b795b8ff72f179ebe (patch) | |
tree | 3de95674ac2df6eb32eabcb77baeddc6c794e53c /Porting | |
parent | ed7a760fef4dab277d3d0e5f853210f001d70171 (diff) | |
download | perl-78d8f6e05211de1a60b4bb9b795b8ff72f179ebe.tar.gz |
(Reverted by #8440)
Add <features.h> probing, seems to be needed for (some?)
Linux largefileness.
p4raw-id: //depot/perl@8437
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 4 | ||||
-rw-r--r-- | Porting/config.sh | 5 | ||||
-rw-r--r-- | Porting/config_H | 8 |
3 files changed, 14 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 5800202e69..4c6f81f14d 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -2013,6 +2013,10 @@ i_fcntl (i_fcntl.U): This variable controls the value of I_FCNTL (which tells the C program to include <fcntl.h>). +i_features (i_features.U): + This variable conditionally defines the I_FEATURES symbol, + and indicates whether a C program should include <features.h>. + i_float (i_float.U): This variable conditionally defines the I_FLOAT symbol, and indicates whether a C program may include <float.h> to get symbols like DBL_MAX diff --git a/Porting/config.sh b/Porting/config.sh index 1f362530ee..64b6d485ca 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Fri Jan 12 22:32:53 EET 2001 +# Configuration time: Sun Jan 14 06:47:38 EET 2001 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -62,7 +62,7 @@ ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_ ccversion='V5.6-082' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Fri Jan 12 22:32:53 EET 2001' +cf_time='Sun Jan 14 06:47:38 EET 2001' charsize='1' chgrp='' chmod='' @@ -455,6 +455,7 @@ i_dirent='define' i_dld='undef' i_dlfcn='define' i_fcntl='undef' +i_features='undef' i_float='define' i_gdbm='undef' i_grp='define' diff --git a/Porting/config_H b/Porting/config_H index 9f615857c9..ea4f3648cb 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Fri Jan 12 22:32:53 EET 2001 + * Configuration time: Sun Jan 14 06:47:38 EET 2001 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -3249,4 +3249,10 @@ */ #define HAS_SIGPROCMASK /**/ +/* I_FEATURES: + * This symbol, if defined, indicates that <features.h> exists and + * should be included. + */ +/*#define I_FEATURES / **/ + #endif |