diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-04-23 18:53:46 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-04-23 18:53:46 +0000 |
commit | 1de32f2a8367111f29377c6ed81b538f36717dd9 (patch) | |
tree | 9ed632b812cc1ce84ee803b2b85f78b8f2b5b6f5 /NetWare/config_H.wc | |
parent | 4d54317ac9ba0c90a68cd73dbfa18c9d8dcb5075 (diff) | |
download | perl-1de32f2a8367111f29377c6ed81b538f36717dd9.tar.gz |
Introduce 'fast stdio' symbols to non-Configure lands.
p4raw-id: //depot/perl@19314
Diffstat (limited to 'NetWare/config_H.wc')
-rw-r--r-- | NetWare/config_H.wc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/NetWare/config_H.wc b/NetWare/config_H.wc index 2c18d89f50..1a255b1508 100644 --- a/NetWare/config_H.wc +++ b/NetWare/config_H.wc @@ -136,6 +136,12 @@ */ #define HAS_DUP2 /**/ +/* HAS_FAST_STDIO: + * This symbol, if defined, indicates that the "fast stdio" + * is available to manipulate the stdio buffers directly. + */ +/*#define HAS_FAST_STDIO /**/ + /* HAS_FCHDIR: * This symbol, if defined, indicates that the fchdir routine is * available to change directory using a file descriptor. @@ -3153,6 +3159,15 @@ /*#define USE_64_BIT_ALL /**/ #endif +/* USE_FAST_STDIO: + * This symbol, if defined, indicates that Perl should + * be built to use 'fast stdio'. + * Defaults to define in Perls 5.8 and earlier, to undef later. + */ +#ifndef USE_FAST_STDIO +/*#define USE_FAST_STDIO / **/ +#endif + /* USE_LARGE_FILES: * This symbol, if defined, indicates that large file support * should be used when available. |