Mercurial > hg > octave-kai > gnulib-hg
annotate modules/getaddrinfo @ 17476:6057744acd2c default tip master
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Fri, 16 Aug 2013 06:32:22 -0700 |
parents | 2a2292579cf1 |
children |
rev | line source |
---|---|
5408 | 1 Description: |
6224
85d0a6143cc4
* modules/canon-host: Add canon-host.h. Depend on getaddrinfo. Make
Derek R. Price <derek@ximbiot.com>
parents:
5965
diff
changeset
|
2 getaddrinfo() function: Get address information. |
5408 | 3 |
4 Files: | |
5 lib/getaddrinfo.c | |
6 lib/gai_strerror.c | |
7 m4/getaddrinfo.m4 | |
8 | |
9 Depends-on: | |
14984
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
10 netdb |
6644
23fd14146a8a
* modules/getaddrinfo (Depends-on): Add sys_socket.
Simon Josefsson <simon@josefsson.org>
parents:
6278
diff
changeset
|
11 sys_socket |
14984
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
12 extensions |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
13 gettext-h [test $HAVE_GETADDRINFO = 0 || test $HAVE_DECL_GAI_STRERROR = 0 || test $REPLACE_GAI_STRERROR = 1] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
14 inet_ntop [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
15 snprintf [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
16 stdbool [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
17 strdup [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
18 servent [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
19 hostent [test $HAVE_GETADDRINFO = 0] |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
20 sockets [test $HAVE_GETADDRINFO = 0] |
5408 | 21 |
22 configure.ac: | |
23 gl_GETADDRINFO | |
14984
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
24 if test $HAVE_GETADDRINFO = 0; then |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
25 AC_LIBOBJ([getaddrinfo]) |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
26 fi |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
27 if test $HAVE_DECL_GAI_STRERROR = 0 || test $REPLACE_GAI_STRERROR = 1; then |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
28 AC_LIBOBJ([gai_strerror]) |
2a2292579cf1
getaddrinfo: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
13731
diff
changeset
|
29 fi |
10680
5721d1f9e1ef
Move getaddrinfo.h declarations to netdb.h.
Simon Josefsson <simon@josefsson.org>
parents:
10451
diff
changeset
|
30 gl_NETDB_MODULE_INDICATOR([getaddrinfo]) |
5408 | 31 |
32 Makefile.am: | |
33 | |
34 Include: | |
10680
5721d1f9e1ef
Move getaddrinfo.h declarations to netdb.h.
Simon Josefsson <simon@josefsson.org>
parents:
10451
diff
changeset
|
35 <netdb.h> |
5408 | 36 |
10963
46c9755d1dd9
Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
Bruno Haible <bruno@clisp.org>
parents:
10820
diff
changeset
|
37 Link: |
12248
1bc8eb7d006a
getaddrinfo: Simplify Link: directive.
Simon Josefsson <simon@josefsson.org>
parents:
12243
diff
changeset
|
38 $(GETADDRINFO_LIB) |
10963
46c9755d1dd9
Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
Bruno Haible <bruno@clisp.org>
parents:
10820
diff
changeset
|
39 |
5509
5fd1d2c43cd0
modules/getaddrinfo (License): Add LGPL, reported by Yoann
Simon Josefsson <simon@josefsson.org>
parents:
5408
diff
changeset
|
40 License: |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
7666
diff
changeset
|
41 LGPLv2+ |
5509
5fd1d2c43cd0
modules/getaddrinfo (License): Add LGPL, reported by Yoann
Simon Josefsson <simon@josefsson.org>
parents:
5408
diff
changeset
|
42 |
5408 | 43 Maintainer: |
44 Simon Josefsson |