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 /vos | |
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 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 6 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 6 |
4 files changed, 14 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 1ec2d9167c..af35fbd693 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -319,6 +319,7 @@ $i_dbm='undef' $i_dirent='define' $i_dlfcn='undef' $i_fcntl='define' +$i_features='undef' $i_float='define' $i_grp='define' $i_iconv='undef' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 7b21420a6d..128aaa6435 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -747,6 +747,12 @@ */ #define I_FCNTL /**/ +/* I_FEATURES: + * This symbol, if defined, indicates that <features.h> exists and should + * be included. + */ +/*#define I_FEATURES /**/ + /* I_FLOAT: * This symbol, if defined, indicates to the C program that it should * include <float.h> to get definition of symbols like DBL_MAX or diff --git a/vos/config.ga.def b/vos/config.ga.def index ab57e08832..72054ec53f 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -319,6 +319,7 @@ $i_dbm='undef' $i_dirent='define' $i_dlfcn='undef' $i_fcntl='define' +$i_features='undef' $i_float='define' $i_grp='define' $i_iconv='undef' diff --git a/vos/config.ga.h b/vos/config.ga.h index 2a89a1e3bc..c2553e5c98 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -759,6 +759,12 @@ */ #define I_FCNTL /**/ +/* I_FEATURES: + * This symbol, if defined, indicates that <features.h> exists and should + * be included. + */ +/*#define I_FEATURES /**/ + /* I_FLOAT: * This symbol, if defined, indicates to the C program that it should * include <float.h> to get definition of symbols like DBL_MAX or |