1Description: 2Convert internet address from presentation to internal, binary, format. 3 4Files: 5lib/inet_pton.c 6m4/inet_pton.m4 7 8Depends-on: 9arpa_inet 10extensions 11c-ctype [test $HAVE_INET_PTON = 0 || test $REPLACE_INET_NTOP = 1] 12sys_socket [test $HAVE_INET_PTON = 0 || test $REPLACE_INET_NTOP = 1] 13errno [test $HAVE_INET_PTON = 0 || test $REPLACE_INET_NTOP = 1] 14netinet_in [test $HAVE_INET_PTON = 0 || test $REPLACE_INET_NTOP = 1] 15 16configure.ac: 17gl_FUNC_INET_PTON 18if test $HAVE_INET_PTON = 0 || test $REPLACE_INET_NTOP = 1; then 19 AC_LIBOBJ([inet_pton]) 20 gl_PREREQ_INET_PTON 21fi 22gl_ARPA_INET_MODULE_INDICATOR([inet_pton]) 23 24Makefile.am: 25 26License: 27LGPLv2+ 28 29Include: 30<arpa/inet.h> 31 32Link: 33$(INET_PTON_LIB) 34 35Maintainer: 36Simon Josefsson, glibc 37