sys_uio_h.m4 940 B

12345678910111213141516171819202122232425262728293031
  1. # sys_uio_h.m4 serial 1
  2. dnl Copyright (C) 2011-2021 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_HEADER_SYS_UIO],
  7. [
  8. AC_REQUIRE([gl_SYS_UIO_H_DEFAULTS])
  9. dnl <sys/uio.h> is always overridden, because of GNULIB_POSIXCHECK.
  10. gl_CHECK_NEXT_HEADERS([sys/uio.h])
  11. if test $ac_cv_header_sys_uio_h = yes; then
  12. HAVE_SYS_UIO_H=1
  13. else
  14. HAVE_SYS_UIO_H=0
  15. fi
  16. AC_SUBST([HAVE_SYS_UIO_H])
  17. ])
  18. AC_DEFUN([gl_SYS_UIO_MODULE_INDICATOR],
  19. [
  20. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  21. AC_REQUIRE([gl_SYS_UIO_H_DEFAULTS])
  22. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  23. dnl Define it also as a C macro, for the benefit of the unit tests.
  24. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  25. ])
  26. AC_DEFUN([gl_SYS_UIO_H_DEFAULTS],
  27. [
  28. ])