Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/inet_pton @ 14675:d214c42cc3fe
exit: drop remaining clients
Anyone using EXIT_FAILURE needs to depend on stdlib, now that
the exit module is gone.
* modules/argmatch (Depends-on): Replace exit with stdlib.
* modules/copy-file (Depends-on): Likewise.
* modules/execute (Depends-on): Likewise.
* modules/exitfail (Depends-on): Likewise.
* modules/obstack (Depends-on): Likewise.
* modules/pagealign_alloc (Depends-on): Likewise.
* modules/pipe-filter-gi (Depends-on): Likewise.
* modules/pipe-filter-ii (Depends-on): Likewise.
* modules/savewd (Depends-on): Likewise.
* modules/spawn-pipe (Depends-on): Likewise.
* modules/wait-process (Depends-on): Likewise.
* modules/xsetenv (Depends-on): Likewise.
* modules/chdir-long (Depends-on): Add stdlib, for EXIT_FAILURE.
* modules/git-merge-changelog (Depends-on): Likewise.
* modules/long-options (Depends-on): Likewise.
* modules/pt_chown (Depends-on): Likewise.
* modules/sysexits (Depends-on): Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Mon, 02 May 2011 11:59:00 -0600 |
parents | ff4cf3c8b89b |
children | efab6978105e |
rev | line source |
---|---|
6849 | 1 Description: |
2 Convert internet address from presentation to internal, binary, format. | |
3 | |
4 Files: | |
5 lib/inet_pton.c | |
6 m4/inet_pton.m4 | |
7 | |
8 Depends-on: | |
10309
5585c3effb24
inet_pton.c: use locale-independent tolower
Jim Meyering <meyering@redhat.com>
parents:
10307
diff
changeset
|
9 c-ctype |
6849 | 10 sys_socket |
7062
532bc2e00710
Use arpa_inet in inet_?to?.
Simon Josefsson <simon@josefsson.org>
parents:
6929
diff
changeset
|
11 arpa_inet |
11941 | 12 errno |
7064
9f7f0714a40a
Use netinet_in module.
Simon Josefsson <simon@josefsson.org>
parents:
7062
diff
changeset
|
13 netinet_in |
10018
8406478f0d13
Ensure the system declares inet_ntop, inet_pton when possible.
Bruno Haible <bruno@clisp.org>
parents:
9993
diff
changeset
|
14 extensions |
6849 | 15 |
16 configure.ac: | |
13061 | 17 gl_FUNC_INET_PTON |
9964
d0caaa0ca4a6
Add inet_ntop and inet_pton declarations to arpa/inet.h, for MinGW.
Simon Josefsson <simon@josefsson.org>
parents:
7497
diff
changeset
|
18 gl_ARPA_INET_MODULE_INDICATOR([inet_pton]) |
6849 | 19 |
20 Makefile.am: | |
21 | |
22 License: | |
10307
38eff58347bb
* modules/inet_pton (License): Relicense under LGPLv2+.
Jim Meyering <meyering@redhat.com>
parents:
10018
diff
changeset
|
23 LGPLv2+ |
6849 | 24 |
25 Include: | |
12008
18ea6ab4e81d
maint: make Include sections of modules consistent
Eric Blake <ebb9@byu.net>
parents:
11941
diff
changeset
|
26 <arpa/inet.h> |
6849 | 27 |
12226
c878d857a1d2
Fix link error on Solaris 8.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
28 Link: |
c878d857a1d2
Fix link error on Solaris 8.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
29 $(INET_PTON_LIB) |
c878d857a1d2
Fix link error on Solaris 8.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
30 |
6849 | 31 Maintainer: |
32 Simon Josefsson, glibc |