diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-27 05:29:07 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-27 05:29:07 +0000 |
commit | 49a78c826894475f45e57b053fd96ea7cb04dc4d (patch) | |
tree | f6a389e13f509d159e87801df5dec5701beed483 /config_h.SH | |
parent | 34d3ce40eab82fa6d52f54ff00b07b8cce11a920 (diff) | |
download | perl-49a78c826894475f45e57b053fd96ea7cb04dc4d.tar.gz |
Add sockatmark() probing.
p4raw-id: //depot/perl@9371
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config_h.SH b/config_h.SH index 8a71dfec01..eb95593341 100644 --- a/config_h.SH +++ b/config_h.SH @@ -835,7 +835,12 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un * This symbol, if defined, indicates that <sys/ioctl.h> exists and should * be included. Otherwise, include <sgtty.h> or <termio.h>. */ +/* I_SYS_SOCKIO: + * This symbol, if defined, indicates the <sys/sockio.h> should be included + * to get socket ioctl options, like SIOCATMARK. + */ #$i_sysioctl I_SYS_IOCTL /**/ +#$i_syssockio I_SYS_SOCKIO /**/ /* I_SYS_NDIR: * This symbol, if defined, indicates to the C program that it should @@ -3274,5 +3279,11 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_sigprocmask HAS_SIGPROCMASK /**/ +/* HAS_SOCKATMARK: + * This symbol, if defined, indicates that the sockatmark routine is + * available to test whether a socket is at the out-of-band mark. + */ +#$d_sockatmark HAS_SOCKATMARK /**/ + #endif !GROK!THIS! |