errno_h.m4 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # errno_h.m4 serial 5
  2. dnl Copyright (C) 2004, 2006, 2008, 2009 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_ONCE([gl_HEADER_ERRNO_H],
  7. [
  8. AC_REQUIRE([AC_PROG_CC])
  9. AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [
  10. AC_EGREP_CPP([booboo],[
  11. #include <errno.h>
  12. #if !defined ENOMSG
  13. booboo
  14. #endif
  15. #if !defined EIDRM
  16. booboo
  17. #endif
  18. #if !defined ENOLINK
  19. booboo
  20. #endif
  21. #if !defined EPROTO
  22. booboo
  23. #endif
  24. #if !defined EMULTIHOP
  25. booboo
  26. #endif
  27. #if !defined EBADMSG
  28. booboo
  29. #endif
  30. #if !defined EOVERFLOW
  31. booboo
  32. #endif
  33. #if !defined ENOTSUP
  34. booboo
  35. #endif
  36. #if !defined ECANCELED
  37. booboo
  38. #endif
  39. ],
  40. [gl_cv_header_errno_h_complete=no],
  41. [gl_cv_header_errno_h_complete=yes])
  42. ])
  43. if test $gl_cv_header_errno_h_complete = yes; then
  44. ERRNO_H=''
  45. else
  46. gl_CHECK_NEXT_HEADERS([errno.h])
  47. ERRNO_H='errno.h'
  48. fi
  49. AC_SUBST([ERRNO_H])
  50. gl_REPLACE_ERRNO_VALUE([EMULTIHOP])
  51. gl_REPLACE_ERRNO_VALUE([ENOLINK])
  52. gl_REPLACE_ERRNO_VALUE([EOVERFLOW])
  53. ])
  54. # Assuming $1 = EOVERFLOW.
  55. # The EOVERFLOW errno value ought to be defined in <errno.h>, according to
  56. # POSIX. But some systems (like OpenBSD 4.0 or AIX 3) don't define it, and
  57. # some systems (like OSF/1) define it when _XOPEN_SOURCE_EXTENDED is defined.
  58. # Check for the value of EOVERFLOW.
  59. # Set the variables EOVERFLOW_HIDDEN and EOVERFLOW_VALUE.
  60. AC_DEFUN([gl_REPLACE_ERRNO_VALUE],
  61. [
  62. if test -n "$ERRNO_H"; then
  63. AC_CACHE_CHECK([for ]$1[ value], [gl_cv_header_errno_h_]$1, [
  64. AC_EGREP_CPP([yes],[
  65. #include <errno.h>
  66. #ifdef ]$1[
  67. yes
  68. #endif
  69. ],
  70. [gl_cv_header_errno_h_]$1[=yes],
  71. [gl_cv_header_errno_h_]$1[=no])
  72. if test $gl_cv_header_errno_h_]$1[ = no; then
  73. AC_EGREP_CPP([yes],[
  74. #define _XOPEN_SOURCE_EXTENDED 1
  75. #include <errno.h>
  76. #ifdef ]$1[
  77. yes
  78. #endif
  79. ], [gl_cv_header_errno_h_]$1[=hidden])
  80. if test $gl_cv_header_errno_h_]$1[ = hidden; then
  81. dnl The macro exists but is hidden.
  82. dnl Define it to the same value.
  83. AC_COMPUTE_INT([gl_cv_header_errno_h_]$1, $1, [
  84. #define _XOPEN_SOURCE_EXTENDED 1
  85. #include <errno.h>
  86. /* The following two lines are a workaround against an autoconf-2.52 bug. */
  87. #include <stdio.h>
  88. #include <stdlib.h>
  89. ])
  90. fi
  91. fi
  92. ])
  93. case $gl_cv_header_errno_h_]$1[ in
  94. yes | no)
  95. ]$1[_HIDDEN=0; ]$1[_VALUE=
  96. ;;
  97. *)
  98. ]$1[_HIDDEN=1; ]$1[_VALUE="$gl_cv_header_errno_h_]$1["
  99. ;;
  100. esac
  101. AC_SUBST($1[_HIDDEN])
  102. AC_SUBST($1[_VALUE])
  103. fi
  104. ])
  105. dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.
  106. dnl Remove this when we can assume autoconf >= 2.61.
  107. m4_ifdef([AC_COMPUTE_INT], [], [
  108. AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])
  109. ])