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 /win32 | |
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 'win32')
-rw-r--r-- | win32/config.bc | 1 | ||||
-rw-r--r-- | win32/config.gc | 1 | ||||
-rw-r--r-- | win32/config.vc | 1 | ||||
-rw-r--r-- | win32/config_H.bc | 6 | ||||
-rw-r--r-- | win32/config_H.gc | 6 | ||||
-rw-r--r-- | win32/config_H.vc | 6 |
6 files changed, 21 insertions, 0 deletions
diff --git a/win32/config.bc b/win32/config.bc index a47e40534f..86b4d51c85 100644 --- a/win32/config.bc +++ b/win32/config.bc @@ -129,6 +129,7 @@ d_endpwent='undef' d_endsent='undef' d_eofnblk='define' d_eunice='undef' +d_fchdir='undef' d_fchmod='undef' d_fchown='undef' d_fcntl='undef' diff --git a/win32/config.gc b/win32/config.gc index 38c7a15f6b..463631662f 100644 --- a/win32/config.gc +++ b/win32/config.gc @@ -129,6 +129,7 @@ d_endpwent='undef' d_endsent='undef' d_eofnblk='define' d_eunice='undef' +d_fchdir='undef' d_fchmod='undef' d_fchown='undef' d_fcntl='undef' diff --git a/win32/config.vc b/win32/config.vc index 2e0bae22e0..176aabe718 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -129,6 +129,7 @@ d_endpwent='undef' d_endsent='undef' d_eofnblk='define' d_eunice='undef' +d_fchdir='undef' d_fchmod='undef' d_fchown='undef' d_fcntl='undef' diff --git a/win32/config_H.bc b/win32/config_H.bc index 6f1d3c1914..3fcbce8ac3 100644 --- a/win32/config_H.bc +++ b/win32/config_H.bc @@ -127,6 +127,12 @@ */ #define HAS_DUP2 /**/ +/* HAS_FCHDIR: + * This symbol, if defined, indicates that the fchdir routine is + * available to change directory using a file descriptor. + */ +/*#define HAS_FCHDIR /**/ + /* HAS_FCHMOD: * This symbol, if defined, indicates that the fchmod routine is available * to change mode of opened files. If unavailable, use chmod(). diff --git a/win32/config_H.gc b/win32/config_H.gc index ce85240be0..cd73f0b3cd 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -127,6 +127,12 @@ */ #define HAS_DUP2 /**/ +/* HAS_FCHDIR: + * This symbol, if defined, indicates that the fchdir routine is + * available to change directory using a file descriptor. + */ +/*#define HAS_FCHDIR /**/ + /* HAS_FCHMOD: * This symbol, if defined, indicates that the fchmod routine is available * to change mode of opened files. If unavailable, use chmod(). diff --git a/win32/config_H.vc b/win32/config_H.vc index e48c157707..cb63dba0cf 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -127,6 +127,12 @@ */ #define HAS_DUP2 /**/ +/* HAS_FCHDIR: + * This symbol, if defined, indicates that the fchdir routine is + * available to change directory using a file descriptor. + */ +/*#define HAS_FCHDIR /**/ + /* HAS_FCHMOD: * This symbol, if defined, indicates that the fchmod routine is available * to change mode of opened files. If unavailable, use chmod(). |