diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-22 22:03:26 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-22 22:03:26 +0000 |
commit | 13b3f78704810709000ac835e0f07862c2b103e2 (patch) | |
tree | 32168589f82933eb5543e958c13caecab387a8c6 /config_h.SH | |
parent | 44d27a6e4dd2f43427369f61e83839b838b643ae (diff) | |
download | perl-13b3f78704810709000ac835e0f07862c2b103e2.tar.gz |
Add socklen_t probe; Configure maintenance.
p4raw-id: //depot/cfgperl@5213
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/config_h.SH b/config_h.SH index e440274d60..4d679f27aa 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1620,7 +1620,7 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- * Usually the <inttypes.h> needs to be included, but sometimes * <sys/types.h> is enough. */ -#$d_int64t HAS_INT64_T /**/ +#$d_int64_t HAS_INT64_T /**/ /* HAS_ISASCII: * This manifest constant lets the C program know that isascii @@ -1936,6 +1936,12 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- #$d_msg_proxy HAS_MSG_PROXY /**/ #$d_scm_rights HAS_SCM_RIGHTS /**/ +/* HAS_SOCKLEN_T: + * This symbol will defined if the C compiler supports socklen_t. + * Usually the <sys/socket.h> needs to be included. + */ +#$d_socklen_t HAS_SOCKLEN_T /**/ + /* HAS_SQRTL: * This symbol, if defined, indicates that the sqrtl routine is * available to do long double square roots. @@ -2359,6 +2365,12 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$i_syslog I_SYSLOG /**/ +/* I_SYSMODE: + * This symbol, if defined, indicates that <sys/mode.h> exists and + * should be included. + */ +#$i_sysmode I_SYSMODE /**/ + /* I_SYS_MOUNT: * This symbol, if defined, indicates that <sys/mount.h> exists and * should be included. @@ -2382,6 +2394,12 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$i_sysuio I_SYSUIO /**/ +/* I_SYSUTSNAME: + * This symbol, if defined, indicates that <sys/utsname.h> exists and + * should be included. + */ +#$i_sysutsname I_SYSUTSNAME /**/ + /* I_SYS_VFS: * This symbol, if defined, indicates that <sys/vfs.h> exists and * should be included. @@ -2980,17 +2998,5 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- #define PERL_XS_APIVERSION "$xs_apiversion" #define PERL_PM_APIVERSION "$pm_apiversion" -/* I_SYSMODE: - * This symbol, if defined, indicates that <sys/mode.h> exists and - * should be included. - */ -#$i_sysmode I_SYSMODE /**/ - -/* I_SYS_UTSNAME: - * This symbol, if defined, indicates that <sys/utsname.h> exists and - * should be included. - */ -#$i_sysutsname I_SYS_UTSNAME /**/ - #endif !GROK!THIS! |