diff options
author | David Shaw <[email protected]> | 2001-12-20 04:36:09 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2001-12-20 04:36:09 +0000 |
commit | 4d6bda78c4b65e22611379ddc414eee37b606fb6 (patch) | |
tree | 1ba4f89c5df1e99eb9c8d60e00e17870c8b797ee | |
parent | * acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Support Cygwin target (diff) | |
download | gnupg-4d6bda78c4b65e22611379ddc414eee37b606fb6.tar.gz gnupg-4d6bda78c4b65e22611379ddc414eee37b606fb6.zip |
Have autoconf look for stat()
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-12-19 David Shaw <[email protected]> + + * configure.ac: Check for stat() + 2001-12-19 Werner Koch <[email protected]> * acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Support Cygwin target diff --git a/configure.ac b/configure.ac index 227df838e..8f28e8c93 100644 --- a/configure.ac +++ b/configure.ac @@ -490,7 +490,7 @@ AC_FUNC_FORK 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) +AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat) # # check for gethrtime and run a testprogram to see whether |