2023-10-18 07:29:37 +00:00
|
|
|
# getaddrinfo.m4 serial 34
|
|
|
|
dnl Copyright (C) 2004-2023 Free Software Foundation, Inc.
|
2013-11-26 22:53:44 +00:00
|
|
|
dnl This file is free software; the Free Software Foundation
|
|
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
AC_DEFUN([gl_GETADDRINFO],
|
|
|
|
[
|
2023-10-18 07:29:37 +00:00
|
|
|
AC_REQUIRE([gl_SYS_SOCKET_H])dnl for HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H
|
|
|
|
AC_REQUIRE([gl_NETDB_H])dnl for HAVE_NETDB_H
|
2013-11-26 22:56:50 +00:00
|
|
|
GETADDRINFO_LIB=
|
|
|
|
gai_saved_LIBS="$LIBS"
|
2013-11-26 22:53:44 +00:00
|
|
|
|
2013-11-26 22:56:50 +00:00
|
|
|
dnl Where is getaddrinfo()?
|
|
|
|
dnl - On Solaris, it is in libsocket.
|
|
|
|
dnl - On Haiku, it is in libnetwork.
|
|
|
|
dnl - On BeOS, it is in libnet.
|
|
|
|
dnl - On native Windows, it is in ws2_32.dll.
|
|
|
|
dnl - Otherwise it is in libc.
|
|
|
|
AC_SEARCH_LIBS([getaddrinfo], [socket network net],
|
|
|
|
[if test "$ac_cv_search_getaddrinfo" != "none required"; then
|
|
|
|
GETADDRINFO_LIB="$ac_cv_search_getaddrinfo"
|
|
|
|
fi])
|
|
|
|
LIBS="$gai_saved_LIBS $GETADDRINFO_LIB"
|
2013-11-26 22:55:28 +00:00
|
|
|
|
2013-11-26 22:59:47 +00:00
|
|
|
HAVE_GETADDRINFO=1
|
2013-11-26 22:55:28 +00:00
|
|
|
AC_CACHE_CHECK([for getaddrinfo], [gl_cv_func_getaddrinfo], [
|
2013-11-26 22:57:29 +00:00
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
2013-11-26 22:55:28 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
2013-11-26 22:57:29 +00:00
|
|
|
]], [[getaddrinfo("", "", NULL, NULL);]])],
|
2013-11-26 22:55:28 +00:00
|
|
|
[gl_cv_func_getaddrinfo=yes],
|
|
|
|
[gl_cv_func_getaddrinfo=no])])
|
|
|
|
if test $gl_cv_func_getaddrinfo = no; then
|
2013-11-26 22:56:50 +00:00
|
|
|
AC_CACHE_CHECK([for getaddrinfo in ws2tcpip.h and -lws2_32],
|
2013-11-26 22:57:29 +00:00
|
|
|
gl_cv_w32_getaddrinfo, [
|
2013-11-26 22:53:44 +00:00
|
|
|
gl_cv_w32_getaddrinfo=no
|
|
|
|
am_save_LIBS="$LIBS"
|
|
|
|
LIBS="$LIBS -lws2_32"
|
2013-11-26 22:57:29 +00:00
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
2013-11-26 22:53:44 +00:00
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
2013-11-26 22:55:28 +00:00
|
|
|
#include <stddef.h>
|
2013-11-26 22:57:29 +00:00
|
|
|
]], [[getaddrinfo(NULL, NULL, NULL, NULL);]])], [gl_cv_w32_getaddrinfo=yes])
|
2013-11-26 22:56:50 +00:00
|
|
|
LIBS="$am_save_LIBS"
|
|
|
|
])
|
2013-11-26 22:53:44 +00:00
|
|
|
if test "$gl_cv_w32_getaddrinfo" = "yes"; then
|
2013-11-26 22:56:50 +00:00
|
|
|
GETADDRINFO_LIB="-lws2_32"
|
|
|
|
LIBS="$gai_saved_LIBS $GETADDRINFO_LIB"
|
2023-10-18 07:29:37 +00:00
|
|
|
dnl Check for correct signature, in particular for a cdecl-compatible
|
|
|
|
dnl calling convention.
|
|
|
|
AC_CACHE_CHECK([for getaddrinfo with POSIX signature],
|
|
|
|
[gl_cv_func_getaddrinfo_posix_signature],
|
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
extern
|
|
|
|
#ifdef __cplusplus
|
|
|
|
"C"
|
|
|
|
#endif
|
|
|
|
int getaddrinfo (const char *, const char *, const struct addrinfo *, struct addrinfo **);
|
|
|
|
]])],
|
|
|
|
[gl_cv_func_getaddrinfo_posix_signature=yes],
|
|
|
|
[gl_cv_func_getaddrinfo_posix_signature=no])
|
|
|
|
])
|
|
|
|
if test $gl_cv_func_getaddrinfo_posix_signature = no; then
|
|
|
|
REPLACE_GETADDRINFO=1
|
|
|
|
fi
|
2013-11-26 22:53:44 +00:00
|
|
|
else
|
2013-11-26 22:59:47 +00:00
|
|
|
HAVE_GETADDRINFO=0
|
2013-11-26 22:53:44 +00:00
|
|
|
fi
|
2013-11-26 22:55:28 +00:00
|
|
|
fi
|
2023-10-18 07:29:37 +00:00
|
|
|
AC_DEFINE_UNQUOTED([HAVE_GETADDRINFO], [$HAVE_GETADDRINFO],
|
|
|
|
[Define to 1 if getaddrinfo exists, or to 0 otherwise.])
|
2013-11-26 22:55:28 +00:00
|
|
|
|
|
|
|
# We can't use AC_REPLACE_FUNCS here because gai_strerror may be an
|
|
|
|
# inline function declared in ws2tcpip.h, so we need to get that
|
|
|
|
# header included somehow.
|
2013-11-26 22:59:47 +00:00
|
|
|
AC_CHECK_DECLS([gai_strerror], [], [], [[
|
2013-11-26 22:55:28 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
2013-11-26 22:59:47 +00:00
|
|
|
]])
|
|
|
|
if test $ac_cv_have_decl_gai_strerror = yes; then
|
|
|
|
AC_CHECK_DECLS([gai_strerrorA], [], [], [[
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
]])
|
|
|
|
dnl check for correct signature
|
|
|
|
AC_CACHE_CHECK([for gai_strerror with POSIX signature],
|
|
|
|
[gl_cv_func_gai_strerror_posix_signature], [
|
|
|
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
extern
|
|
|
|
#ifdef __cplusplus
|
|
|
|
"C"
|
|
|
|
#endif
|
|
|
|
const char *gai_strerror(int);]])],
|
|
|
|
[gl_cv_func_gai_strerror_posix_signature=yes],
|
|
|
|
[gl_cv_func_gai_strerror_posix_signature=no])])
|
|
|
|
if test $gl_cv_func_gai_strerror_posix_signature = no; then
|
|
|
|
REPLACE_GAI_STRERROR=1
|
|
|
|
fi
|
2013-11-26 22:55:28 +00:00
|
|
|
fi
|
2013-11-26 22:53:44 +00:00
|
|
|
|
2013-11-26 22:56:50 +00:00
|
|
|
LIBS="$gai_saved_LIBS"
|
|
|
|
|
2013-11-26 22:53:44 +00:00
|
|
|
gl_PREREQ_GETADDRINFO
|
2013-11-26 22:56:50 +00:00
|
|
|
|
|
|
|
AC_SUBST([GETADDRINFO_LIB])
|
2013-11-26 22:53:44 +00:00
|
|
|
])
|
|
|
|
|
2013-11-26 22:56:50 +00:00
|
|
|
# Prerequisites of lib/netdb.in.h and lib/getaddrinfo.c.
|
2013-11-26 22:53:44 +00:00
|
|
|
AC_DEFUN([gl_PREREQ_GETADDRINFO], [
|
2013-11-26 22:56:50 +00:00
|
|
|
AC_REQUIRE([gl_NETDB_H_DEFAULTS])
|
2023-10-18 07:29:37 +00:00
|
|
|
AC_REQUIRE([gl_SYS_SOCKET_H])dnl for HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H
|
2013-11-26 22:56:50 +00:00
|
|
|
AC_REQUIRE([gl_HOSTENT]) dnl for HOSTENT_LIB
|
|
|
|
AC_REQUIRE([gl_SERVENT]) dnl for SERVENT_LIB
|
2013-11-26 22:57:29 +00:00
|
|
|
AC_REQUIRE([gl_FUNC_INET_NTOP]) dnl for INET_NTOP_LIB
|
2013-11-26 22:53:44 +00:00
|
|
|
AC_REQUIRE([AC_C_RESTRICT])
|
|
|
|
AC_REQUIRE([gl_SOCKET_FAMILIES])
|
2023-10-18 07:29:37 +00:00
|
|
|
AC_REQUIRE([gl_SYS_SOCKET_H])
|
2013-11-26 22:55:28 +00:00
|
|
|
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
|
2013-11-26 22:56:50 +00:00
|
|
|
|
|
|
|
dnl Including sys/socket.h is wrong for Windows, but Windows does not
|
|
|
|
dnl have sa_len so the result is correct anyway.
|
2013-11-26 22:59:47 +00:00
|
|
|
AC_CHECK_MEMBERS([struct sockaddr.sa_len], , , [
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
])
|
2013-11-26 22:56:50 +00:00
|
|
|
|
|
|
|
AC_CHECK_HEADERS_ONCE([netinet/in.h])
|
|
|
|
|
2013-11-26 22:59:47 +00:00
|
|
|
AC_CHECK_DECLS([getaddrinfo, freeaddrinfo, getnameinfo],,,[[
|
2013-11-26 22:53:44 +00:00
|
|
|
/* sys/types.h is not needed according to POSIX, but the
|
|
|
|
sys/socket.h in i386-unknown-freebsd4.10 and
|
|
|
|
powerpc-apple-darwin5.5 required it. */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
2013-11-26 22:59:47 +00:00
|
|
|
]])
|
2013-11-26 22:56:50 +00:00
|
|
|
if test $ac_cv_have_decl_getaddrinfo = no; then
|
|
|
|
HAVE_DECL_GETADDRINFO=0
|
|
|
|
fi
|
|
|
|
if test $ac_cv_have_decl_freeaddrinfo = no; then
|
|
|
|
HAVE_DECL_FREEADDRINFO=0
|
|
|
|
fi
|
|
|
|
if test $ac_cv_have_decl_gai_strerror = no; then
|
|
|
|
HAVE_DECL_GAI_STRERROR=0
|
|
|
|
fi
|
|
|
|
if test $ac_cv_have_decl_getnameinfo = no; then
|
|
|
|
HAVE_DECL_GETNAMEINFO=0
|
|
|
|
fi
|
|
|
|
|
2013-11-26 22:53:44 +00:00
|
|
|
AC_CHECK_TYPES([struct addrinfo],,,[
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_WS2TCPIP_H
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
])
|
2013-11-26 22:56:50 +00:00
|
|
|
if test $ac_cv_type_struct_addrinfo = no; then
|
|
|
|
HAVE_STRUCT_ADDRINFO=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl Append $HOSTENT_LIB to GETADDRINFO_LIB, avoiding gratuitous duplicates.
|
|
|
|
case " $GETADDRINFO_LIB " in
|
|
|
|
*" $HOSTENT_LIB "*) ;;
|
|
|
|
*) GETADDRINFO_LIB="$GETADDRINFO_LIB $HOSTENT_LIB" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
dnl Append $SERVENT_LIB to GETADDRINFO_LIB, avoiding gratuitous duplicates.
|
|
|
|
case " $GETADDRINFO_LIB " in
|
|
|
|
*" $SERVENT_LIB "*) ;;
|
|
|
|
*) GETADDRINFO_LIB="$GETADDRINFO_LIB $SERVENT_LIB" ;;
|
|
|
|
esac
|
2013-11-26 22:57:29 +00:00
|
|
|
|
|
|
|
dnl Append $INET_NTOP_LIB to GETADDRINFO_LIB, avoiding gratuitous duplicates.
|
|
|
|
case " $GETADDRINFO_LIB " in
|
|
|
|
*" $INET_NTOP_LIB "*) ;;
|
|
|
|
*) GETADDRINFO_LIB="$GETADDRINFO_LIB $INET_NTOP_LIB" ;;
|
|
|
|
esac
|
2013-11-26 22:53:44 +00:00
|
|
|
])
|