stdio_h.m4 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # stdio_h.m4 serial 9
  2. dnl Copyright (C) 2007 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_CHECK_NEXT_HEADERS([stdio.h])
  10. ])
  11. AC_DEFUN([gl_STDIO_MODULE_INDICATOR],
  12. [
  13. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  14. AC_REQUIRE([gl_STDIO_H_DEFAULTS])
  15. GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1
  16. ])
  17. AC_DEFUN([gl_STDIO_H_DEFAULTS],
  18. [
  19. GNULIB_FPRINTF_POSIX=0; AC_SUBST([GNULIB_FPRINTF_POSIX])
  20. GNULIB_PRINTF_POSIX=0; AC_SUBST([GNULIB_PRINTF_POSIX])
  21. GNULIB_SNPRINTF=0; AC_SUBST([GNULIB_SNPRINTF])
  22. GNULIB_SPRINTF_POSIX=0; AC_SUBST([GNULIB_SPRINTF_POSIX])
  23. GNULIB_VFPRINTF_POSIX=0; AC_SUBST([GNULIB_VFPRINTF_POSIX])
  24. GNULIB_VPRINTF_POSIX=0; AC_SUBST([GNULIB_VPRINTF_POSIX])
  25. GNULIB_VSNPRINTF=0; AC_SUBST([GNULIB_VSNPRINTF])
  26. GNULIB_VSPRINTF_POSIX=0; AC_SUBST([GNULIB_VSPRINTF_POSIX])
  27. GNULIB_VASPRINTF=0; AC_SUBST([GNULIB_VASPRINTF])
  28. GNULIB_FOPEN=0; AC_SUBST([GNULIB_FOPEN])
  29. GNULIB_FREOPEN=0; AC_SUBST([GNULIB_FREOPEN])
  30. GNULIB_FSEEK=0; AC_SUBST([GNULIB_FSEEK])
  31. GNULIB_FSEEKO=0; AC_SUBST([GNULIB_FSEEKO])
  32. GNULIB_FTELL=0; AC_SUBST([GNULIB_FTELL])
  33. GNULIB_FTELLO=0; AC_SUBST([GNULIB_FTELLO])
  34. GNULIB_FFLUSH=0; AC_SUBST([GNULIB_FFLUSH])
  35. GNULIB_GETDELIM=0; AC_SUBST([GNULIB_GETDELIM])
  36. GNULIB_GETLINE=0; AC_SUBST([GNULIB_GETLINE])
  37. dnl Assume proper GNU behavior unless another module says otherwise.
  38. REPLACE_FPRINTF=0; AC_SUBST([REPLACE_FPRINTF])
  39. REPLACE_VFPRINTF=0; AC_SUBST([REPLACE_VFPRINTF])
  40. REPLACE_PRINTF=0; AC_SUBST([REPLACE_PRINTF])
  41. REPLACE_VPRINTF=0; AC_SUBST([REPLACE_VPRINTF])
  42. REPLACE_SNPRINTF=0; AC_SUBST([REPLACE_SNPRINTF])
  43. HAVE_DECL_SNPRINTF=1; AC_SUBST([HAVE_DECL_SNPRINTF])
  44. REPLACE_VSNPRINTF=0; AC_SUBST([REPLACE_VSNPRINTF])
  45. HAVE_DECL_VSNPRINTF=1; AC_SUBST([HAVE_DECL_VSNPRINTF])
  46. REPLACE_SPRINTF=0; AC_SUBST([REPLACE_SPRINTF])
  47. REPLACE_VSPRINTF=0; AC_SUBST([REPLACE_VSPRINTF])
  48. HAVE_VASPRINTF=1; AC_SUBST([HAVE_VASPRINTF])
  49. REPLACE_VASPRINTF=0; AC_SUBST([REPLACE_VASPRINTF])
  50. REPLACE_FOPEN=0; AC_SUBST([REPLACE_FOPEN])
  51. REPLACE_FREOPEN=0; AC_SUBST([REPLACE_FREOPEN])
  52. HAVE_FSEEKO=1; AC_SUBST([HAVE_FSEEKO])
  53. REPLACE_FSEEKO=0; AC_SUBST([REPLACE_FSEEKO])
  54. REPLACE_FSEEK=0; AC_SUBST([REPLACE_FSEEK])
  55. HAVE_FTELLO=1; AC_SUBST([HAVE_FTELLO])
  56. REPLACE_FTELLO=0; AC_SUBST([REPLACE_FTELLO])
  57. REPLACE_FTELL=0; AC_SUBST([REPLACE_FTELL])
  58. REPLACE_FFLUSH=0; AC_SUBST([REPLACE_FFLUSH])
  59. HAVE_DECL_GETDELIM=1; AC_SUBST([HAVE_DECL_GETDELIM])
  60. HAVE_DECL_GETLINE=1; AC_SUBST([HAVE_DECL_GETLINE])
  61. REPLACE_GETLINE=0; AC_SUBST([REPLACE_GETLINE])
  62. ])
  63. dnl Code shared by fseeko and ftello. Determine if large files are supported,
  64. dnl but stdin does not start as a large file by default.
  65. AC_DEFUN([gl_STDIN_LARGE_OFFSET],
  66. [
  67. AC_CACHE_CHECK([whether stdin defaults to large file offsets],
  68. [gl_cv_var_stdin_large_offset],
  69. [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>],
  70. [#if defined __SL64 && defined __SCLE /* cygwin */
  71. /* Cygwin 1.5.24 and earlier fail to put stdin in 64-bit mode, making
  72. fseeko/ftello needlessly fail. This bug was fixed in 1.5.25, and
  73. it is easier to do a version check than building a runtime test. */
  74. # include <cygwin/version.h>
  75. # if CYGWIN_VERSION_DLL_COMBINED < CYGWIN_VERSION_DLL_MAKE_COMBINED (1005, 25)
  76. choke me
  77. # endif
  78. #endif])],
  79. [gl_cv_var_stdin_large_offset=yes],
  80. [gl_cv_var_stdin_large_offset=no])])
  81. ])