xref: /netbsd-src/external/gpl2/xcvs/dist/m4/getaddrinfo.m4 (revision a7c918477dd5f12c1da816ba05caf44eab2d06d6)
1# getaddrinfo.m4 serial 3
2dnl Copyright (C) 2004 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7AC_DEFUN([gl_GETADDRINFO],
8[
9  AC_SEARCH_LIBS(getaddrinfo, nsl socket)
10  AC_REPLACE_FUNCS(getaddrinfo gai_strerror)
11  gl_PREREQ_GETADDRINFO
12])
13
14# Prerequisites of lib/getaddrinfo.h and lib/getaddrinfo.c.
15AC_DEFUN([gl_PREREQ_GETADDRINFO], [
16  AC_REQUIRE([gl_C_RESTRICT])
17  AC_REQUIRE([gl_SOCKET_FAMILIES])
18  AC_REQUIRE([AC_C_INLINE])
19])
20