# HG changeset patch # User Jim Meyering # Date 1128160556 0 # Node ID f1727ec07f78401ddadf3af7b138f37637e05dfa # Parent e4e3de21fe2455ce7e0cce5d02dc64cf53cb0899 (gl_GETADDRINFO): Look for getservbyname in these libraries [inet nsl socket xnet]. Nelson Beebe reported that with native cc on Solaris 7, getaddrinfo.c requires -lsocket. (gl_GETADDRINFO): Check for gethostbyname in the inet and nsl libraries. Required on Solaris 5.7. diff --git a/m4/getaddrinfo.m4 b/m4/getaddrinfo.m4 --- a/m4/getaddrinfo.m4 +++ b/m4/getaddrinfo.m4 @@ -1,4 +1,4 @@ -# getaddrinfo.m4 serial 4 +# getaddrinfo.m4 serial 6 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, @@ -6,8 +6,9 @@ AC_DEFUN([gl_GETADDRINFO], [ - AC_SEARCH_LIBS(getaddrinfo, nsl socket) + AC_SEARCH_LIBS(getaddrinfo, [nsl socket]) AC_SEARCH_LIBS(gethostbyname, [inet nsl]) + AC_SEARCH_LIBS(getservbyname, [inet nsl socket xnet]) AC_REPLACE_FUNCS(getaddrinfo gai_strerror) gl_PREREQ_GETADDRINFO ])