diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-21 19:40:34 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-21 19:40:34 +0000 |
commit | b363b71387982836a5629ce821dc43de9f38573c (patch) | |
tree | a38200b10ed29f673d11721bf1c9621126705778 /vos | |
parent | 00536bfc9b527920fdb38d3e40d0078a06ab314d (diff) | |
download | perl-b363b71387982836a5629ce821dc43de9f38573c.tar.gz |
Add fchdir() probe (in non-UNIX systems assume it doesn't exist).
p4raw-id: //depot/perl@10797
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 006551691c..93a9601401 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -62,6 +62,7 @@ $d_endpent='define' $d_endpwent='undef' $d_endsent='define' $d_eofnblk='define' +$d_fchdir='undef' $d_fchmod='define' $d_fchown='undef' $d_fcntl='define' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 3f47acfcd0..72a0e3db90 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -1281,6 +1281,12 @@ */ #define HAS_ENDSERVENT /**/ +/* HAS_FCHDIR: + * This symbol, if defined, indicates that the fchdir routine is + * available to change directory using a file descriptor. + */ +/*#define HAS_FCHDIR /**/ + /* FCNTL_CAN_LOCK: * This symbol, if defined, indicates that fcntl() can be used * for file locking. Normally on Unix systems this is defined. diff --git a/vos/config.ga.def b/vos/config.ga.def index 4d49cf53ad..8774ae7ad9 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -62,6 +62,7 @@ $d_endpent='define' $d_endpwent='undef' $d_endsent='define' $d_eofnblk='define' +$d_fchdir='undef' $d_fchmod='define' $d_fchown='undef' $d_fcntl='define' diff --git a/vos/config.ga.h b/vos/config.ga.h index 5b283e3f13..6cc7db0568 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -1281,6 +1281,12 @@ */ #define HAS_ENDSERVENT /**/ +/* HAS_FCHDIR: + * This symbol, if defined, indicates that the fchdir routine is + * available to change directory using a file descriptor. + */ +/*#define HAS_FCHDIR /**/ + /* FCNTL_CAN_LOCK: * This symbol, if defined, indicates that fcntl() can be used * for file locking. Normally on Unix systems this is defined. |