4
0

unlocked-io.m4 801 B

12345678910111213141516171819202122
  1. #serial 8 -*- autoconf -*-
  2. dnl From Jim Meyering.
  3. dnl
  4. dnl See if the glibc *_unlocked I/O macros or functions are available.
  5. dnl Use only those *_unlocked macros or functions that are declared
  6. dnl (because some of them were declared in Solaris 2.5.1 but were removed
  7. dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run
  8. dnl on Solaris 2.6).
  9. AC_DEFUN([jm_FUNC_GLIBC_UNLOCKED_IO],
  10. [
  11. dnl Persuade glibc and Solaris <stdio.h> to declare
  12. dnl fgets_unlocked(), fputs_unlocked() etc.
  13. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
  14. AC_CHECK_DECLS_ONCE(
  15. [clearerr_unlocked feof_unlocked ferror_unlocked
  16. fflush_unlocked fgets_unlocked fputc_unlocked fputs_unlocked
  17. fread_unlocked fwrite_unlocked getc_unlocked
  18. getchar_unlocked putc_unlocked putchar_unlocked])
  19. ])