np_curl.m4 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. dnl These are for the libs and macros from curl
  2. dnl Currently utilising v7.12.3
  3. dnl We use jm_ for non Autoconf macros.
  4. dnl m4_pattern_forbid([^np_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
  5. dnl m4_pattern_forbid([^jm_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
  6. dnl m4_pattern_forbid([^gl_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
  7. dnl These are all m4 things that need to be called
  8. dnl Usually in coreutils' prereq.m4, but this is a subset that we need
  9. AC_DEFUN([np_CURL],
  10. [
  11. AC_REQUIRE([TYPE_SOCKLEN_T])
  12. ])
  13. dnl Check for socklen_t: historically on BSD it is an int, and in
  14. dnl POSIX 1g it is a type of its own, but some platforms use different
  15. dnl types for the argument to getsockopt, getpeername, etc. So we
  16. dnl have to test to find something that will work.
  17. AC_DEFUN([TYPE_SOCKLEN_T],
  18. [
  19. AC_CHECK_TYPE([socklen_t], ,[
  20. AC_MSG_CHECKING([for socklen_t equivalent])
  21. AC_CACHE_VAL([curl_cv_socklen_t_equiv],
  22. [
  23. # Systems have either "struct sockaddr *" or
  24. # "void *" as the second argument to getpeername
  25. curl_cv_socklen_t_equiv=
  26. for arg2 in "struct sockaddr" void; do
  27. for t in int size_t unsigned long "unsigned long"; do
  28. AC_TRY_COMPILE([
  29. #ifdef HAVE_SYS_TYPES_H
  30. #include <sys/types.h>
  31. #endif
  32. #ifdef HAVE_SYS_SOCKET_H
  33. #include <sys/socket.h>
  34. #endif
  35. int getpeername (int, $arg2 *, $t *);
  36. ],[
  37. $t len;
  38. getpeername(0,0,&len);
  39. ],[
  40. curl_cv_socklen_t_equiv="$t"
  41. break
  42. ])
  43. done
  44. done
  45. if test "x$curl_cv_socklen_t_equiv" = x; then
  46. AC_MSG_ERROR([Cannot find a type to use in place of socklen_t])
  47. fi
  48. ])
  49. AC_MSG_RESULT($curl_cv_socklen_t_equiv)
  50. AC_DEFINE_UNQUOTED(socklen_t, $curl_cv_socklen_t_equiv,
  51. [type to use in place of socklen_t if not defined])],
  52. [#include <sys/types.h>
  53. #include <sys/socket.h>])
  54. ])