From a808accd1e748184933f0e4d97d499d79f34f889 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 23 Jan 2019 01:19:46 +0100 Subject: Replace tempnam() with mkstemp() and provide reference implementation for systems lacking it --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 94a9a79..c67c0ac 100644 --- a/configure.ac +++ b/configure.ac @@ -59,7 +59,7 @@ case "$host_os" in ;; esac -AC_CHECK_FUNCS([strsep strcspn]) +AC_CHECK_FUNCS([strsep strcspn mkstemp]) if test x$ac_cv_func_strsep != xyes; then if test x$ac_cv_func_strcspn != xyes; then AC_MSG_ERROR([You need either strsep or strcspn to build $PACKAGE]) -- cgit v1.1-32-gdbae