summaryrefslogtreecommitdiff
path: root/m4/inet_ntop.m4
Commit message (Collapse)AuthorAgeFilesLines
* Update Gnulib to v0.0-6827-g39c3009; use the `dirfd' module.Ludovic Courtès2012-01-161-1/+1
| | | | | | | * m4/gnulib-cache.m4: Use `dirfd'. * libguile/filesys.c: Include Gnulib's <dirent.h> directly. (dirfd): Remove. Suggested by Bruno Haible <bruno@clisp.org>.
* Update Gnulib to v0.0-6523-gb3609c1.Ludovic Courtès2011-10-221-25/+46
|
* gnulib updateAndy Wingo2011-06-161-10/+13
| | | | | | | | | Added pipe2 and open modules, to get O_CLOEXEC. * libguile/Makefile.am (guile_filter_doc_snarfage$(EXEEXT)): Add gnulib here, in the native build case, for rpl_fflush if needed. foo
* Update Gnulib; add new modules.Ludovic Courtès2011-02-141-3/+9
| | | | | | | | | | | This updates Gnulib to v0.0-4889-ge375fe3. * m4/gnulib-cache.m4: Add `accept', `bind', `close', `connect', `getpeername', `getsockname', `getsockopt', `listen', `malloc', `malloca', `recv', `recvfrom', `send', `sendto', `setsockopt', `shutdown', `socket', and `sockets', requested by Jan Nieuwenhuizen <janneke-list@xs4all.nl> for cross-MinGW32 builds. Add `trunc', requested by Mark H Weaver <mhw@netris.org>.
* Update Gnulib to v0.0-3955-g8ab5996.Ludovic Courtès2010-05-291-2/+2
|
* Use Gnulib's `getaddrinfo' module.Ludovic Courtès2010-02-141-1/+1
| | | | | | | * m4/gnulib-cache.m4: Add `getaddrinfo'. * libguile/Makefile.am (libguile_la_LDFLAGS): Add `$(GETADDRINFO_LIB) $(HOSTENT_LIB) $(SERVENT_LIB)'.
* Use Gnulib's `warning' module.Ludovic Courtès2009-11-171-8/+9
| | | | | | | | | | * m4/gnulib-cache.m4: Add `warnings'. * configure.ac: Use `gl_WARN_ADD' to check whether compiler flags are supported. * libguile/Makefile.am (libguile_la_LIBADD): Add $(LTLIBICONV). (libguile_la_LDFLAGS): Add $(INET_NTOP_LIB) $(INET_PTON_LIB).
* Use Gnulib's `inet_ntop' and `inet_pton' modules.Ludovic Courtès2009-11-161-0/+37
* m4/gnulib-cache.m4: Add `inet_ntop' and `inet_pton'. * configure.ac: Don't check for `inet_ntop' and `inet_pton'. * libguile/socket.c (scm_inet_pton, scm_inet_ntop): Compile regardless of `HAVE_INET_PTON' and `HAVE_INET_NTOP' respectively. * libguile/filesys.c: Use <stdlib.h> instead of <canonicalize.h>.