1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02:00

Replace mkdtemp if the platform doesn't have it

This commit is contained in:
David Shaw 2001-12-20 16:23:28 +00:00
parent 63597774d0
commit ebaf170e74
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-12-20 David Shaw <dshaw@jabberwocky.com>
* configure.ac: replacement function for mkdtemp()
2001-12-19 David Shaw <dshaw@jabberwocky.com> 2001-12-19 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Check for stat() * configure.ac: Check for stat()

View File

@ -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(memmove gettimeofday getrusage setrlimit clock_gettime)
AC_CHECK_FUNCS(memicmp atexit raise getpagesize strftime nl_langinfo) AC_CHECK_FUNCS(memicmp atexit raise getpagesize strftime nl_langinfo)
AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat) AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat)
AC_REPLACE_FUNCS(mkdtemp)
# #
# check for gethrtime and run a testprogram to see whether # check for gethrtime and run a testprogram to see whether