diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-16 01:34:18 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-16 01:34:18 +0000 |
commit | 74cac757131a44f884c4728708d3a2e5d87b32d3 (patch) | |
tree | 6d2eb90fe3f3281dc6ad24428da39f64d03b91bc /Porting | |
parent | a56128cb6b3ea4627b6695edab03059309381357 (diff) | |
download | perl-74cac757131a44f884c4728708d3a2e5d87b32d3.tar.gz |
Add fwalk() probe to the configuration files and regen perltoc.
p4raw-id: //depot/perl@7705
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 136977290f..6441fd8d7b 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -340,6 +340,10 @@ csh (Loc.U): full pathname (if any) of the csh program. After Configure runs, the value is reset to a plain "csh" and is not useful. +d__fwalk (d__fwalk.U): + This variable conditionally defines HAS__FWALK if _fwalk() is + available to apply a function to all the file handles. + d_access (d_access.U): This variable conditionally defines HAS_ACCESS if the access() system call is available to check for access permissions using real IDs. diff --git a/Porting/config.sh b/Porting/config.sh index e7d0a4ee01..654bec78ab 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : /m/fs/work/work/permanent/perl/pp4/perl -# Configuration time: Sun Nov 12 20:54:32 EET 2000 +# Configuration time: Thu Nov 16 03:24:59 EET 2000 # 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='Sun Nov 12 20:54:32 EET 2000' +cf_time='Thu Nov 16 03:24:59 EET 2000' charsize='1' chgrp='' chmod='' @@ -99,6 +99,7 @@ d_PRIo64='define' d_PRIu64='define' d_PRIx64='define' d_SCNfldbl='define' +d__fwalk='undef' d_access='define' d_accessx='undef' d_alarm='define' diff --git a/Porting/config_H b/Porting/config_H index e313377a58..dc2f0f1cd6 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : /m/fs/work/work/permanent/perl/pp4/perl - * Configuration time: Sun Nov 12 20:54:32 EET 2000 + * Configuration time: Thu Nov 16 03:24:59 EET 2000 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -3191,6 +3191,12 @@ #define HAS_SETPGRP /**/ #define USE_BSD_SETPGRP /**/ +/* HAS__FWALK: + * This symbol, if defined, indicates that the _fwalk system call is + * available to apply a function to all the file handles. + */ +/*#define HAS__FWALK / **/ + /* FCNTL_CAN_LOCK: * This symbol, if defined, indicates that fcntl() can be used * for file locking. Normally on Unix systems this is defined. |