Blame gl/m4/mkstemps.m4

Packit a4aae4
# mkstemps.m4 serial 2
Packit a4aae4
dnl Copyright (C) 2009-2017 Free Software Foundation, Inc.
Packit a4aae4
dnl This file is free software; the Free Software Foundation
Packit a4aae4
dnl gives unlimited permission to copy and/or distribute it,
Packit a4aae4
dnl with or without modifications, as long as this notice is preserved.
Packit a4aae4
Packit a4aae4
AC_DEFUN([gl_FUNC_MKSTEMPS],
Packit a4aae4
[
Packit a4aae4
  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
Packit a4aae4
Packit a4aae4
  dnl Persuade glibc <stdlib.h> to declare mkstemps().
Packit a4aae4
  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
Packit a4aae4
Packit a4aae4
  AC_CHECK_FUNCS_ONCE([mkstemps])
Packit a4aae4
  if test $ac_cv_func_mkstemps != yes; then
Packit a4aae4
    HAVE_MKSTEMPS=0
Packit a4aae4
  fi
Packit a4aae4
])