mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-18 23:42:00 +03:00
39 lines
869 B
Plaintext
39 lines
869 B
Plaintext
Description:
|
|
socket() function: create a socket.
|
|
|
|
Files:
|
|
lib/socket.c
|
|
lib/w32sock.h
|
|
|
|
Depends-on:
|
|
sys_socket
|
|
errno
|
|
sockets
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([gl_HEADER_SYS_SOCKET])
|
|
if test "$ac_cv_header_winsock2_h" = yes; then
|
|
AC_LIBOBJ([socket])
|
|
fi
|
|
# When this module is used, sockets may actually occur as file descriptors,
|
|
# hence it is worth warning if the modules 'close' and 'ioctl' are not used.
|
|
m4_ifdef([gl_UNISTD_H_DEFAULTS], [AC_REQUIRE([gl_UNISTD_H_DEFAULTS])])
|
|
m4_ifdef([gl_SYS_IOCTL_H_DEFAULTS], [AC_REQUIRE([gl_SYS_IOCTL_H_DEFAULTS])])
|
|
AC_REQUIRE([gl_PREREQ_SYS_H_WINSOCK2])
|
|
if test "$ac_cv_header_winsock2_h" = yes; then
|
|
UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=1
|
|
SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=1
|
|
fi
|
|
gl_SYS_SOCKET_MODULE_INDICATOR([socket])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<sys/socket.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Paolo Bonzini, Simon Josefsson
|