diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-28 14:12:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-28 14:12:27 +0000 |
commit | 2765b840fca882ed4632588ab696d917cbd8f128 (patch) | |
tree | 9b2a4b5ccf01cbb4c35fdd1508766e6371e8ca6f /Porting/config_H | |
parent | 21c7e20cb06994bee68ab7053ced688d59fb6908 (diff) | |
download | perl-2765b840fca882ed4632588ab696d917cbd8f128.tar.gz |
Add Configure probes for nl_langinfo() and <langinfo.h>.
Expected not to exist in non-UNIX excepting in VMS, where
according to a quick web survey they just might.
p4raw-id: //depot/perl@11003
Diffstat (limited to 'Porting/config_H')
-rw-r--r-- | Porting/config_H | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Porting/config_H b/Porting/config_H index 2d53499d14..3ae6ca9ecb 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Sat Jun 23 00:03:07 EET DST 2001 + * Configuration time: Thu Jun 28 18:05:29 EET DST 2001 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2937,7 +2937,7 @@ * This macro is to be used to generate uniformly distributed * random numbers over the range [0., 1.[. You may have to supply * an 'extern double drand48();' in your program since SunOS 4.1.3 - * doesn't provide you with anything relevant in its headers. + * doesn't provide you with anything relevant in it's headers. * See HAS_DRAND48_PROTO. */ /* Rand_seed_t: @@ -3378,6 +3378,13 @@ */ /*#define HAS_FLOCK_PROTO / **/ +/* HAS_NL_LANGINFO: + * This symbol, if defined, indicates that the nl_langinfo routine is + * available to return local data. You will also need <langinfo.h> + * and therefore I_LANGINFO. + */ +#define HAS_NL_LANGINFO /**/ + /* HAS_SIGPROCMASK: * This symbol, if defined, indicates that the sigprocmask * system call is available to examine or change the signal mask @@ -3444,4 +3451,10 @@ */ /*#define HAS_USLEEP_PROTO / **/ +/* I_LANGINFO: + * This symbol, if defined, indicates that <langinfo.h> exists and + * should be included. + */ +#define I_LANGINFO /**/ + #endif |