diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-09 02:07:08 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-09 02:07:08 +0000 |
commit | fe749a9feb9cbf8d28d589c8fd24caaf6b33a0a4 (patch) | |
tree | 8fd43ad8313fa03e4b962667f1a1b0bb21b56845 /win32/config_H.vc | |
parent | 1761cee512762c09b2a848d3c6cbd5a3b4232ffa (diff) | |
download | perl-fe749a9feb9cbf8d28d589c8fd24caaf6b33a0a4.tar.gz |
Add/restore probes for getcwd/mk*temp*/mmap.
p4raw-id: //depot/cfgperl@5044
Diffstat (limited to 'win32/config_H.vc')
-rw-r--r-- | win32/config_H.vc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/win32/config_H.vc b/win32/config_H.vc index 1cd5e65a60..c4d9c4292f 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -293,6 +293,12 @@ */ /*#define HAS_LSTAT /**/ +/* HAS_MADVISE: + * This symbol, if defined, indicates that the madvise routine is + * available to hint about the expected access behavior. + */ +/*#define HAS_MADVISE /**/ + /* HAS_MBLEN: * This symbol, if defined, indicates that the mblen routine is available * to find the number of bytes in a multibye character. @@ -344,6 +350,12 @@ */ #define HAS_MKDIR /**/ +/* HAS_MKDTEMP: + * This symbol, if defined, indicates that the mkdtemp routine is + * available to exclusively create a uniquely named temporary directory. + */ +/*#define HAS_MKDTEMP /**/ + /* HAS_MKFIFO: * This symbol, if defined, indicates that the mkfifo routine is * available to create FIFOs. Otherwise, mknod should be able to @@ -352,6 +364,20 @@ */ /*#define HAS_MKFIFO /**/ +/* HAS_MKSTEMP: + * This symbol, if defined, indicates that the mkstemp routine is + * available to exclusively create and open a uniquely named + * temporary file. + */ +/*#define HAS_MKSTEMP /**/ + +/* HAS_MKSTEMPS: + * This symbol, if defined, indicates that the mkstemps routine is + * available to exclusively create and open a uniquely named + * (with a suffix) temporary file. + */ +/*#define HAS_MKSTEMPS /**/ + /* HAS_MKTIME: * This symbol, if defined, indicates that the mktime routine is * available. @@ -1361,6 +1387,12 @@ */ #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x)) +/* HAS_GETCWD: + * This symbol, if defined, indicates that the getcwd routine is + * available to get the current working directory. + */ +/*#define HAS_GETCWD /**/ + /* HAS_GETGRENT: * This symbol, if defined, indicates that the getgrent routine is * available for sequential access of the group database. |