diff options
author | David Shaw <[email protected]> | 2003-08-25 03:32:01 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-08-25 03:32:01 +0000 |
commit | cce2bf2dfaf748c12fb40c945e7003ab5496bfc3 (patch) | |
tree | bb4d7306f56e2a51e7dcf09f463f69e22af34834 | |
parent | * http.c (connect_server): Try and use getaddrinfo if it is available. (diff) | |
download | gnupg-cce2bf2dfaf748c12fb40c945e7003ab5496bfc3.tar.gz gnupg-cce2bf2dfaf748c12fb40c945e7003ab5496bfc3.zip |
* configure.ac: Check for getaddrinfo. Don't bother to check for EGD libs
since we need to have the netlibs regardless because of the agent socket.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2003-08-24 David Shaw <[email protected]> + + * configure.ac: Check for getaddrinfo. Don't bother to check for + EGD libs since we need to have the netlibs regardless because of + the agent socket. + 2003-07-10 David Shaw <[email protected]> * configure.ac: configure.ac: Check for sigset_t and struct diff --git a/configure.ac b/configure.ac index b0191b2cb..c8fe36a6c 100644 --- a/configure.ac +++ b/configure.ac @@ -732,7 +732,7 @@ AC_CHECK_FUNCS(strerror stpcpy strsep strlwr tcgetattr strtoul mmap) AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid times) AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime) AC_CHECK_FUNCS(atexit raise getpagesize strftime nl_langinfo setlocale) -AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat) +AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat getaddrinfo) AC_REPLACE_FUNCS(mkdtemp) AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>]) @@ -891,8 +891,6 @@ for rndmod in $random_modules "" ; do rndegd) AC_DEFINE(USE_RNDEGD,1, [Defined if the EGD based RNG should be used.]) - EGDLIBS=$NETLIBS - AC_SUBST(EGDLIBS) ;; rndw32) AC_DEFINE(USE_RNDW32,1, |