diff options
author | David Shaw <[email protected]> | 2001-12-20 16:23:28 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2001-12-20 16:23:28 +0000 |
commit | ebaf170e7492c48d276eb83696c1cce2fd283651 (patch) | |
tree | cc50a73c6421f97035f8bb91ac458a5039de526a | |
parent | Use mkdtemp() to make temp directories. If there is no mkdtemp(), provide (diff) | |
download | gnupg-ebaf170e7492c48d276eb83696c1cce2fd283651.tar.gz gnupg-ebaf170e7492c48d276eb83696c1cce2fd283651.zip |
Replace mkdtemp if the platform doesn't have it
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2001-12-20 David Shaw <[email protected]> + + * configure.ac: replacement function for mkdtemp() + 2001-12-19 David Shaw <[email protected]> * configure.ac: Check for stat() diff --git a/configure.ac b/configure.ac index 8f28e8c93..fdfe1a1cd 100644 --- a/configure.ac +++ b/configure.ac @@ -491,6 +491,7 @@ AC_CHECK_FUNCS(strerror stpcpy strsep strlwr stricmp tcgetattr strtoul mmap) AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime) AC_CHECK_FUNCS(memicmp atexit raise getpagesize strftime nl_langinfo) AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat) +AC_REPLACE_FUNCS(mkdtemp) # # check for gethrtime and run a testprogram to see whether |