diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-06-02 02:12:47 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-06-02 02:12:47 +0000 |
commit | cce7ca652ccc091c7d95450d71f84d28dd996513 (patch) | |
tree | f9addd736badd9a7063af6168be763a0e6c3ce57 | |
parent | 0a5b82cd9704d65acfc635aa646c13bcca528422 (diff) | |
download | tinyproxy-cce7ca652ccc091c7d95450d71f84d28dd996513.tar.gz tinyproxy-cce7ca652ccc091c7d95450d71f84d28dd996513.zip |
Added a test for the resolv library for the gethostby* functions.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-06-01 Robert James Kaes <rjkaes@flarenet.com> + + * configure.in: Added a test for the resolv library for the + gethostby* functions. Also bumped up the preversion. + 2001-05-26 Robert James Kaes <rjkaes@flarenet.com> * src/tinyproxy.c (main): Added code to stop the creation of core diff --git a/configure.in b/configure.in index 1c095d4..0b1f09f 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ -dnl $Id: configure.in,v 1.7 2001-05-27 02:40:23 rjkaes Exp $ +dnl $Id: configure.in,v 1.8 2001-06-02 02:12:47 rjkaes Exp $ AC_INIT() -AM_INIT_AUTOMAKE(tinyproxy,1.4.0pre3) +AM_INIT_AUTOMAKE(tinyproxy,1.4.0pre4) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -48,6 +48,7 @@ fi AC_CHECK_LIB(nsl, t_open) AC_CHECK_LIB(socket, socket) +AC_CHECK_LIB(resolv, gethostbyname) dnl Checks for library functions. AC_TYPE_SIGNAL |