netdb_h.m4 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # netdb_h.m4 serial 12
  2. dnl Copyright (C) 2008-2021 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_HEADER_NETDB],
  7. [
  8. AC_REQUIRE([gl_NETDB_H_DEFAULTS])
  9. gl_CHECK_NEXT_HEADERS([netdb.h])
  10. if test $ac_cv_header_netdb_h = yes; then
  11. HAVE_NETDB_H=1
  12. else
  13. HAVE_NETDB_H=0
  14. fi
  15. AC_SUBST([HAVE_NETDB_H])
  16. dnl Check for declarations of anything we want to poison if the
  17. dnl corresponding gnulib module is not in use.
  18. gl_WARN_ON_USE_PREPARE([[#include <netdb.h>]],
  19. [getaddrinfo freeaddrinfo gai_strerror getnameinfo])
  20. ])
  21. AC_DEFUN([gl_NETDB_MODULE_INDICATOR],
  22. [
  23. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  24. AC_REQUIRE([gl_NETDB_H_DEFAULTS])
  25. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  26. dnl Define it also as a C macro, for the benefit of the unit tests.
  27. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  28. ])
  29. AC_DEFUN([gl_NETDB_H_DEFAULTS],
  30. [
  31. GNULIB_GETADDRINFO=0; AC_SUBST([GNULIB_GETADDRINFO])
  32. dnl Assume proper GNU behavior unless another module says otherwise.
  33. HAVE_STRUCT_ADDRINFO=1; AC_SUBST([HAVE_STRUCT_ADDRINFO])
  34. HAVE_DECL_FREEADDRINFO=1; AC_SUBST([HAVE_DECL_FREEADDRINFO])
  35. HAVE_DECL_GAI_STRERROR=1; AC_SUBST([HAVE_DECL_GAI_STRERROR])
  36. HAVE_DECL_GETADDRINFO=1; AC_SUBST([HAVE_DECL_GETADDRINFO])
  37. HAVE_DECL_GETNAMEINFO=1; AC_SUBST([HAVE_DECL_GETNAMEINFO])
  38. REPLACE_GAI_STRERROR=0; AC_SUBST([REPLACE_GAI_STRERROR])
  39. REPLACE_GETADDRINFO=0; AC_SUBST([REPLACE_GETADDRINFO])
  40. ])