mkdtemp.m4 535 B

1234567891011121314151617181920
  1. # mkdtemp.m4 serial 8
  2. dnl Copyright (C) 2001-2003, 2006-2007, 2009-2021 Free Software Foundation,
  3. dnl Inc.
  4. dnl This file is free software; the Free Software Foundation
  5. dnl gives unlimited permission to copy and/or distribute it,
  6. dnl with or without modifications, as long as this notice is preserved.
  7. AC_DEFUN([gl_FUNC_MKDTEMP],
  8. [
  9. AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
  10. AC_CHECK_FUNCS([mkdtemp])
  11. if test $ac_cv_func_mkdtemp = no; then
  12. HAVE_MKDTEMP=0
  13. fi
  14. ])
  15. # Prerequisites of lib/mkdtemp.c
  16. AC_DEFUN([gl_PREREQ_MKDTEMP],
  17. [:
  18. ])