netdb_h.m4 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # netdb_h.m4 serial 5
  2. dnl Copyright (C) 2008 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. AC_COMPILE_IFELSE(
  12. [AC_LANG_PROGRAM([[
  13. #include <netdb.h>
  14. struct addrinfo a;
  15. int b = EAI_OVERFLOW;
  16. int c = AI_NUMERICSERV;
  17. ]])],
  18. [NETDB_H=''], [NETDB_H='netdb.h'])
  19. HAVE_NETDB_H=1
  20. else
  21. NETDB_H='netdb.h'
  22. HAVE_NETDB_H=0
  23. fi
  24. AC_SUBST([HAVE_NETDB_H])
  25. AC_SUBST([NETDB_H])
  26. ])
  27. AC_DEFUN([gl_NETDB_MODULE_INDICATOR],
  28. [
  29. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  30. AC_REQUIRE([gl_NETDB_H_DEFAULTS])
  31. GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1
  32. ])
  33. AC_DEFUN([gl_NETDB_H_DEFAULTS],
  34. [
  35. GNULIB_GETADDRINFO=0; AC_SUBST([GNULIB_GETADDRINFO])
  36. dnl Assume proper GNU behavior unless another module says otherwise.
  37. HAVE_STRUCT_ADDRINFO=1; AC_SUBST([HAVE_STRUCT_ADDRINFO])
  38. HAVE_DECL_FREEADDRINFO=1; AC_SUBST([HAVE_DECL_FREEADDRINFO])
  39. HAVE_DECL_GAI_STRERROR=1; AC_SUBST([HAVE_DECL_GAI_STRERROR])
  40. HAVE_DECL_GETADDRINFO=1; AC_SUBST([HAVE_DECL_GETADDRINFO])
  41. HAVE_DECL_GETNAMEINFO=1; AC_SUBST([HAVE_DECL_GETNAMEINFO])
  42. ])