errno_h.m4 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # errno_h.m4 serial 6
  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 ESTALE
  37. booboo
  38. #endif
  39. #if !defined ECANCELED
  40. booboo
  41. #endif
  42. ],
  43. [gl_cv_header_errno_h_complete=no],
  44. [gl_cv_header_errno_h_complete=yes])
  45. ])
  46. if test $gl_cv_header_errno_h_complete = yes; then
  47. ERRNO_H=''
  48. else
  49. gl_CHECK_NEXT_HEADERS([errno.h])
  50. ERRNO_H='errno.h'
  51. fi
  52. AC_SUBST([ERRNO_H])
  53. gl_REPLACE_ERRNO_VALUE([EMULTIHOP])
  54. gl_REPLACE_ERRNO_VALUE([ENOLINK])
  55. gl_REPLACE_ERRNO_VALUE([EOVERFLOW])
  56. ])
  57. # Assuming $1 = EOVERFLOW.
  58. # The EOVERFLOW errno value ought to be defined in <errno.h>, according to
  59. # POSIX. But some systems (like OpenBSD 4.0 or AIX 3) don't define it, and
  60. # some systems (like OSF/1) define it when _XOPEN_SOURCE_EXTENDED is defined.
  61. # Check for the value of EOVERFLOW.
  62. # Set the variables EOVERFLOW_HIDDEN and EOVERFLOW_VALUE.
  63. AC_DEFUN([gl_REPLACE_ERRNO_VALUE],
  64. [
  65. if test -n "$ERRNO_H"; then
  66. AC_CACHE_CHECK([for ]$1[ value], [gl_cv_header_errno_h_]$1, [
  67. AC_EGREP_CPP([yes],[
  68. #include <errno.h>
  69. #ifdef ]$1[
  70. yes
  71. #endif
  72. ],
  73. [gl_cv_header_errno_h_]$1[=yes],
  74. [gl_cv_header_errno_h_]$1[=no])
  75. if test $gl_cv_header_errno_h_]$1[ = no; then
  76. AC_EGREP_CPP([yes],[
  77. #define _XOPEN_SOURCE_EXTENDED 1
  78. #include <errno.h>
  79. #ifdef ]$1[
  80. yes
  81. #endif
  82. ], [gl_cv_header_errno_h_]$1[=hidden])
  83. if test $gl_cv_header_errno_h_]$1[ = hidden; then
  84. dnl The macro exists but is hidden.
  85. dnl Define it to the same value.
  86. AC_COMPUTE_INT([gl_cv_header_errno_h_]$1, $1, [
  87. #define _XOPEN_SOURCE_EXTENDED 1
  88. #include <errno.h>
  89. /* The following two lines are a workaround against an autoconf-2.52 bug. */
  90. #include <stdio.h>
  91. #include <stdlib.h>
  92. ])
  93. fi
  94. fi
  95. ])
  96. case $gl_cv_header_errno_h_]$1[ in
  97. yes | no)
  98. ]$1[_HIDDEN=0; ]$1[_VALUE=
  99. ;;
  100. *)
  101. ]$1[_HIDDEN=1; ]$1[_VALUE="$gl_cv_header_errno_h_]$1["
  102. ;;
  103. esac
  104. AC_SUBST($1[_HIDDEN])
  105. AC_SUBST($1[_VALUE])
  106. fi
  107. ])
  108. dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.
  109. dnl Remove this when we can assume autoconf >= 2.61.
  110. m4_ifdef([AC_COMPUTE_INT], [], [
  111. AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])
  112. ])