diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-10-18 13:50:15 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-10-18 13:50:15 +0000 |
commit | b0a2e8e64dee1b1bd00055b3c5b69e2c3c888f55 (patch) | |
tree | 13b7c351570e65be160f03e42d206c203a01b7df /config_h.SH | |
parent | 9969cdde14140755eb30d589cbe9cc9376b9fe3d (diff) | |
download | perl-b0a2e8e64dee1b1bd00055b3c5b69e2c3c888f55.tar.gz |
Add probe for clearenv (), like #25733 for unsetenv ()
p4raw-id: //depot/perl@25793
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/config_h.SH b/config_h.SH index 5ff37c567e..15d8b43749 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1948,18 +1948,6 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_madvise HAS_MADVISE /**/ -/* HAS_MALLOC_SIZE: - * This symbol, if defined, indicates that the malloc_size - * routine is available for use. - */ -#$d_malloc_size HAS_MALLOC_SIZE /**/ - -/* HAS_MALLOC_GOOD_SIZE: - * This symbol, if defined, indicates that the malloc_good_size - * routine is available for use. - */ -#$d_malloc_good_size HAS_MALLOC_GOOD_SIZE /**/ - /* HAS_MEMCHR: * This symbol, if defined, indicates that the memchr routine is available * to locate characters within a C string. @@ -3843,6 +3831,12 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_aintl HAS_AINTL /**/ +/* HAS_CLEARENV: + * This symbol, if defined, indicates that the clearenv () routine is + * available for use. + */ +#$d_clearenv HAS_CLEARENV /**/ + /* HAS_COPYSIGNL: * This symbol, if defined, indicates that the copysignl routine is * available. If aintl is also present we can emulate modfl. @@ -3907,6 +3901,18 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_libm_lib_version LIBM_LIB_VERSION /**/ +/* HAS_MALLOC_SIZE: + * This symbol, if defined, indicates that the malloc_size + * routine is available for use. + */ +#$d_malloc_size HAS_MALLOC_SIZE /**/ + +/* HAS_MALLOC_GOOD_SIZE: + * This symbol, if defined, indicates that the malloc_good_size + * routine is available for use. + */ +#$d_malloc_good_size HAS_MALLOC_GOOD_SIZE /**/ + /* 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> |