stdio_h.m4 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. # stdio_h.m4 serial 43
  2. dnl Copyright (C) 2007-2013 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_STDIO_H],
  7. [
  8. AC_REQUIRE([gl_STDIO_H_DEFAULTS])
  9. gl_NEXT_HEADERS([stdio.h])
  10. dnl No need to create extra modules for these functions. Everyone who uses
  11. dnl <stdio.h> likely needs them.
  12. GNULIB_FSCANF=1
  13. gl_MODULE_INDICATOR([fscanf])
  14. GNULIB_SCANF=1
  15. gl_MODULE_INDICATOR([scanf])
  16. GNULIB_FGETC=1
  17. GNULIB_GETC=1
  18. GNULIB_GETCHAR=1
  19. GNULIB_FGETS=1
  20. GNULIB_FREAD=1
  21. dnl This ifdef is necessary to avoid an error "missing file lib/stdio-read.c"
  22. dnl "expected source file, required through AC_LIBSOURCES, not found". It is
  23. dnl also an optimization, to avoid performing a configure check whose result
  24. dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING
  25. dnl or GNULIB_NONBLOCKING redundant.
  26. m4_ifdef([gl_NONBLOCKING_IO], [
  27. gl_NONBLOCKING_IO
  28. if test $gl_cv_have_nonblocking != yes; then
  29. REPLACE_STDIO_READ_FUNCS=1
  30. AC_LIBOBJ([stdio-read])
  31. fi
  32. ])
  33. dnl No need to create extra modules for these functions. Everyone who uses
  34. dnl <stdio.h> likely needs them.
  35. GNULIB_FPRINTF=1
  36. GNULIB_PRINTF=1
  37. GNULIB_VFPRINTF=1
  38. GNULIB_VPRINTF=1
  39. GNULIB_FPUTC=1
  40. GNULIB_PUTC=1
  41. GNULIB_PUTCHAR=1
  42. GNULIB_FPUTS=1
  43. GNULIB_PUTS=1
  44. GNULIB_FWRITE=1
  45. dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
  46. dnl "expected source file, required through AC_LIBSOURCES, not found". It is
  47. dnl also an optimization, to avoid performing a configure check whose result
  48. dnl is not used. But it does not make the test of GNULIB_STDIO_H_SIGPIPE or
  49. dnl GNULIB_SIGPIPE redundant.
  50. m4_ifdef([gl_SIGNAL_SIGPIPE], [
  51. gl_SIGNAL_SIGPIPE
  52. if test $gl_cv_header_signal_h_SIGPIPE != yes; then
  53. REPLACE_STDIO_WRITE_FUNCS=1
  54. AC_LIBOBJ([stdio-write])
  55. fi
  56. ])
  57. dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
  58. dnl "expected source file, required through AC_LIBSOURCES, not found". It is
  59. dnl also an optimization, to avoid performing a configure check whose result
  60. dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING
  61. dnl or GNULIB_NONBLOCKING redundant.
  62. m4_ifdef([gl_NONBLOCKING_IO], [
  63. gl_NONBLOCKING_IO
  64. if test $gl_cv_have_nonblocking != yes; then
  65. REPLACE_STDIO_WRITE_FUNCS=1
  66. AC_LIBOBJ([stdio-write])
  67. fi
  68. ])
  69. dnl Check for declarations of anything we want to poison if the
  70. dnl corresponding gnulib module is not in use, and which is not
  71. dnl guaranteed by both C89 and C11.
  72. gl_WARN_ON_USE_PREPARE([[#include <stdio.h>
  73. ]], [dprintf fpurge fseeko ftello getdelim getline gets pclose popen
  74. renameat snprintf tmpfile vdprintf vsnprintf])
  75. ])
  76. AC_DEFUN([gl_STDIO_MODULE_INDICATOR],
  77. [
  78. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  79. AC_REQUIRE([gl_STDIO_H_DEFAULTS])
  80. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  81. dnl Define it also as a C macro, for the benefit of the unit tests.
  82. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  83. ])
  84. AC_DEFUN([gl_STDIO_H_DEFAULTS],
  85. [
  86. GNULIB_DPRINTF=0; AC_SUBST([GNULIB_DPRINTF])
  87. GNULIB_FCLOSE=0; AC_SUBST([GNULIB_FCLOSE])
  88. GNULIB_FDOPEN=0; AC_SUBST([GNULIB_FDOPEN])
  89. GNULIB_FFLUSH=0; AC_SUBST([GNULIB_FFLUSH])
  90. GNULIB_FGETC=0; AC_SUBST([GNULIB_FGETC])
  91. GNULIB_FGETS=0; AC_SUBST([GNULIB_FGETS])
  92. GNULIB_FOPEN=0; AC_SUBST([GNULIB_FOPEN])
  93. GNULIB_FPRINTF=0; AC_SUBST([GNULIB_FPRINTF])
  94. GNULIB_FPRINTF_POSIX=0; AC_SUBST([GNULIB_FPRINTF_POSIX])
  95. GNULIB_FPURGE=0; AC_SUBST([GNULIB_FPURGE])
  96. GNULIB_FPUTC=0; AC_SUBST([GNULIB_FPUTC])
  97. GNULIB_FPUTS=0; AC_SUBST([GNULIB_FPUTS])
  98. GNULIB_FREAD=0; AC_SUBST([GNULIB_FREAD])
  99. GNULIB_FREOPEN=0; AC_SUBST([GNULIB_FREOPEN])
  100. GNULIB_FSCANF=0; AC_SUBST([GNULIB_FSCANF])
  101. GNULIB_FSEEK=0; AC_SUBST([GNULIB_FSEEK])
  102. GNULIB_FSEEKO=0; AC_SUBST([GNULIB_FSEEKO])
  103. GNULIB_FTELL=0; AC_SUBST([GNULIB_FTELL])
  104. GNULIB_FTELLO=0; AC_SUBST([GNULIB_FTELLO])
  105. GNULIB_FWRITE=0; AC_SUBST([GNULIB_FWRITE])
  106. GNULIB_GETC=0; AC_SUBST([GNULIB_GETC])
  107. GNULIB_GETCHAR=0; AC_SUBST([GNULIB_GETCHAR])
  108. GNULIB_GETDELIM=0; AC_SUBST([GNULIB_GETDELIM])
  109. GNULIB_GETLINE=0; AC_SUBST([GNULIB_GETLINE])
  110. GNULIB_OBSTACK_PRINTF=0; AC_SUBST([GNULIB_OBSTACK_PRINTF])
  111. GNULIB_OBSTACK_PRINTF_POSIX=0; AC_SUBST([GNULIB_OBSTACK_PRINTF_POSIX])
  112. GNULIB_PCLOSE=0; AC_SUBST([GNULIB_PCLOSE])
  113. GNULIB_PERROR=0; AC_SUBST([GNULIB_PERROR])
  114. GNULIB_POPEN=0; AC_SUBST([GNULIB_POPEN])
  115. GNULIB_PRINTF=0; AC_SUBST([GNULIB_PRINTF])
  116. GNULIB_PRINTF_POSIX=0; AC_SUBST([GNULIB_PRINTF_POSIX])
  117. GNULIB_PUTC=0; AC_SUBST([GNULIB_PUTC])
  118. GNULIB_PUTCHAR=0; AC_SUBST([GNULIB_PUTCHAR])
  119. GNULIB_PUTS=0; AC_SUBST([GNULIB_PUTS])
  120. GNULIB_REMOVE=0; AC_SUBST([GNULIB_REMOVE])
  121. GNULIB_RENAME=0; AC_SUBST([GNULIB_RENAME])
  122. GNULIB_RENAMEAT=0; AC_SUBST([GNULIB_RENAMEAT])
  123. GNULIB_SCANF=0; AC_SUBST([GNULIB_SCANF])
  124. GNULIB_SNPRINTF=0; AC_SUBST([GNULIB_SNPRINTF])
  125. GNULIB_SPRINTF_POSIX=0; AC_SUBST([GNULIB_SPRINTF_POSIX])
  126. GNULIB_STDIO_H_NONBLOCKING=0; AC_SUBST([GNULIB_STDIO_H_NONBLOCKING])
  127. GNULIB_STDIO_H_SIGPIPE=0; AC_SUBST([GNULIB_STDIO_H_SIGPIPE])
  128. GNULIB_TMPFILE=0; AC_SUBST([GNULIB_TMPFILE])
  129. GNULIB_VASPRINTF=0; AC_SUBST([GNULIB_VASPRINTF])
  130. GNULIB_VFSCANF=0; AC_SUBST([GNULIB_VFSCANF])
  131. GNULIB_VSCANF=0; AC_SUBST([GNULIB_VSCANF])
  132. GNULIB_VDPRINTF=0; AC_SUBST([GNULIB_VDPRINTF])
  133. GNULIB_VFPRINTF=0; AC_SUBST([GNULIB_VFPRINTF])
  134. GNULIB_VFPRINTF_POSIX=0; AC_SUBST([GNULIB_VFPRINTF_POSIX])
  135. GNULIB_VPRINTF=0; AC_SUBST([GNULIB_VPRINTF])
  136. GNULIB_VPRINTF_POSIX=0; AC_SUBST([GNULIB_VPRINTF_POSIX])
  137. GNULIB_VSNPRINTF=0; AC_SUBST([GNULIB_VSNPRINTF])
  138. GNULIB_VSPRINTF_POSIX=0; AC_SUBST([GNULIB_VSPRINTF_POSIX])
  139. dnl Assume proper GNU behavior unless another module says otherwise.
  140. HAVE_DECL_FPURGE=1; AC_SUBST([HAVE_DECL_FPURGE])
  141. HAVE_DECL_FSEEKO=1; AC_SUBST([HAVE_DECL_FSEEKO])
  142. HAVE_DECL_FTELLO=1; AC_SUBST([HAVE_DECL_FTELLO])
  143. HAVE_DECL_GETDELIM=1; AC_SUBST([HAVE_DECL_GETDELIM])
  144. HAVE_DECL_GETLINE=1; AC_SUBST([HAVE_DECL_GETLINE])
  145. HAVE_DECL_OBSTACK_PRINTF=1; AC_SUBST([HAVE_DECL_OBSTACK_PRINTF])
  146. HAVE_DECL_SNPRINTF=1; AC_SUBST([HAVE_DECL_SNPRINTF])
  147. HAVE_DECL_VSNPRINTF=1; AC_SUBST([HAVE_DECL_VSNPRINTF])
  148. HAVE_DPRINTF=1; AC_SUBST([HAVE_DPRINTF])
  149. HAVE_FSEEKO=1; AC_SUBST([HAVE_FSEEKO])
  150. HAVE_FTELLO=1; AC_SUBST([HAVE_FTELLO])
  151. HAVE_PCLOSE=1; AC_SUBST([HAVE_PCLOSE])
  152. HAVE_POPEN=1; AC_SUBST([HAVE_POPEN])
  153. HAVE_RENAMEAT=1; AC_SUBST([HAVE_RENAMEAT])
  154. HAVE_VASPRINTF=1; AC_SUBST([HAVE_VASPRINTF])
  155. HAVE_VDPRINTF=1; AC_SUBST([HAVE_VDPRINTF])
  156. REPLACE_DPRINTF=0; AC_SUBST([REPLACE_DPRINTF])
  157. REPLACE_FCLOSE=0; AC_SUBST([REPLACE_FCLOSE])
  158. REPLACE_FDOPEN=0; AC_SUBST([REPLACE_FDOPEN])
  159. REPLACE_FFLUSH=0; AC_SUBST([REPLACE_FFLUSH])
  160. REPLACE_FOPEN=0; AC_SUBST([REPLACE_FOPEN])
  161. REPLACE_FPRINTF=0; AC_SUBST([REPLACE_FPRINTF])
  162. REPLACE_FPURGE=0; AC_SUBST([REPLACE_FPURGE])
  163. REPLACE_FREOPEN=0; AC_SUBST([REPLACE_FREOPEN])
  164. REPLACE_FSEEK=0; AC_SUBST([REPLACE_FSEEK])
  165. REPLACE_FSEEKO=0; AC_SUBST([REPLACE_FSEEKO])
  166. REPLACE_FTELL=0; AC_SUBST([REPLACE_FTELL])
  167. REPLACE_FTELLO=0; AC_SUBST([REPLACE_FTELLO])
  168. REPLACE_GETDELIM=0; AC_SUBST([REPLACE_GETDELIM])
  169. REPLACE_GETLINE=0; AC_SUBST([REPLACE_GETLINE])
  170. REPLACE_OBSTACK_PRINTF=0; AC_SUBST([REPLACE_OBSTACK_PRINTF])
  171. REPLACE_PERROR=0; AC_SUBST([REPLACE_PERROR])
  172. REPLACE_POPEN=0; AC_SUBST([REPLACE_POPEN])
  173. REPLACE_PRINTF=0; AC_SUBST([REPLACE_PRINTF])
  174. REPLACE_REMOVE=0; AC_SUBST([REPLACE_REMOVE])
  175. REPLACE_RENAME=0; AC_SUBST([REPLACE_RENAME])
  176. REPLACE_RENAMEAT=0; AC_SUBST([REPLACE_RENAMEAT])
  177. REPLACE_SNPRINTF=0; AC_SUBST([REPLACE_SNPRINTF])
  178. REPLACE_SPRINTF=0; AC_SUBST([REPLACE_SPRINTF])
  179. REPLACE_STDIO_READ_FUNCS=0; AC_SUBST([REPLACE_STDIO_READ_FUNCS])
  180. REPLACE_STDIO_WRITE_FUNCS=0; AC_SUBST([REPLACE_STDIO_WRITE_FUNCS])
  181. REPLACE_TMPFILE=0; AC_SUBST([REPLACE_TMPFILE])
  182. REPLACE_VASPRINTF=0; AC_SUBST([REPLACE_VASPRINTF])
  183. REPLACE_VDPRINTF=0; AC_SUBST([REPLACE_VDPRINTF])
  184. REPLACE_VFPRINTF=0; AC_SUBST([REPLACE_VFPRINTF])
  185. REPLACE_VPRINTF=0; AC_SUBST([REPLACE_VPRINTF])
  186. REPLACE_VSNPRINTF=0; AC_SUBST([REPLACE_VSNPRINTF])
  187. REPLACE_VSPRINTF=0; AC_SUBST([REPLACE_VSPRINTF])
  188. ])