?RCS: $Id: d_sockaddr_in_sin_len.U 57 2010-12-11 23:44:52Z rmanfredi $ ?RCS: ?RCS: Copyright (c) 2011, Raphael Manfredi ?RCS: ?RCS: You may redistribute only under the terms of the Artistic License, ?RCS: as specified in the README file that comes with the distribution. ?RCS: You may reuse parts of this distribution only within the terms of ?RCS: that same Artistic License; a copy of which may be found at the root ?RCS: of the source tree for dist 4.0. ?RCS: ?MAKE:d_sockaddr_un: Trylink cat i_arpainet i_syssock i_winsock2 i_niin i_sysun ?MAKE: -pick add $@ %< ?S:d_sockaddr_un: ?S: This variable conditionally defines the HAS_SOCKADDR_UN symbol, ?S: indicates to the C program that struct sockaddr_un is available to ?S: create file sockets. ?S:. ?C:HAS_SOCKADDR_UN: ?C: This symbol is defined if struct sockaddr_un exists, allowing the ?C: creation of file sockets. ?C:. ?H:#$d_sockaddr_un HAS_SOCKADDR_UN ?H:. ?LINT: set d_sockaddr_un : does struct sockaddr_un exists? $cat >try.c < #ifdef I_SYS_SOCKET #include #endif #ifdef I_SYS_UN #include #endif #ifdef I_NETINET_IN #include #endif #ifdef I_ARPA_INET #include #endif #ifdef I_WINSOCK2 #include #endif #if !defined(AF_LOCAL) && defined(AF_UNIX) #define AF_LOCAL AF_UNIX #endif int main(void) { static struct sockaddr_un addr; addr.sun_family = AF_LOCAL; return 0; } EOC cyn="whether 'struct sockaddr_un' is available" set d_sockaddr_un eval $trylink