diff options
author | Karl Williamson <khw@cpan.org> | 2021-06-05 08:33:25 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2021-06-12 09:20:14 -0600 |
commit | 7db2b62c4fe1c3f09543a7b0141a489dd7577911 (patch) | |
tree | 463853d3de31aea7e44ea6c6676e91d5fbc812dd /config_h.SH | |
parent | bfe5127121a2046fe9d996a64635f6f08d940528 (diff) | |
download | perl-7db2b62c4fe1c3f09543a7b0141a489dd7577911.tar.gz |
Configure: apply recent metaconfig changes
Several new probes have been added.
Diffstat (limited to 'config_h.SH')
-rwxr-xr-x | config_h.SH | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/config_h.SH b/config_h.SH index 69103e4195..40a80e312e 100755 --- a/config_h.SH +++ b/config_h.SH @@ -1576,7 +1576,7 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un #$d_endpent HAS_ENDPROTOENT /**/ /* HAS_ENDPWENT: - * This symbol, if defined, indicates that the getgrent routine is + * This symbol, if defined, indicates that the endpwent routine is * available for finalizing sequential access of the passwd database. */ #$d_endpwent HAS_ENDPWENT /**/ @@ -2522,6 +2522,19 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_fegetround HAS_FEGETROUND /**/ +/* HAS_FFS: + * This symbol, if defined, indicates that the ffs routine is available + * to find the first bit set in its argument. If it's not available, + * roll your own. + */ +/* HAS_FFSL: + * This symbol, if defined, indicates that the ffsl routine is available + * to find the first bit set in its argument. If it's not available, + * roll your own. + */ +#$d_ffs HAS_FFS /**/ +#$d_ffsl HAS_FFSL /**/ + /* HAS_FINITE: * This symbol, if defined, indicates that the finite routine is * available to check whether a double is finite (non-infinity non-NaN). @@ -3461,6 +3474,12 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_strtouq HAS_STRTOUQ /**/ +/* HAS_STRXFRM_L: + * This symbol, if defined, indicates that the strxfrm_l() routine is + * available to transform strings. + */ +#$d_strxfrm_l HAS_STRXFRM_L /**/ + /* HAS_SYSCALL_PROTO: * This symbol, if defined, indicates that the system provides * a prototype for the syscall() function. Otherwise, it is up @@ -4915,10 +4934,15 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_mbrtowc HAS_MBRTOWC /**/ +/* HAS_NL_LANGINFO_L: + * This symbol, when defined, indicates presence of the nl_langinfo_l() + * function + */ /* HAS_THREAD_SAFE_NL_LANGINFO_L: * This symbol, when defined, indicates presence of the nl_langinfo_l() * function, and that it is thread-safe. */ +#$d_nl_langinfo_l HAS_NL_LANGINFO_L /**/ #$d_thread_safe_nl_langinfo_l HAS_THREAD_SAFE_NL_LANGINFO_L /**/ /* OLD_PTHREAD_CREATE_JOINABLE: |