mkostemp.m4 621 B

123456789101112131415161718192021222324
  1. # mkostemp.m4 serial 2
  2. dnl Copyright (C) 2009-2017 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_FUNC_MKOSTEMP],
  7. [
  8. AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
  9. dnl Persuade glibc <stdlib.h> to declare mkostemp().
  10. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  11. AC_CHECK_FUNCS_ONCE([mkostemp])
  12. if test $ac_cv_func_mkostemp != yes; then
  13. HAVE_MKOSTEMP=0
  14. fi
  15. ])
  16. # Prerequisites of lib/mkostemp.c.
  17. AC_DEFUN([gl_PREREQ_MKOSTEMP],
  18. [
  19. ])