mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
* modules/sys_socket-h: Renamed from modules/sys_socket. * modules/sys_socket-h-tests: Renamed from modules/sys_socket-tests. * modules/sys_socket-h-c++-tests: Renamed from modules/sys_socket-c++-tests. * tests/test-sys_socket-h.c: Renamed from tests/test-sys_socket.c. * tests/test-sys_socket-h-c++.cc: Renamed from tests/test-sys_socket-c++.cc. * doc/posix-headers/sys_socket.texi: Update. * modules/* (Depends-on): Update. * modules/sys_socket: New file.
36 lines
600 B
Plaintext
36 lines
600 B
Plaintext
Description:
|
|
bind() function: bind a server socket to a port.
|
|
|
|
Files:
|
|
lib/bind.c
|
|
lib/w32sock.h
|
|
|
|
Depends-on:
|
|
sys_socket-h
|
|
socketlib
|
|
errno-h [test "$ac_cv_header_winsock2_h" = yes]
|
|
msvc-nothrow [test "$ac_cv_header_winsock2_h" = yes]
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([gl_SYS_SOCKET_H])
|
|
gl_CONDITIONAL([GL_COND_OBJ_BIND], [test "$ac_cv_header_winsock2_h" = yes])
|
|
gl_SYS_SOCKET_MODULE_INDICATOR([bind])
|
|
gl_MODULE_INDICATOR([bind])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_BIND
|
|
lib_SOURCES += bind.c
|
|
endif
|
|
|
|
Include:
|
|
<sys/socket.h>
|
|
|
|
Link:
|
|
$(LIBSOCKET)
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Paolo Bonzini, Simon Josefsson
|