2024-05-11 20:16:48 +00:00
|
|
|
# mkostemp.m4
|
|
|
|
# serial 4
|
2024-01-02 02:30:05 +00:00
|
|
|
dnl Copyright (C) 2009-2024 Free Software Foundation, Inc.
|
2013-08-04 16:56:56 +00:00
|
|
|
dnl This file is free software; the Free Software Foundation
|
|
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
AC_DEFUN([gl_FUNC_MKOSTEMP],
|
|
|
|
[
|
|
|
|
AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
|
|
|
|
|
|
|
|
dnl Persuade glibc <stdlib.h> to declare mkostemp().
|
|
|
|
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
|
|
|
|
|
2023-02-04 22:45:11 +00:00
|
|
|
gl_CHECK_FUNCS_ANDROID([mkostemp], [[#include <stdlib.h>]])
|
2013-08-04 16:56:56 +00:00
|
|
|
if test $ac_cv_func_mkostemp != yes; then
|
|
|
|
HAVE_MKOSTEMP=0
|
2023-02-04 22:45:11 +00:00
|
|
|
case "$gl_cv_onwards_func_mkostemp" in
|
|
|
|
future*) REPLACE_MKOSTEMP=1 ;;
|
|
|
|
esac
|
2013-08-04 16:56:56 +00:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
# Prerequisites of lib/mkostemp.c.
|
|
|
|
AC_DEFUN([gl_PREREQ_MKOSTEMP],
|
|
|
|
[
|
|
|
|
])
|