diff options
author | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-30 10:57:40 +0000 |
---|---|---|
committer | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-30 10:57:40 +0000 |
commit | 1a129bb664e12fad54b80e865e14bb0107987d7a (patch) | |
tree | 92e93c639da8583ea3029c8fdf6aba77c5cf074e /build | |
parent | c60218ebc2994b48b18647a4f1e294c6d672a9e7 (diff) | |
download | libapr-1a129bb664e12fad54b80e865e14bb0107987d7a.tar.gz |
don't require that the DNS can map 127.0.0.1 when checking
for the presence/usability of getnameinfo()
PR: 7642
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/apr_network.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/apr_network.m4 b/build/apr_network.m4 index 1f282e563..406c15b63 100644 --- a/build/apr_network.m4 +++ b/build/apr_network.m4 @@ -93,7 +93,7 @@ void main(void) { error = getnameinfo((const struct sockaddr *)&sa, sizeof(sa), hbuf, 256, NULL, 0, - NI_NAMEREQD); + NI_NUMERICHOST); if (error) { exit(1); } else { |