diff options
author | Werner Koch <[email protected]> | 2003-12-16 11:30:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-12-16 11:30:16 +0000 |
commit | dba63c0a0ceb473909528ec51b5851ec28731218 (patch) | |
tree | a68c2499ab81167e61875513e395b7138ea664f7 /configure.ac | |
parent | Keep those files in CVS too. (diff) | |
download | gnupg-dba63c0a0ceb473909528ec51b5851ec28731218.tar.gz gnupg-dba63c0a0ceb473909528ec51b5851ec28731218.zip |
* configure.ac: Check for funopen and fopencookie as part of the
jnlib checks.
* logging.c (writen, fun_writer, fun_closer): New.
(log_set_file): Add feature to log to a socket.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7bca11986..a0cf391a4 100644 --- a/configure.ac +++ b/configure.ac @@ -698,7 +698,7 @@ AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>]) # These are needed by libjnlib - fixme: we should have macros for them AC_CHECK_FUNCS(memicmp stpcpy strlwr strtoul memmove stricmp strtol) AC_CHECK_FUNCS(getrusage setrlimit stat setlocale) -AC_CHECK_FUNCS(flockfile funlockfile) +AC_CHECK_FUNCS(flockfile funlockfile fopencookie funopen) AC_REPLACE_FUNCS(vasprintf) AC_REPLACE_FUNCS(fopencookie) @@ -709,6 +709,7 @@ AC_REPLACE_FUNCS(putc_unlocked) + # # check for gethrtime and run a testprogram to see whether # it is broken. It has been reported that some Solaris and HP UX systems |