summaryrefslogtreecommitdiff
path: root/m4/getaddrinfo.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-09-24 10:44:30 +0000
committerJim Meyering <jim@meyering.net>2005-09-24 10:44:30 +0000
commit7a2163735e70b764127931067f31bd456a2709fc (patch)
tree1f8f51350c2fef53c74c37140308af218d2a27e2 /m4/getaddrinfo.m4
parentb1ae384b233cf42586906a02ddf9f81c26f2efd7 (diff)
downloadcoreutils-7a2163735e70b764127931067f31bd456a2709fc.tar.xz
(gl_GETADDRINFO): Check for gethostbyname
in the inet and nsl libraries. Required on Solaris 5.7.
Diffstat (limited to 'm4/getaddrinfo.m4')
-rw-r--r--m4/getaddrinfo.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/getaddrinfo.m4 b/m4/getaddrinfo.m4
index ae200f9a0..e03504fa2 100644
--- a/m4/getaddrinfo.m4
+++ b/m4/getaddrinfo.m4
@@ -1,4 +1,4 @@
-# getaddrinfo.m4 serial 4
+# getaddrinfo.m4 serial 5
dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -7,6 +7,7 @@ dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_GETADDRINFO],
[
AC_SEARCH_LIBS(getaddrinfo, nsl socket)
+ AC_SEARCH_LIBS(gethostbyname, [inet nsl])
AC_REPLACE_FUNCS(getaddrinfo gai_strerror)
gl_PREREQ_GETADDRINFO
])