diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2009-03-25 17:43:22 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2009-03-25 17:43:22 +0100 |
commit | 5086dff9f4ed3d0ef53205b4d62cc5efb86d094b (patch) | |
tree | bfc9c4719e3646bef17f515a923955e701b1baf7 /Porting/Glossary | |
parent | 281206e6bbfa329c418bc0458355571f5e8f72ba (diff) | |
download | perl-5086dff9f4ed3d0ef53205b4d62cc5efb86d094b.tar.gz |
Detection of IPv6 clueful functions by Configure (part 1)
Other OS parts will follow
From: Steve Peters <steve@fisharerojo.org>
Date: Wed, 25 Mar 2009 10:54:51 -0500
Message-ID: <fd7a59d30903250854q53311f48o6744df7cbfa1d03d@mail.gmail.com>
Diffstat (limited to 'Porting/Glossary')
-rw-r--r-- | Porting/Glossary | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 53a44c41c9..5e1c51adcf 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -899,6 +899,11 @@ d_gdbmndbm_h_uses_prototypes (i_ndbm.U): undefined. Consult the different d_*ndbm_h_uses_prototypes variables to get the same information for alternative ndbm.h include files. +d_getaddrinfo (d_getaddrinfo.U): + This variable conditionally defines the HAS_GETADDRINFO symbol, + which indicates to the C program that the getaddrinfo() function + is available. + d_getcwd (d_getcwd.U): This variable conditionally defines the HAS_GETCWD symbol, which indicates to the C program that the getcwd() routine is available @@ -1001,6 +1006,11 @@ d_getmntent (d_getmntent.U): indicates to the C program that the getmntent() routine is available to iterate through mounted files to get their mount info. +d_getnameinfo (d_getnameinfo.U): + This variable conditionally defines the HAS_GETNAMEINFO symbol, + which indicates to the C program that the getnameinfo() function + is available. + d_getnbyaddr (d_getnbyad.U): This variable conditionally defines the HAS_GETNETBYADDR symbol, which indicates to the C program that the getnetbyaddr() routine is available @@ -1218,6 +1228,16 @@ d_inetaton (d_inetaton.U): indicates to the C program that the inet_aton() function is available to parse IP address "dotted-quad" strings. +d_inetntop (d_inetntop.U): + This variable conditionally defines the HAS_INETNTOP symbol, + which indicates to the C program that the inet_ntop() function + is available. + +d_inetpton (d_inetpton.U): + This variable conditionally defines the HAS_INETPTON symbol, + which indicates to the C program that the inet_pton() function + is available. + d_int64_t (d_int64_t.U): This symbol will be defined if the C compiler supports int64_t. |