diff options
Diffstat (limited to '')
-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 |