mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-09-11 11:50:52 +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.
41 lines
835 B
Plaintext
41 lines
835 B
Plaintext
Description:
|
|
Convert internet address from internal to printable, presentable format.
|
|
|
|
Files:
|
|
lib/inet_ntop.c
|
|
m4/inet_ntop.m4
|
|
m4/sys_socket_h.m4
|
|
|
|
Depends-on:
|
|
arpa_inet-h
|
|
extensions
|
|
sys_socket-h [test $HAVE_INET_NTOP = 0 || test $REPLACE_INET_NTOP = 1]
|
|
errno-h [test $HAVE_INET_NTOP = 0 || test $REPLACE_INET_NTOP = 1]
|
|
netinet_in-h [test $HAVE_INET_NTOP = 0 || test $REPLACE_INET_NTOP = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_INET_NTOP
|
|
gl_CONDITIONAL([GL_COND_OBJ_INET_NTOP],
|
|
[test $HAVE_INET_NTOP = 0 || test $REPLACE_INET_NTOP = 1])
|
|
AM_COND_IF([GL_COND_OBJ_INET_NTOP], [
|
|
gl_PREREQ_INET_NTOP
|
|
])
|
|
gl_ARPA_INET_MODULE_INDICATOR([inet_ntop])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_INET_NTOP
|
|
lib_SOURCES += inet_ntop.c
|
|
endif
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Include:
|
|
<arpa/inet.h>
|
|
|
|
Link:
|
|
$(INET_NTOP_LIB)
|
|
|
|
Maintainer:
|
|
Yoann Vandoorselaere, glibc
|